/* =====================================================================
   Crocurry "Arch" components - mirrors the approved mockup
   (claude.ai/artifact/AMBYYx5tbnArGVoAwVGh6T, Main + Mobile artboards).
   Loaded after redesign.css. Some rules need !important only to beat
   legacy global !important rules in redesign.css / style.css.
   ===================================================================== */

/* the legacy theme does not set border-box globally */
[class^="cro-"], [class*=" cro-"], [class^="cro-"] *, [class*=" cro-"] *,
[class^="cro-"]::before, [class^="cro-"]::after { box-sizing: border-box; }

/* ---------- Layout primitives ---------- */
/* One container for every row: header, hero, sections, footer. */
.cro-wrap { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
.cro-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.cro-sec-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.cro-h2 {
  font-family: 'Fraunces', Georgia, serif !important; font-weight: 400 !important;
  font-size: 48px; line-height: 1.08; letter-spacing: -0.8px; color: #2B2620 !important;
  margin: 14px 0 0; font-optical-sizing: auto; text-wrap: balance;
}
.cro-h2 em { font-style: italic; color: #8A5F14 !important; }
.cro-lead { margin: 18px 0 0; font-family: 'Work Sans', sans-serif; font-size: 17px; line-height: 1.6; color: #6B6255; }

/* ---------- Buttons & links ---------- */
.cro-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Work Sans', sans-serif !important; font-size: 14px !important; font-weight: 600 !important;
  letter-spacing: .4px; padding: 16px 30px; border-radius: 999px !important; cursor: pointer;
  text-decoration: none !important; line-height: 1.2; white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.cro-btn-primary, a.cro-btn-primary, button.cro-btn-primary {
  background: #8A5F14 !important; color: #FFFFFF !important; border: 1px solid #8A5F14 !important;
}
.cro-btn-primary:hover { background: #6F4C10 !important; border-color: #6F4C10 !important; color: #FFFFFF !important; }
.cro-btn.cro-btn-ghost, a.cro-btn-ghost {
  background: transparent !important; color: #2B2620 !important; border: 1px solid rgba(43,38,32,.35) !important;
  font-size: 14px !important; padding: 16px 30px;
}
.cro-btn.cro-btn-ghost:hover { border-color: #2B2620 !important; }
.cro-btn-block { display: flex; width: 100%; }

.cro-circ {
  width: 48px; height: 48px; border-radius: 999px; border: 1px solid rgba(43,38,32,.25);
  background: transparent; display: inline-flex; align-items: center; justify-content: center;
  color: #2B2620; cursor: pointer; padding: 0; transition: background .2s, color .2s, border-color .2s;
}
.cro-circ:hover { background: #2B2620; color: #FAF6EE; border-color: #2B2620; }
.cro-circ:disabled { opacity: .35; cursor: default; background: transparent; color: #2B2620; border-color: rgba(43,38,32,.25); }

a.cro-textlink, span.cro-textlink {
  font-family: 'Work Sans', sans-serif; font-size: 14px; font-weight: 600; color: #2B2620 !important;
  display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid currentColor;
  padding-bottom: 3px; text-decoration: none !important; transition: color .2s, gap .2s;
}
a.cro-textlink:hover, a:hover span.cro-textlink { color: #8A5F14 !important; gap: 12px; }

/* ---------- Swipe track (featured products) ---------- */
.cro-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; overscroll-behavior-x: contain;
  padding-bottom: 6px; scroll-behavior: smooth;
}
.cro-track::-webkit-scrollbar { display: none; }
.cro-track > * { scroll-snap-align: start; flex: 0 0 auto; }
/* starts at the container's left edge, bleeds off the right edge of the viewport */
.cro-bleed {
  padding-left: max(24px, calc((100% - 1320px) / 2 + 24px)); padding-right: 24px;
  scroll-padding-left: max(24px, calc((100% - 1320px) / 2 + 24px));
}

/* ---------- Product card ---------- */
.cro-pcard { width: 236px; position: relative; }
.cro-pcard-media {
  position: relative; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; background: #FFFFFF;
}
.cro-pcard-link { display: block; width: 100%; height: 100%; }
.cro-pcard-link img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.cro-pcard:hover .cro-pcard-link img { transform: scale(1.06); }
.cro-pcard-badge {
  position: absolute; top: 12px; left: 12px; background: #2B2620; color: #FFFFFF;
  font-family: 'Work Sans', sans-serif; font-size: 11.5px; font-weight: 600; letter-spacing: .3px;
  padding: 5px 10px; border-radius: 999px; line-height: 1.2; pointer-events: none;
}
.cro-pcard-wish {
  position: absolute; top: 8px; right: 8px; width: 40px; height: 40px; border-radius: 999px; border: none;
  background: rgba(255,255,255,.95); box-shadow: 0 2px 10px rgba(0,0,0,.08); color: #2B2620;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer; padding: 0;
  transition: transform .2s, color .2s;
}
.cro-pcard-wish:hover { transform: scale(1.06); }
.cro-pcard-wish.is-wished { color: #8A5F14; }
.cro-pcard-wish.is-wished svg { fill: currentColor; }
.cro-pcard .cro-pcard-atc {
  position: absolute; left: 10px; right: 10px; bottom: 10px; height: 44px; width: auto;
  border: none !important; border-radius: 12px !important; background: #2B2620 !important; color: #FAF6EE !important;
  font-family: 'Work Sans', sans-serif !important; font-size: 13.5px !important; font-weight: 600 !important;
  letter-spacing: .3px; display: flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; padding: 0; margin: 0;
  transform: translateY(calc(100% + 16px)); transition: transform .4s cubic-bezier(.2,.7,.2,1), background .2s;
}
.cro-pcard:hover .cro-pcard-atc, .cro-pcard:focus-within .cro-pcard-atc { transform: translateY(0); }
.cro-pcard .cro-pcard-atc:hover { background: #8A5F14 !important; }
@media (hover: none) { .cro-pcard .cro-pcard-atc { transform: translateY(0); } }

.cro-pcard-body { padding: 16px 2px 0; }
.cro-pcard-cat {
  font-family: 'Work Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; color: #7A6F60;
}
.cro-pcard-name {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-top: 7px; font-family: 'Work Sans', sans-serif; font-size: 15px; line-height: 1.45;
  min-height: 2.9em; color: #2B2620 !important; font-weight: 500; text-decoration: none !important;
}
.cro-pcard-name:hover { color: #8A5F14 !important; }
.cro-pcard-price {
  margin-top: 10px; display: flex; align-items: baseline; flex-wrap: wrap; column-gap: 10px;
  font-family: 'Work Sans', sans-serif; font-variant-numeric: tabular-nums;
}
.cro-pcard-now { font-size: 16.5px; font-weight: 600; color: #2B2620; }
.cro-pcard-was { font-size: 13px; color: #7A6F60; text-decoration: line-through; }
.cro-pcard-off { font-size: 13px; font-weight: 600; color: #3E7A4F; }

/* ---------- Drawers: cart, wishlist, account ---------- */
.cro-drawer-backdrop {
  display: none; position: fixed; inset: 0; z-index: 1040; background: rgba(20,17,13,.45);
  opacity: 0; transition: opacity .3s ease;
}
.cro-drawer-backdrop.is-open { display: block; opacity: 1; }
body.cro-drawer-lock { overflow: hidden; }

aside.cro-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1050;
  width: 420px; max-width: 92vw; height: 100%; margin: 0; padding: 0;
  background: #FAF6EE; color: #2B2620; box-shadow: -24px 0 60px rgba(20,17,13,.22);
  flex-direction: column; transform: translateX(100%);
  transition: transform .34s cubic-bezier(.2,.8,.3,1);
  font-family: 'Work Sans', sans-serif; text-align: left;
}
aside.cro-drawer.is-open { transform: translateX(0); }
aside.cro-drawer > div { flex: 1; min-height: 0; display: flex; flex-direction: column; }
.cro-drawer-inner { flex: 1; min-height: 0; display: flex; flex-direction: column; }
.cro-drawer-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 26px 28px 22px; border-bottom: 1px solid #E4D9C3;
}
.cro-drawer-title { font-family: 'Fraunces', Georgia, serif; font-size: 26px; line-height: 1.1; color: #2B2620; }
.cro-drawer-sub { margin-top: 4px; font-size: 13px; color: #6B6255; }
.cro-drawer-close {
  width: 44px; height: 44px; border-radius: 999px; border: 1px solid #E4D9C3; background: #FFFFFF;
  color: #2B2620; display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  flex-shrink: 0; padding: 0; transition: background .2s, border-color .2s;
}
.cro-drawer-close:hover { background: #F1E9D8; border-color: #D6CBB5; }

.cro-drawer-list, .cro-drawer-scroll { flex: 1; min-height: 0; overflow-y: auto; margin: 0; padding: 8px 28px; list-style: none; }
.cro-drawer-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid #EDE4D2; }
.cro-drawer-item:last-child { border-bottom: none; }
.cro-drawer-thumb { flex: 0 0 84px; width: 84px; height: 84px; border-radius: 12px; overflow: hidden; background: #FFFFFF; display: block; }
.cro-drawer-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cro-drawer-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
a.cro-drawer-name {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: 14px; line-height: 1.45; font-weight: 500; color: #2B2620 !important; text-decoration: none !important;
}
a.cro-drawer-name:hover { color: #8A5F14 !important; }
.cro-drawer-line { margin-top: 6px; display: flex; align-items: baseline; gap: 8px; font-variant-numeric: tabular-nums; }
.cro-drawer-amt { font-size: 15px; font-weight: 600; color: #2B2620; }
.cro-drawer-was { font-size: 12.5px; color: #7A6F60; text-decoration: line-through; }
.cro-drawer-actions { margin-top: auto; padding-top: 10px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cro-qty { display: inline-flex; align-items: center; border: 1px solid #DDD1BA; border-radius: 999px; background: #FFFFFF; height: 36px; }
.cro-qty button {
  width: 36px; height: 34px; border: none; background: transparent; color: #2B2620; font-size: 17px;
  line-height: 1; cursor: pointer; border-radius: 999px; padding: 0;
}
.cro-qty button:hover { background: #F1E9D8; }
.cro-qty span { min-width: 26px; text-align: center; font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums; }
.cro-drawer-remove, .cro-drawer-link {
  border: none; background: none; padding: 4px 0; cursor: pointer; font-family: 'Work Sans', sans-serif;
  font-size: 13px; font-weight: 600; color: #6B6255; text-decoration: underline; text-underline-offset: 3px;
}
.cro-drawer-link { color: #8A5F14; }
.cro-drawer-remove:hover { color: #2B2620; }

.cro-drawer-foot { padding: 20px 28px 26px; border-top: 1px solid #E4D9C3; background: #FFFFFF; display: flex; flex-direction: column; gap: 10px; }
.cro-drawer-row { display: flex; align-items: baseline; justify-content: space-between; font-size: 15px; color: #2B2620; }
.cro-drawer-save { font-size: 13.5px; color: #3E7A4F; font-weight: 600; }
.cro-drawer-total { font-family: 'Fraunces', Georgia, serif; font-size: 26px; font-variant-numeric: tabular-nums; }
.cro-drawer-note { margin: 0 0 6px; font-size: 12.5px; color: #7A6F60; }

.cro-drawer-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 36px; }
.cro-drawer-empty-icon { width: 64px; height: 64px; border-radius: 999px; background: #F1E9D8; color: #8A5F14; display: flex; align-items: center; justify-content: center; }
.cro-drawer-empty-title { margin-top: 18px; font-family: 'Fraunces', Georgia, serif; font-size: 24px; color: #2B2620; }
.cro-drawer-empty-text { margin: 8px 0 24px; font-size: 14.5px; line-height: 1.6; color: #6B6255; max-width: 280px; }

#cro-cart-body.is-busy, #cro-wish-body.is-busy { opacity: .55; pointer-events: none; transition: opacity .2s; }

/* legacy login / account markup rendered inside the account drawer */
#user-widget .user-widget-content { padding-top: 20px; padding-bottom: 28px; }
#user-widget .user-widget-content .btn, #user-widget .user-widget-content button[type="submit"] {
  border-radius: 999px !important; background: #8A5F14 !important; border-color: #8A5F14 !important; color: #fff !important;
  font-family: 'Work Sans', sans-serif !important; font-weight: 600 !important; box-shadow: none !important;
}
#user-widget .user-widget-content input[type="text"], #user-widget .user-widget-content input[type="tel"],
#user-widget .user-widget-content input[type="email"], #user-widget .user-widget-content input[type="number"],
#user-widget .user-widget-content input[type="password"] {
  border: 1px solid #DDD1BA !important; border-radius: 12px !important; background: #FFFFFF !important;
  height: 48px; padding: 0 16px !important; box-shadow: none !important; font-family: 'Work Sans', sans-serif;
}

@media (max-width: 575px) {
  aside.cro-drawer { width: 100%; max-width: 100%; }
  .cro-drawer-head, .cro-drawer-foot { padding-left: 20px; padding-right: 20px; }
  .cro-drawer-list, .cro-drawer-scroll { padding-left: 20px; padding-right: 20px; }
}

/* login / OTP widget inside the account drawer */
#user-widget .container, #user-widget .new-login-area { max-width: 100% !important; width: 100% !important; padding: 0 !important; margin: 0 !important; }
#user-widget .row { margin-left: 0 !important; margin-right: 0 !important; }
#user-widget [class*="col-"] { padding-left: 0 !important; padding-right: 0 !important; }
#user-widget #divLoginForm, #user-widget .white { background: transparent !important; box-shadow: none !important; }
#user-widget .otp-phone-area { display: none !important; }
#user-widget .otp-verify-area {
  display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: 999px; border: 1px solid #E4D9C3; background: #fff; margin-bottom: 14px; color: #2B2620;
}
#user-widget .request-otp-header, #user-widget h3 {
  font-family: 'Fraunces', Georgia, serif !important; font-weight: 400 !important; font-size: 24px !important;
  line-height: 1.2 !important; color: #2B2620 !important; margin: 0 0 20px !important;
}
#user-widget .login-label label, #user-widget label {
  font-family: 'Work Sans', sans-serif !important; font-size: 11.5px !important; font-weight: 600 !important;
  letter-spacing: 1.4px; text-transform: uppercase; color: #7A6F60 !important; margin-bottom: 8px;
}
#user-widget .input-edit, #user-widget input.form-control {
  box-sizing: border-box !important; max-width: 100% !important;
  width: 100% !important; height: 50px !important; border: 1px solid #DDD1BA !important; border-radius: 12px !important;
  background: #FFFFFF !important; padding: 0 16px !important; opacity: 1 !important; font-size: 15px !important;
  color: #2B2620 !important; box-shadow: none !important;
}
#user-widget .input-edit:focus, #user-widget input.form-control:focus { border-color: #8A5F14 !important; outline: none; }
#user-widget .request-otp, #user-widget .btn-block {
  display: flex !important; width: 100% !important; height: 52px; align-items: center; justify-content: center; gap: 8px;
  margin-top: 22px !important; border-radius: 999px !important; background: #8A5F14 !important; border: none !important;
  color: #FFFFFF !important; font-family: 'Work Sans', sans-serif !important; font-size: 14px !important;
  font-weight: 600 !important; letter-spacing: .4px; text-transform: none !important; box-shadow: none !important;
}
#user-widget .request-otp:hover, #user-widget .btn-block:hover { background: #6F4C10 !important; }
#user-widget .resend-otp { font-size: 13px; color: #8A5F14; }

/* =====================================================================
   HOMEPAGE SECTIONS  (desktop values = Main artboard, 1440 wide)
   ===================================================================== */
.cro-h2 { font-size: clamp(34px, 3.34vw, 48px); }
.cro-hero-sec { padding: 22px 0 0; }

/* Shop by category */
.cro-cats-sec { padding: 110px 0 0; }
.cro-cats-head { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.cro-cats-track {
  max-width: 1320px; margin: 0 auto; padding: 0 24px; box-sizing: border-box;
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 28px;
}
a.cro-cat { display: block; text-align: center; text-decoration: none !important; color: inherit; }
.cro-cat-frame { position: relative; padding: 10px; }
.cro-cat-outline {
  position: absolute; inset: 0; border: 1px solid rgba(138,95,20,.3);
  border-radius: 50% 50% 16px 16px / 38.5% 38.5% 16px 16px; transition: border-color .35s, transform .35s;
}
.cro-cat-img {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #EDE4D2;
  border-radius: 50% 50% 10px 10px / 37.5% 37.5% 10px 10px;
}
.cro-cat-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.cro-cat-name { margin-top: 18px; font-family: 'Fraunces', Georgia, serif; font-size: 20px; line-height: 1.2; color: #2B2620; transition: color .3s; }
.cro-cat-hint { margin-top: 6px; font-family: 'Work Sans', sans-serif; font-size: 13px; line-height: 1.4; color: #6B6255; }
a.cro-cat:hover .cro-cat-outline { border-color: #8A5F14; transform: translateY(-4px); }
a.cro-cat:hover .cro-cat-img img { transform: scale(1.06); }
a.cro-cat:hover .cro-cat-name { color: #8A5F14; }
.cro-cats-foot { text-align: center; margin-top: 52px; }

/* Product rails */
.cro-rail-sec { padding: 124px 0 0; }
.cro-rail-head { margin-bottom: 42px; }
.cro-rail-viewall { margin-right: 18px; }
.cro-rail-sec + .cro-rail-sec { padding-top: 96px; }

/* Our story */
.cro-story-sec { margin-top: 130px; background: #F1E9D8; padding: 120px 0; }
.cro-story-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 80px; align-items: center; }
/* 560 x 620 box from the mockup, expressed in percentages so it scales */
.cro-story-media { position: relative; width: 100%; max-width: 560px; aspect-ratio: 560 / 620; }
.cro-story-outline {
  position: absolute; left: 0; top: 0; width: 75%; height: 90.32%;
  border: 1px solid rgba(138,95,20,.45); border-radius: 50% 50% 22px 22px / 37.5% 37.5% 22px 22px;
}
.cro-story-main {
  position: absolute; left: 4.64%; top: 4.19%; width: 75%; height: 90.32%; overflow: hidden;
  border-radius: 50% 50% 22px 22px / 37.5% 37.5% 22px 22px;
}
.cro-story-main img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; display: block; }
.cro-story-small {
  position: absolute; left: 58.93%; bottom: 0; width: 41.07%; aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: 20px; border: 10px solid #F1E9D8; box-shadow: 0 24px 50px rgba(43,38,32,.18); box-sizing: border-box;
}
.cro-story-small img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cro-story-p { margin: 26px 0 0; font-family: 'Work Sans', sans-serif; font-size: 17px; line-height: 1.75; color: #4A4438; max-width: 520px; }
.cro-story-p2 { margin-top: 16px; }
.cro-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 38px; border-top: 1px solid rgba(138,95,20,.25); max-width: 540px; }
.cro-stat { padding: 22px 16px 0; border-left: 1px solid rgba(138,95,20,.25); }
.cro-stat:first-child { padding-left: 0; border-left: none; }
.cro-stat:last-child { padding-right: 0; }
.cro-stat-num { font-family: 'Fraunces', Georgia, serif; font-size: 36px; line-height: 1; color: #2B2620; white-space: nowrap; }
.cro-stat-label { margin-top: 8px; font-family: 'Work Sans', sans-serif; font-size: 13px; line-height: 1.4; color: #6B6255; }
.cro-story-ctas { display: flex; align-items: center; gap: 26px; margin-top: 40px; flex-wrap: wrap; }

/* Shop by brand */
.cro-brands-sec { padding: 130px 0; }
.cro-brands-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 72px; align-items: center; margin-top: 50px; }
.cro-brand-list { border-top: 1px solid #E4D9C3; }
a.cro-brand-item {
  display: flex; align-items: center; gap: 24px; padding: 20px 4px; border-bottom: 1px solid #E4D9C3;
  text-decoration: none !important; color: inherit;
}
.cro-brand-num { width: 26px; flex-shrink: 0; font-family: 'Work Sans', sans-serif; font-size: 12px; font-weight: 600; color: #7A6F60; font-variant-numeric: tabular-nums; }
.cro-brand-title {
  flex-grow: 1; font-family: 'Fraunces', Georgia, serif; font-size: 40px; line-height: 1.1; letter-spacing: -0.5px;
  color: #8C8171; transition: color .3s;
}
.cro-brand-go { width: 28px; display: inline-flex; justify-content: flex-end; color: #8A5F14; opacity: 0; transform: translateX(-8px); transition: opacity .3s, transform .3s; }
a.cro-brand-item.is-active .cro-brand-title { color: #8A5F14; font-style: italic; }
a.cro-brand-item.is-active .cro-brand-go { opacity: 1; transform: translateX(0); }
.cro-brand-media { position: relative; aspect-ratio: 1 / 1.08; border-radius: 26px; overflow: hidden; background: #EDE4D2; }
.cro-brand-media img {
  position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.05); transition: opacity .6s ease, transform 1.4s ease;
}
.cro-brand-media img.is-active { opacity: 1; transform: scale(1); }
a.cro-brand-shop {
  position: absolute; left: 20px; bottom: 20px; z-index: 2; background: #FAF6EE; color: #2B2620 !important;
  font-family: 'Work Sans', sans-serif; font-size: 14px; font-weight: 600; padding: 13px 20px; border-radius: 999px;
  display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 24px rgba(20,17,13,.14); text-decoration: none !important;
}
.cro-brand-cards { display: none; }

/* Journal */
.cro-journal-sec { padding: 0 0 130px; }
.cro-journal-grid {
  max-width: 1320px; margin: 50px auto 0; padding: 0 24px; box-sizing: border-box;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px;
}
a.cro-jcard { display: block; text-decoration: none !important; color: inherit; }
.cro-jcard-img { aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden; background: #EDE4D2; }
.cro-jcard-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
a.cro-jcard:hover .cro-jcard-img img { transform: scale(1.06); }
.cro-jcard-tag { margin-top: 22px; font-family: 'Work Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: #8A5F14; }
h3.cro-jcard-title {
  margin: 10px 0 0 !important; font-family: 'Fraunces', Georgia, serif !important; font-size: 28px !important;
  font-weight: 400 !important; line-height: 1.2 !important; color: #2B2620 !important;
}
.cro-jcard-text {
  margin: 10px 0 0; font-family: 'Work Sans', sans-serif; font-size: 15px; line-height: 1.65; color: #6B6255;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cro-jcard-more { margin-top: 18px; }

/* Instagram gallery: full-bleed strip scrolling behind the card */
.cro-gallery-sec { position: relative; margin-bottom: 40px; }
.cro-gallery-viewport { overflow: hidden; width: 100%; }
.cro-gallery-track { display: flex; width: max-content; animation: cro-gallery-scroll 60s linear infinite; }
.cro-gallery-viewport:hover .cro-gallery-track { animation-play-state: paused; }
@keyframes cro-gallery-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
a.cro-gtile { position: relative; display: block; flex: 0 0 auto; width: calc(100vw / 6); aspect-ratio: 1 / 1; overflow: hidden; min-width: 0; max-width: none; }
a.cro-gtile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
a.cro-gtile:hover img { transform: scale(1.06); }
.cro-gtile-shade {
  position: absolute; inset: 0; background: rgba(36,33,29,.42); display: flex; align-items: center; justify-content: center;
  color: #FFFFFF; opacity: 0; transition: opacity .35s;
}
a.cro-gtile:hover .cro-gtile-shade { opacity: 1; }
.cro-insta-card {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 380px; max-width: calc(100% - 32px); box-sizing: border-box; background: #FAF6EE; border-radius: 26px;
  padding: 34px 32px 36px; text-align: center; box-shadow: 0 30px 70px rgba(20,17,13,.3);
}
.cro-insta-icon { display: inline-flex; width: 52px; height: 52px; border-radius: 999px; background: #F1E9D8; color: #8A5F14; align-items: center; justify-content: center; }
.cro-insta-handle { margin-top: 14px; font-family: 'Fraunces', Georgia, serif; font-size: 32px; line-height: 1.1; color: #2B2620; }
.cro-insta-text { margin: 10px 0 24px; font-family: 'Work Sans', sans-serif; font-size: 15px; line-height: 1.6; color: #6B6255; }
@media (prefers-reduced-motion: reduce) { .cro-gallery-track { animation: none; } }

/* Promise band */
.cro-promise-sec { padding: 80px 0 96px; }
.cro-promise-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.cro-promise { display: flex; gap: 16px; align-items: flex-start; }
.cro-promise-sec .cro-promise-icon {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 999px; background: #F1E9D8; color: #8A5F14;
  display: flex; align-items: center; justify-content: center;
}
.cro-promise-title { font-family: 'Work Sans', sans-serif; font-size: 16px; font-weight: 600; color: #2B2620; }
.cro-promise-text { margin-top: 5px; font-family: 'Work Sans', sans-serif; font-size: 14px; line-height: 1.5; color: #6B6255; }

/* ---------- Tablet ---------- */
@media (max-width: 1199px) {
  .cro-cats-track { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 40px; }
  .cro-story-grid { gap: 48px; }
  .cro-brands-grid { gap: 40px; }
  .cro-brand-title { font-size: 34px; }
  .cro-promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
}
@media (max-width: 991px) {
  .cro-story-grid { grid-template-columns: 1fr; }
  .cro-story-media { margin: 0 auto; }
  .cro-journal-grid { gap: 20px; }
  h3.cro-jcard-title { font-size: 23px !important; }
}

/* ---------- Mobile (values = Mobile artboard, 390 wide) ---------- */
@media (max-width: 767px) {
  .cro-wrap { padding: 0 16px; }
  .cro-hide-sm { display: none !important; }
  .cro-kicker { font-size: 11px; letter-spacing: 2.5px; }
  .cro-h2 { font-size: 31px; line-height: 1.1; letter-spacing: -0.4px; margin-top: 10px; }
  a.cro-textlink, span.cro-textlink { font-size: 13.5px; gap: 6px; padding-bottom: 2px; }
  .cro-btn { padding: 16px 28px; }

  .cro-hero-sec { padding: 12px 0 0; }
  .cro-hero-sec .cro-wrap { padding: 0 12px; }

  .cro-cats-sec { padding: 50px 0 0; }
  .cro-cats-head { padding: 0 8px; margin-bottom: 24px; }
  .cro-cats-head .cro-lead { display: none; }
  .cro-cats-track {
    display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
    padding: 0 16px 4px; scroll-padding-left: 16px; -webkit-overflow-scrolling: touch;
  }
  .cro-cats-track::-webkit-scrollbar { display: none; }
  a.cro-cat { flex: 0 0 124px; width: 124px; scroll-snap-align: start; }
  .cro-cat-frame { padding: 6px; }
  .cro-cat-outline { border-radius: 50% 50% 12px 12px / 39% 39% 12px 12px; }
  .cro-cat-img { border-radius: 50% 50% 8px 8px / 37.5% 37.5% 8px 8px; }
  .cro-cat-name { margin-top: 12px; font-size: 15px; }
  .cro-cat-hint, .cro-cats-foot { display: none; }

  .cro-rail-sec, .cro-rail-sec + .cro-rail-sec { padding-top: 56px; }
  .cro-rail-head { margin-bottom: 22px; }
  .cro-rail-btn { display: none; }
  .cro-rail-viewall { margin: 0 0 6px; }
  .cro-track.cro-bleed { gap: 14px; padding-left: 16px; padding-right: 16px; scroll-padding-left: 16px; padding-bottom: 4px; }
  .cro-pcard { width: 168px; }
  .cro-pcard-media { border-radius: 14px; }
  .cro-pcard-badge { top: 9px; left: 9px; font-size: 10.5px; padding: 4px 8px; }
  .cro-pcard-wish { top: 8px; right: 8px; width: 32px; height: 32px; }
  .cro-pcard-wish svg { width: 16px; height: 16px; }
  .cro-pcard .cro-pcard-atc {
    left: auto; right: 8px; bottom: 8px; width: 36px; height: 36px; border-radius: 999px !important;
    transform: none; font-size: 0 !important; gap: 0;
  }
  .cro-pcard-body { padding-top: 12px; }
  .cro-pcard-cat { font-size: 10.5px; letter-spacing: 1.2px; }
  .cro-pcard-name { margin-top: 6px; font-size: 14px; }
  .cro-pcard-price { margin-top: 8px; column-gap: 8px; }
  .cro-pcard-now { font-size: 15px; }
  .cro-pcard-was, .cro-pcard-off { font-size: 12px; }

  .cro-story-sec { margin-top: 64px; padding: 56px 0; }
  .cro-story-grid { gap: 36px; }
  .cro-story-media { max-width: 340px; }
  .cro-story-small { border-width: 8px; border-radius: 16px; }
  .cro-story-copy { padding: 0 4px; }
  .cro-story-copy .cro-h2 { font-size: 33px; }
  .cro-story-copy .cro-h2 br { display: none; }
  .cro-story-p { margin-top: 18px; font-size: 15.5px; line-height: 1.7; }
  .cro-story-p2 { margin-top: 12px; }
  .cro-stats { margin-top: 28px; }
  .cro-stat { padding: 18px 10px 0; }
  .cro-stat-num { font-size: 26px; }
  .cro-stat:nth-child(2) .cro-stat-num { font-size: 22px; line-height: 1.18; }
  .cro-stat-label { margin-top: 6px; font-size: 12px; }
  .cro-story-ctas { flex-direction: column; align-items: stretch; gap: 18px; margin-top: 30px; }
  .cro-story-ctas .cro-btn { width: 100%; }
  .cro-story-ctas .cro-textlink { align-self: center; }

  .cro-brands-sec { padding: 64px 0 0; }
  .cro-brands-grid { display: none; }
  .cro-brand-cards {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
    padding: 22px 16px 4px; scroll-padding-left: 16px;
  }
  .cro-brand-cards::-webkit-scrollbar { display: none; }
  a.cro-brand-card { flex: 0 0 150px; width: 150px; scroll-snap-align: start; text-decoration: none !important; color: inherit; }
  .cro-brand-card-img { height: 180px; border-radius: 16px; overflow: hidden; background: #EDE4D2; }
  .cro-brand-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .cro-brand-card-name { margin-top: 12px; font-family: 'Fraunces', Georgia, serif; font-size: 20px; line-height: 1.15; color: #2B2620; }

  .cro-journal-sec { padding: 60px 0 0; }
  .cro-journal-grid {
    display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
    margin-top: 22px; padding: 0 16px 4px; scroll-padding-left: 16px;
  }
  .cro-journal-grid::-webkit-scrollbar { display: none; }
  a.cro-jcard { flex: 0 0 300px; width: 300px; scroll-snap-align: start; }
  .cro-jcard-img { border-radius: 16px; }
  .cro-jcard-tag { margin-top: 16px; font-size: 10.5px; letter-spacing: 1.5px; }
  h3.cro-jcard-title { margin-top: 8px !important; font-size: 23px !important; }
  .cro-jcard-text { margin-top: 8px; font-size: 14.5px; line-height: 1.6; }
  .cro-jcard-more { display: none !important; }

  .cro-gallery-sec { padding-top: 64px; margin-bottom: 0; }
  a.cro-gtile { width: calc(100vw / 3); }
  .cro-insta-card {
    position: static; transform: none; width: auto; max-width: none; margin: 20px 16px 0;
    background: #F1E9D8; border-radius: 22px; padding: 28px 24px; box-shadow: none;
  }
  .cro-insta-icon { width: 48px; height: 48px; background: #FAF6EE; }
  .cro-insta-handle { margin-top: 12px; font-size: 28px; }
  .cro-insta-text { margin: 8px 0 18px; font-size: 14.5px; }

  .cro-promise-sec { padding: 56px 0; }
  .cro-promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 16px; }
  .cro-promise { flex-direction: column; gap: 12px; }
  .cro-promise-sec .cro-promise-icon { width: 44px; height: 44px; }
  .cro-promise-title { font-size: 15px; }
  .cro-promise-text { margin-top: 4px; font-size: 13px; }
}

/* =====================================================================
   HEADER NAV + MEGA MENU
   Items spread edge to edge inside the same 1320px container as the hero,
   so the first item lines up with the slider's left edge and "Offers" with
   its right edge.
   ===================================================================== */
.cro-cat-nav { height: auto !important; border-top: 1px solid #EDE4D2; border-bottom: 1px solid #E4D9C3; }
.cro-cat-nav .cro-nav-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; height: 52px; }
.cro-cat-nav .cro-navitem { position: relative; height: 52px; display: flex; align-items: center; }
.cro-cat-nav .cro-navlink {
  font-family: 'Work Sans', sans-serif !important; font-size: 15px !important; font-weight: 500 !important;
  letter-spacing: 0; text-transform: none; color: #2B2620 !important; padding: 0 !important; height: 52px;
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
}
.cro-cat-nav .cro-navlink svg { margin: 0; opacity: .7; }
.cro-cat-nav .cro-navitem:hover > .cro-navlink,
.cro-cat-nav .cro-navitem:focus-within > .cro-navlink { color: #8A5F14 !important; border-bottom-color: #8A5F14; }
.cro-cat-nav .cro-navlink--offers { color: #8A5F14 !important; }
@media (max-width: 1359px) { .cro-cat-nav .cro-navlink { font-size: 14px !important; } }
@media (max-width: 1239px) { .cro-cat-nav .cro-navlink { font-size: 13px !important; } .cro-cat-nav .cro-navlink svg { display: none; } }

.cro-cat-nav .cro-mega {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 10px); width: max-content;
  background: transparent; border: none; box-shadow: none; border-radius: 0; padding-top: 1px; z-index: 300;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s, transform .25s, visibility .25s;
}
.cro-cat-nav .cro-mega--start { left: 0; transform: translate(0, 10px); }
.cro-cat-nav .cro-mega--end { left: auto; right: 0; transform: translate(0, 10px); }
.cro-cat-nav .cro-navitem:hover .cro-mega,
.cro-cat-nav .cro-navitem:focus-within .cro-mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.cro-cat-nav .cro-navitem:hover .cro-mega--start, .cro-cat-nav .cro-navitem:focus-within .cro-mega--start,
.cro-cat-nav .cro-navitem:hover .cro-mega--end, .cro-cat-nav .cro-navitem:focus-within .cro-mega--end { transform: translate(0, 0); }
.cro-mega-card {
  display: grid; grid-template-columns: repeat(var(--cro-mega-cols, 1), minmax(170px, auto)) 230px; gap: 28px;
  background: #FFFFFF; border-radius: 20px; box-shadow: 0 30px 70px rgba(43,38,32,.18); padding: 30px;
}
.cro-mega-card--noimg { grid-template-columns: repeat(var(--cro-mega-cols, 1), minmax(170px, auto)); }
.cro-mega-kicker { font-family: 'Work Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #8A5F14; margin-bottom: 10px; white-space: nowrap; }
.cro-cat-nav a.cro-megalink {
  display: block; padding: 7px 0; font-family: 'Work Sans', sans-serif !important; font-size: 15px !important;
  color: #4A4438 !important; text-decoration: none !important; white-space: nowrap; transition: color .2s;
}
.cro-cat-nav a.cro-megalink:hover { color: #8A5F14 !important; }
.cro-cat-nav a.cro-megalink--all { margin-top: 8px; font-size: 14px !important; font-weight: 600; color: #8A5F14 !important; }
a.cro-mega-feature { display: block; text-decoration: none !important; }
.cro-mega-feature-img { display: block; height: 190px; border-radius: 14px; overflow: hidden; background: #F1E9D8; }
.cro-mega-feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
a.cro-mega-feature:hover .cro-mega-feature-img img { transform: scale(1.06); }
.cro-mega-feature-title { display: block; margin-top: 12px; font-family: 'Fraunces', Georgia, serif; font-size: 18px; color: #2B2620; }
.cro-mega-feature-cta { display: block; margin-top: 4px; font-family: 'Work Sans', sans-serif; font-size: 13px; font-weight: 600; color: #8A5F14; }

/* ---------- Fixed-header spacers (must equal the header's height) ---------- */
.cro-header-spacer { width: 100%; height: 180px; }          /* announce 40 + header 88 + nav 52 */
.cro-header-spacer--mob { height: 95px; }                    /* announce 34 + header 60 + border 1 */
.cro-cat-nav .cro-nav-row, .cro-cat-nav .cro-navitem, .cro-cat-nav .cro-navlink { height: 50px !important; } /* + 2px borders = 52 */

/* ---------- Mobile header (Mobile artboard) ---------- */
.cro-announce.cro-announce--mob {
  display: flex; align-items: center; justify-content: center; height: 34px; padding: 0 12px;
  background: #24211D; color: #F3EAD6; font-family: 'Work Sans', sans-serif; font-size: 11.5px; letter-spacing: .3px;
}
.cro-mhead {
  height: 60px; padding: 0 6px; background: #FAF6EE; border-bottom: 1px solid #E4D9C3;
  display: grid; grid-template-columns: 92px minmax(0, 1fr) 92px; align-items: center; box-sizing: content-box;
}
.cro-mhead-side { display: flex; align-items: center; }
.cro-mhead-side--end { justify-content: flex-end; }
.cro-mhead-logo { justify-self: center; display: block; line-height: 0; }
.cro-mhead-logo img { height: 28px; width: auto; display: block; }
.cro-mhead-badge {
  position: absolute; top: 5px; right: 3px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px;
  background: #8A5F14; color: #FFFFFF; font-family: 'Work Sans', sans-serif; font-size: 10px; font-weight: 700;
  align-items: center; justify-content: center; box-sizing: border-box;
}
.cro-msearch { padding: 10px 16px; background: #FAF6EE; border-bottom: 1px solid #E4D9C3; }
.cro-msearch-field {
  display: flex; align-items: center; gap: 8px; height: 44px; padding: 0 16px; border: 1px solid #DDD1BA;
  border-radius: 999px; background: #FFFFFF; color: #6B6255;
}
.cro-msearch-field input { border: none; outline: none; background: transparent; width: 100%; min-width: 0; font-family: 'Work Sans', sans-serif; font-size: 16px; color: #2B2620; }

/* ---------- Left drawer: mobile menu ---------- */
aside.cro-drawer.cro-drawer--left { left: 0; right: auto; transform: translateX(-100%); box-shadow: 24px 0 60px rgba(20,17,13,.22); width: 360px; }
aside.cro-drawer.cro-drawer--left.is-open { transform: translateX(0); }
.cro-menu { padding: 0 !important; }
.cro-menu-account { padding: 20px 24px; background: #F1E9D8; }
.cro-menu-hello { font-family: 'Fraunces', Georgia, serif; font-size: 22px; color: #2B2620; }
.cro-menu-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.cro-menu-chips a, .cro-menu-chips button {
  display: inline-flex; align-items: center; height: 38px; padding: 0 16px; border-radius: 999px;
  border: 1px solid rgba(43,38,32,.25); background: #FAF6EE; color: #2B2620 !important;
  font-family: 'Work Sans', sans-serif; font-size: 13.5px; font-weight: 600; text-decoration: none !important; cursor: pointer;
}
.cro-menu-chips .is-primary { background: #8A5F14; border-color: #8A5F14; color: #FFFFFF !important; }
.cro-menu-label { padding: 22px 24px 8px; font-family: 'Work Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: #8A5F14; }
.cro-menu-cats { list-style: none; margin: 0; padding: 0 24px; }
.cro-menu-cats > li { border-bottom: 1px solid #EDE4D2; }
.cro-menu-cats summary, a.cro-menu-top {
  display: flex; align-items: center; justify-content: space-between; min-height: 52px; cursor: pointer; list-style: none;
  font-family: 'Fraunces', Georgia, serif; font-size: 19px; color: #2B2620 !important; text-decoration: none !important;
}
.cro-menu-cats summary::-webkit-details-marker { display: none; }
.cro-menu-cats summary svg { color: #8A5F14; transition: transform .25s; }
.cro-menu-cats details[open] summary svg { transform: rotate(180deg); }
.cro-menu-subs { display: flex; flex-direction: column; padding: 0 0 14px 2px; }
.cro-menu-subs a { padding: 8px 0; font-family: 'Work Sans', sans-serif; font-size: 15px; color: #4A4438 !important; text-decoration: none !important; }
.cro-menu-subs a.cro-menu-all { font-weight: 600; color: #8A5F14 !important; }
a.cro-menu-offers { color: #8A5F14 !important; }
.cro-menu-links { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; padding: 0 24px; }
.cro-menu-links a { padding: 9px 0; font-family: 'Work Sans', sans-serif; font-size: 15px; color: #2B2620 !important; text-decoration: none !important; }
.cro-menu-contact {
  margin: 22px 24px 28px; padding-top: 18px; border-top: 1px solid #EDE4D2;
  display: flex; flex-direction: column; gap: 6px; font-family: 'Work Sans', sans-serif; font-size: 13.5px; color: #6B6255;
}
.cro-menu-contact a { color: #2B2620 !important; text-decoration: none !important; }

/* ---------- /store/categories ---------- */
.cro-allcats { padding: 64px 0 110px; }
.cro-allcats-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
h1.cro-h2 { margin-top: 14px; }
.cro-allcats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 48px 28px; }
.cro-allcat-subs { margin-top: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; }
.cro-allcat-subs a { font-family: 'Work Sans', sans-serif; font-size: 13.5px; color: #6B6255 !important; text-decoration: none !important; }
.cro-allcat-subs a:hover { color: #8A5F14 !important; }
@media (max-width: 991px) { .cro-allcats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 767px) {
  .cro-allcats { padding: 36px 0 64px; }
  .cro-allcats-head { margin-bottom: 32px; }
  .cro-allcats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 16px; }
  .cro-allcat .cro-cat-name { font-size: 17px; }
}

/* =====================================================================
   FOOTER (mockup: newsletter row + 5 columns + bottom bar)
   ===================================================================== */
.cro-sr { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
footer.cro-footer { background: #24211D !important; color: #E8DFC9; font-family: 'Work Sans', sans-serif; padding: 76px 0 30px; margin: 0; }
.cro-foot-news {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 60px; align-items: center;
  padding-bottom: 56px; border-bottom: 1px solid #3A352C;
}
.cro-foot-news-title { font-family: 'Fraunces', Georgia, serif; font-size: 38px; line-height: 1.12; color: #FAF6EE; }
.cro-foot-news-title em { font-style: italic; color: #E7C77F; }
.cro-foot-news-text { margin: 12px 0 0; font-size: 15.5px; line-height: 1.6; color: #C9BFA9; }
.cro-foot-news-form { display: flex; gap: 10px; justify-self: end; width: 100%; max-width: 520px; margin: 0; }
.cro-foot-news-form input {
  flex: 1; min-width: 0; height: 54px; padding: 0 22px; border-radius: 999px; border: 1px solid #4A443A;
  background: #2E2A24; color: #FAF6EE; font-family: 'Work Sans', sans-serif; font-size: 15px; outline: none; box-shadow: none;
}
.cro-foot-news-form input::placeholder { color: #A99F8B; }
.cro-foot-news-form input:focus { border-color: #E7C77F; }
.cro-foot-news-form .cro-btn { height: 54px; padding-top: 0; padding-bottom: 0; }

.cro-foot-grid {
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px; padding: 56px 0;
}
.cro-foot-logo { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: .92; display: block; }
.cro-foot-addr { margin: 22px 0 0; font-size: 14.5px; line-height: 1.75; color: #C9BFA9; }
.cro-foot-contact { margin: 14px 0 0; font-size: 14.5px; line-height: 1.75; }
.cro-foot-head {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #FAF6EE;
  margin-bottom: 20px; list-style: none; cursor: default;
}
.cro-foot-head::-webkit-details-marker { display: none; }
.cro-foot-head svg { display: none; }
.cro-foot-links { display: flex; flex-direction: column; gap: 13px; }
a.cro-footlink { color: #C9BFA9 !important; font-size: 14.5px; text-decoration: none !important; transition: color .2s; }
a.cro-footlink:hover { color: #E7C77F !important; }
.cro-foot-social { display: flex; flex-wrap: wrap; gap: 10px; max-width: 160px; }
a.cro-social {
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid #4A443A; color: #E8DFC9 !important;
  display: inline-flex; align-items: center; justify-content: center; transition: background .2s, color .2s, border-color .2s;
}
a.cro-social:hover { background: #E7C77F; border-color: #E7C77F; color: #24211D !important; }
.cro-foot-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 26px; border-top: 1px solid #3A352C;
}
.cro-foot-copy { font-size: 13px; color: #A99F8B; }
.cro-foot-copy a { color: #E7C77F !important; text-decoration: none !important; }
.cro-foot-pay { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 12px; color: #C9BFA9; }
.cro-foot-pay-label { margin-right: 4px; }
.cro-pay { padding: 5px 10px; border: 1px solid #4A443A; border-radius: 6px; }

/* WhatsApp float: consistent size, never pushes the layout wider */
a.wa-link {
  width: 56px !important; height: 56px !important; padding: 0 !important; right: 18px !important; bottom: 18px !important;
  display: flex !important; align-items: center; justify-content: center; box-shadow: 0 10px 28px rgba(5,152,98,.35) !important;
}
a.wa-link i { font-size: 32px !important; padding: 0 !important; line-height: 1; }

@media (max-width: 1199px) {
  .cro-foot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cro-foot-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 767px) {
  footer.cro-footer { padding: 48px 0 40px; }
  .cro-foot-news { grid-template-columns: 1fr; gap: 20px; padding-bottom: 0; border-bottom: none; }
  .cro-foot-news-title { font-size: 30px; line-height: 1.15; }
  .cro-foot-news-text { margin-top: 10px; font-size: 14.5px; }
  .cro-foot-news-form { flex-direction: column; max-width: none; justify-self: stretch; }
  .cro-foot-news-form input { height: 52px; flex: none; width: 100%; }
  .cro-foot-news-form .cro-btn { width: 100%; height: 52px; }
  .cro-foot-grid { display: flex; flex-direction: column; gap: 0; padding: 36px 0 0; border-top: 1px solid #3A352C; margin-top: 36px; }
  .cro-foot-brand { order: 2; padding-top: 34px; }
  .cro-foot-logo { height: 30px; }
  .cro-foot-addr { margin-top: 16px; font-size: 14px; }
  .cro-foot-contact { margin-top: 10px; font-size: 14px; line-height: 1.9; }
  details.cro-foot-col { order: 1; border-bottom: 1px solid #3A352C; }
  details.cro-foot-col .cro-foot-head {
    display: flex; align-items: center; justify-content: space-between; height: 58px; margin: 0;
    font-size: 15px; letter-spacing: 0; text-transform: none; cursor: pointer;
  }
  details.cro-foot-col .cro-foot-head svg { display: block; color: #C9BFA9; transition: transform .25s; }
  details.cro-foot-col[open] .cro-foot-head svg { transform: rotate(180deg); }
  details.cro-foot-col .cro-foot-links { gap: 14px; padding: 0 0 20px; }
  .cro-foot-grid > .cro-foot-col:first-of-type { }
  .cro-foot-social-col { order: 3; padding-top: 22px; }
  .cro-foot-social-col .cro-foot-head { display: none; }
  .cro-foot-social { max-width: none; gap: 8px; }
  a.cro-social { width: 44px; height: 44px; }
  .cro-foot-bottom { margin-top: 28px; padding-top: 20px; gap: 14px; }
  .cro-foot-pay { order: -1; }
  .cro-foot-copy { font-size: 12.5px; line-height: 1.7; }
  a.wa-link { width: 52px !important; height: 52px !important; right: 14px !important; bottom: 14px !important; }
}
/* legacy input[type=...] rules force content-box; override on inputs we own */
.cro-foot-news-form input, .cro-msearch-field input, #custom-search-input input, #user-widget input { box-sizing: border-box !important; }
@media (max-width: 767px) {
  .cro-hero-sec .cro-hero-arrow { display: none !important; }
  .cro-hero-sec .cro-hero-frame { border-radius: 16px; }
}
.cro-msearch-field input:focus, #custom-search-input input:focus { outline: none !important; box-shadow: none !important; border: none !important; }
.cro-msearch-field:focus-within, #custom-search-input:focus-within { border-color: #8A5F14 !important; }
.autocomplete-suggestions { border-radius: 18px !important; box-shadow: 0 24px 60px rgba(43,38,32,.16) !important; border: 1px solid #E4D9C3 !important; background: #FFFFFF !important; overflow-y: auto; padding: 6px 0; box-sizing: border-box; }
.autocomplete-suggestion { font-family: 'Work Sans', sans-serif; font-size: 14px; padding: 10px 18px !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* =====================================================================
   INNER PAGES
   The legacy Bootstrap .container gets the same geometry as .cro-wrap, so
   inner-page content lines up with the header and hero edges.
   ===================================================================== */
.container { max-width: 1320px !important; padding-left: 24px !important; padding-right: 24px !important; }
@media (max-width: 767px) { .container { padding-left: 16px !important; padding-right: 16px !important; } }

/* ---------- Listing / search / offers ---------- */
.cro-list-head { padding: 44px 0 28px; }
.cro-list-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.cro-list-title { margin-top: 10px !important; font-size: clamp(30px, 2.8vw, 40px) !important; }
.cro-sort-btn {
  display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 20px; border-radius: 999px;
  border: 1px solid rgba(43,38,32,.3); background: transparent; color: #2B2620; cursor: pointer;
  font-family: 'Work Sans', sans-serif; font-size: 14px; font-weight: 600;
}
.cro-sort-btn:hover { border-color: #2B2620; }
.cro-sort-menu { border: 1px solid #E4D9C3 !important; border-radius: 14px !important; box-shadow: 0 18px 44px rgba(43,38,32,.14) !important; padding: 6px !important; min-width: 210px; }
.cro-sort-menu .dropdown-item { font-family: 'Work Sans', sans-serif; font-size: 14px; color: #2B2620 !important; padding: 10px 14px; border-radius: 10px; }
.cro-sort-menu .dropdown-item:hover { background: #F1E9D8; color: #8A5F14 !important; }
.cro-list-pills .mcpills { padding: 16px 0 4px; }
.cro-list-pills .mcpills a { border: 1px solid rgba(43,38,32,.25) !important; border-width: 1px !important; background: transparent !important; font-family: 'Work Sans', sans-serif; font-size: 13px !important; margin-right: 6px; }

.cro-list-body { border-top: 1px solid #E4D9C3; padding-bottom: 80px; }
.cro-list-body > .container > .row > .col-lg-2 { border-right: 1px solid #E4D9C3 !important; padding-top: 12px; }
.cro-list-body #magicat { padding-top: 8px !important; }
.cro-list-body #magicat .level0 { margin-bottom: 6px; }
.cro-list-body #magicat .level0 > .magicat-cat span {
  display: inline-block; font-family: 'Fraunces', Georgia, serif !important; font-size: 17px !important;
  font-weight: 400 !important; color: #2B2620 !important; text-transform: lowercase;
}
.cro-list-body #magicat .level0 > .magicat-cat span::first-letter { text-transform: uppercase; }
.cro-list-body #magicat .level1 span { font-family: 'Work Sans', sans-serif; font-size: 14px !important; color: #6B6255 !important; }
.cro-list-body #magicat a:hover span { color: #8A5F14 !important; }
.cro-list-body .col-lg-2 .text-left { font-family: 'Work Sans', sans-serif; font-size: 13px; color: #7A6F60; }

/* listing product card -> same look as the homepage card */
.cro-list-body .product-list-container > .row { margin-left: -12px; margin-right: -12px; }
.cro-list-body .prod-grid-col { padding: 0 12px !important; margin-bottom: 40px; }
.cro-list-body .prod-grid-col > div { width: 100%; }
.cro-list-body .prod-grid-col .card { border: none !important; border-radius: 0 !important; box-shadow: none !important; background: transparent !important; overflow: visible; height: auto !important; margin: 0 !important; }
.cro-list-body .prod-grid-col .card > a.text-center {
  display: block !important; aspect-ratio: 1 / 1; border-radius: 16px !important; overflow: hidden !important; background: #FFFFFF !important;
}
.cro-list-body .prod-grid-col .card > a.text-center img {
  width: 100% !important; height: 100% !important; object-fit: cover !important; border: none !important;
  border-radius: 0 !important; box-shadow: none !important; animation: none !important;
  transition: transform .9s cubic-bezier(.2,.7,.2,1) !important;
}
.cro-list-body .prod-grid-col .card:hover > a.text-center img { transform: scale(1.06) !important; }
.cro-list-body .prod-grid-col .card-body { padding: 16px 2px 0 !important; margin: 0 !important; height: auto !important; display: flex; flex-direction: column; }
.cro-list-body .prod-grid-col .card-title a {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.9em; font-family: 'Work Sans', sans-serif !important; font-size: 15px !important; line-height: 1.45 !important;
  font-weight: 500 !important; color: #2B2620 !important; text-decoration: none !important;
}
.cro-list-body .prod-grid-col .card-title a:hover { color: #8A5F14 !important; }
.cro-list-body .prod-grid-col .card-text { margin: 0 !important; font-size: 15px !important; }
.cro-list-body .prod-grid-col .card-text > div:first-child {
  margin: 10px 0 0 !important; padding: 0 !important; font-family: 'Work Sans', sans-serif !important;
  font-size: 16.5px !important; line-height: 1.4 !important; color: #2B2620 !important; float: none !important; width: 100% !important;
}
.cro-list-body .prod-grid-col .card-text > div:first-child b { font-weight: 600; }
.cro-list-body .prod-grid-col .card-text strike, .cro-list-body .prod-grid-col .card-text strike span { font-size: 13px !important; color: #7A6F60 !important; font-weight: 400; }
.cro-list-body .prod-grid-col .card-text .text-success { font-size: 13px !important; font-weight: 600; color: #3E7A4F !important; }
.cro-list-body .prod-grid-col .card-text > div + div { float: none !important; width: 100% !important; padding: 0 !important; height: auto !important; }
.cro-list-body .prod-grid-col .card-text button.btn-warning, .cro-list-body .prod-grid-col button[onclick*="addToCartFn"].w-100 {
  float: none !important; display: flex !important; align-items: center; justify-content: center; width: 100% !important; height: 44px;
  margin: 12px 0 0 !important; padding: 0 !important; border: none !important; border-radius: 12px !important;
  background: #2B2620 !important; color: #FAF6EE !important; box-shadow: none !important;
  font-family: 'Work Sans', sans-serif !important; font-size: 13.5px !important; font-weight: 600 !important;
  letter-spacing: .3px !important; text-transform: none !important;
}
.cro-list-body .prod-grid-col .card-text button.btn-warning:hover { background: #8A5F14 !important; }
.cro-list-body #loadMoreBtn {
  width: auto !important; height: auto !important; padding: 16px 34px !important; background: transparent !important;
  color: #2B2620 !important; border: 1px solid rgba(43,38,32,.35) !important; border-radius: 999px !important;
  font-family: 'Work Sans', sans-serif !important; font-size: 14px !important; font-weight: 600 !important;
  text-transform: none !important; letter-spacing: .4px; box-shadow: none !important;
}
.cro-list-body #loadMoreBtn:hover { border-color: #2B2620 !important; }
@media (max-width: 767px) {
  .cro-list-head { padding: 26px 0 16px; }
  .cro-list-head-row { align-items: center; }
  .cro-list-title { font-size: 28px !important; }
  .cro-sort-btn { height: 40px; padding: 0 14px; font-size: 13px; }
  .cro-list-body .product-list-container > .row { margin-left: -7px; margin-right: -7px; }
  .cro-list-body .prod-grid-col { padding: 0 7px !important; margin-bottom: 28px; }
  .cro-list-body .prod-grid-col .card > a.text-center { border-radius: 14px !important; }
  .cro-list-body .prod-grid-col .card-body { padding-top: 12px !important; }
  .cro-list-body .prod-grid-col .card-title a { font-size: 14px !important; }
  .cro-list-body .prod-grid-col .card-text > div:first-child { font-size: 15px !important; margin-top: 8px !important; }
  .cro-list-body .prod-grid-col .card-text button.btn-warning { height: 40px; font-size: 13px !important; }
}

/* ---------- Product detail page ---------- */
.cro-p-product #productDetails { padding-top: 40px !important; }
.cro-p-product #zoom_container {
  background: #FFFFFF; border-radius: 20px; overflow: hidden; aspect-ratio: 1 / 1; max-height: none !important;
  display: flex; align-items: center; justify-content: center;
}
.cro-p-product #zoom_01 { background-color: transparent !important; border: none !important; width: 100% !important; height: 100% !important; max-height: none !important; object-fit: contain; }
.cro-p-product #gal1 { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-start; margin-top: 14px; }
.cro-p-product #gal1 img {
  width: 72px !important; height: 72px !important; max-width: none !important; max-height: none !important; object-fit: cover;
  border-radius: 12px; border: 1px solid #E4D9C3 !important; background-color: #FFFFFF !important; transition: border-color .2s;
}
.cro-p-product #gal1 a:hover img, .cro-p-product #gal1 .active > img { border-color: #8A5F14 !important; }

.cro-p-product h1.product-name {
  font-family: 'Fraunces', Georgia, serif !important; font-weight: 400 !important; font-size: 34px !important;
  line-height: 1.15 !important; color: #2B2620 !important; padding: 0 60px 0 0 !important; text-wrap: balance;
}
.cro-p-product .prod-actions { top: 0 !important; }
.cro-p-product .prod-actions a {
  width: 48px; height: 48px; border-radius: 999px; border: 1px solid #E4D9C3; background: #FFFFFF;
  display: inline-flex; align-items: center; justify-content: center;
}
.cro-p-product .wishlist-prod-action-icon { font-size: 20px !important; color: #2B2620 !important; }
.cro-p-product h4.h3-responsive { padding: 0 !important; margin-top: 14px !important; }
.cro-p-product h4.h3-responsive span, .cro-p-product h4.h3-responsive strong { color: #2B2620 !important; font-family: 'Work Sans', sans-serif; font-size: 26px; font-weight: 600; }
.cro-p-product h6.product-name {
  padding: 22px 0 0 !important; font-family: 'Work Sans', sans-serif !important; font-size: 13px !important;
  font-weight: 500 !important; color: #7A6F60 !important; letter-spacing: .3px;
}
.cro-p-product #productDetails p.text-muted { padding-left: 0 !important; }
.cro-p-product #productDetails p.text-muted a, .cro-p-product #productDetails p.text-muted span {
  color: #8A5F14 !important; font-family: 'Work Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
}
.cro-p-product #productDetails [onclick="gotoRating();"] {
  margin: 6px 0 0 !important; border-radius: 999px !important; border-color: #DDD1BA !important; background: #FFFFFF;
  font-family: 'Work Sans', sans-serif; font-size: 12.5px !important;
}
.cro-p-product #productDetails .pl-2.my-5 { padding-left: 0 !important; margin: 28px 0 !important; }
.cro-p-product #productDetails .pl-2.my-5 > div { font-family: 'Work Sans', sans-serif !important; font-size: 16px !important; line-height: 1.7; color: #4A4438 !important; }
.cro-p-product #productDetails .row.p-2.pl-3 { display: flex; align-items: center; gap: 16px; padding: 0 !important; margin: 0; flex-wrap: nowrap; }
.cro-p-product #productDetails .row.p-2.pl-3 > div { flex: 0 0 auto; max-width: none; width: auto; }
.cro-p-product #productDetails .row.p-2.pl-3 .w-100 { display: flex; align-items: center; border: 1px solid #DDD1BA; border-radius: 999px; background: #FFFFFF; height: 52px; padding: 0 4px; }
.cro-p-product #productDetails .row.p-2.pl-3 .w-100 > div { float: none !important; height: auto !important; }
.cro-p-product .items-count {
  width: 44px !important; height: 44px !important; border-radius: 999px !important; border: none !important;
  background: transparent !important; box-shadow: none !important; position: relative; padding: 0 !important;
}
.cro-p-product .items-count:hover { background: #F1E9D8 !important; }
.cro-p-product .items-count span { position: static !important; margin: 0 !important; font-size: 20px !important; color: #2B2620 !important; line-height: 44px; }
.cro-p-product #qty1 { width: 36px !important; height: 44px; border: none !important; font-family: 'Work Sans', sans-serif; font-size: 16px !important; font-weight: 600; color: #2B2620; background: transparent; }
.cro-p-product button[onclick*="addToCartFn('addcart_form_div_1_"] {
  float: none !important; height: 52px; padding: 0 40px !important; border-radius: 999px !important;
  background: #8A5F14 !important; border: 1px solid #8A5F14 !important; color: #FFFFFF !important; box-shadow: none !important;
  font-family: 'Work Sans', sans-serif !important; font-size: 14px !important; font-weight: 600 !important;
  letter-spacing: .4px; text-transform: none !important;
}
.cro-p-product button[onclick*="addToCartFn('addcart_form_div_1_"]:hover { background: #6F4C10 !important; }

.cro-p-product .product-tabs { border-bottom: 1px solid #E4D9C3 !important; padding-left: 0 !important; margin-top: 56px; gap: 28px; }
.cro-p-product .product-tabs .nav-link {
  border: none !important; border-bottom: 2px solid transparent !important; background: transparent !important;
  padding: 14px 0 !important; font-family: 'Work Sans', sans-serif; font-size: 15px; font-weight: 600; color: #7A6F60 !important;
}
.cro-p-product .product-tabs .nav-link.active { color: #2B2620 !important; border-bottom-color: #8A5F14 !important; }
.cro-p-product #productTabContent { padding: 28px 0 0 !important; }
.cro-p-product #productTabContent, .cro-p-product #productTabContent * { background-color: transparent !important; font-family: 'Work Sans', sans-serif !important; color: #2B2620; }
.cro-p-product #productTabContent table { width: auto !important; max-width: 100%; }
.cro-p-product #productTabContent td, .cro-p-product #productTabContent th { padding: 8px 28px 8px 0 !important; border-bottom: 1px solid #EDE4D2; font-size: 14.5px !important; }
.cro-p-product #productTabContent p, .cro-p-product #productTabContent li { font-size: 15.5px !important; line-height: 1.7 !important; }

.cro-p-product .divider-new { margin: 80px 0 32px !important; }
.cro-p-product .divider-new h2 { font-family: 'Fraunces', Georgia, serif !important; font-weight: 400 !important; font-size: 36px !important; }
.cro-p-product .divider-new::before, .cro-p-product .divider-new::after { border-color: #E4D9C3 !important; background: #E4D9C3 !important; }
.cro-p-product section#products .card { border: none !important; border-radius: 0 !important; box-shadow: none !important; background: transparent !important; }
.cro-p-product section#products .card > a.text-center { display: block; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; background: #FFFFFF; }
.cro-p-product section#products .card > a.text-center img { height: 100% !important; max-height: none !important; background-color: transparent !important; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.cro-p-product section#products .card:hover > a.text-center img { transform: scale(1.06); }
.cro-p-product section#products .card-body { padding: 0 2px !important; }
.cro-p-product section#products .card-title {
  margin-top: 16px !important; text-align: left !important; text-transform: none !important; font-family: 'Work Sans', sans-serif;
  font-size: 15px; font-weight: 500; color: #2B2620 !important; white-space: normal !important;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; min-height: 2.9em; line-height: 1.45;
}
.cro-p-product section#products .card-title::first-letter { text-transform: uppercase; }
.cro-p-product section#products .card-text { text-align: left !important; font-family: 'Work Sans', sans-serif; font-size: 16.5px !important; font-weight: 400 !important; }
.cro-p-product section#products .card-text b { font-weight: 600; color: #2B2620; }
.cro-p-product section#products .card-text strike { font-size: 13px; color: #7A6F60; }

@media (max-width: 767px) {
  .cro-p-product #productDetails { padding-top: 16px !important; }
  .cro-p-product h1.product-name { font-size: 26px !important; margin-top: 18px !important; }
  .cro-p-product #gal1 img { width: 60px !important; height: 60px !important; }
  .cro-p-product #productDetails .row.p-2.pl-3 { gap: 10px; }
  .cro-p-product button[onclick*="addToCartFn('addcart_form_div_1_"] { padding: 0 26px !important; }
  .cro-p-product .divider-new h2 { font-size: 28px !important; }
}
.cro-p-product #zoom_container, .cro-p-product #zoom_container *, .cro-page .prodImage { border: none !important; box-shadow: none !important; }

/* ---------- Cart page ---------- */
.cro-p-cart .main-container { margin-top: 40px !important; padding-top: 0 !important; padding-bottom: 80px; }
.cro-p-cart .main-container .card {
  background: #FFFFFF !important; border: 1px solid #E4D9C3 !important; border-radius: 20px !important; box-shadow: none !important; overflow: hidden;
}
.cro-p-cart .main-container .card-header, .cro-p-cart .main-container .card-footer { background: transparent !important; padding: 22px 24px 6px !important; }
.cro-p-cart .main-container .card-body { padding: 8px 24px 22px !important; }
.cro-p-cart .main-container h5, .cro-p-cart .main-container .card-header h4, .cro-p-cart .main-container .card-header h3 {
  font-family: 'Fraunces', Georgia, serif !important; font-weight: 400 !important; font-size: 24px !important; color: #2B2620 !important;
}
.cro-p-cart .main-container, .cro-p-cart .main-container td, .cro-p-cart .main-container span, .cro-p-cart .main-container div { font-family: 'Work Sans', sans-serif; }
.cro-p-cart .main-container img { border-radius: 12px; }
.cro-p-cart .items-count {
  width: 34px; height: 34px; border-radius: 999px !important; border: 1px solid #DDD1BA !important; background: #FFFFFF !important;
  padding: 0 !important; box-shadow: none !important; display: inline-flex; align-items: center; justify-content: center;
}
.cro-p-cart .items-count:hover { background: #F1E9D8 !important; }
.cro-p-cart .main-container input.form-control, .cro-p-cart .main-container select.form-control, .cro-p-cart .main-container textarea.form-control {
  box-sizing: border-box !important; height: 46px; border: 1px solid #DDD1BA !important; border-radius: 12px !important;
  background: #FAF6EE !important; padding: 0 14px !important; box-shadow: none !important; font-family: 'Work Sans', sans-serif; font-size: 14.5px !important; color: #2B2620;
}
.cro-p-cart .main-container textarea.form-control { height: auto; padding: 12px 14px !important; }
.cro-p-cart .main-container input.form-control:focus, .cro-p-cart .main-container select.form-control:focus { border-color: #8A5F14 !important; background: #FFFFFF !important; }
.cro-p-cart .main-container label { font-family: 'Work Sans', sans-serif; font-size: 11.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: #7A6F60; margin-bottom: 6px; }
.cro-p-cart #btnCheckout {
  height: 54px; border-radius: 999px !important; background: #8A5F14 !important; border: none !important; color: #FFFFFF !important;
  box-shadow: none !important; font-family: 'Work Sans', sans-serif !important; font-size: 15px !important; font-weight: 600 !important;
  text-transform: none !important; letter-spacing: .4px;
}
.cro-p-cart #btnCheckout:hover { background: #6F4C10 !important; }
.cro-p-cart .main-container .card span, .cro-p-cart .main-container .card b, .cro-p-cart .main-container .card strong { white-space: nowrap; }

/* ---------- Content pages: title banner, about, blog, contact ---------- */
.cro-page section.bauen-project.bg-img { background: #F1E9D8 !important; padding: 56px 0 40px !important; }
.cro-page section.bauen-project .animate-box { margin: 0 !important; }
.cro-page section.bauen-project h2.section-title {
  font-family: 'Fraunces', Georgia, serif !important; font-weight: 400 !important; font-size: clamp(34px, 3.34vw, 48px) !important;
  letter-spacing: -0.5px !important; color: #2B2620 !important; margin-bottom: 10px !important; text-transform: none !important;
}
.cro-page section.bauen-project h2.section-title span { margin: 0 !important; }
.cro-page section.bauen-project p, .cro-page section.bauen-project p a { font-family: 'Work Sans', sans-serif; font-size: 13px; color: #7A6F60 !important; }
.cro-page .section-padding2 { padding: 40px 0 90px !important; }
.cro-page .section-padding2 img { border-radius: 20px; }
.cro-page .section-padding2 h5 { font-family: 'Fraunces', Georgia, serif !important; font-weight: 400 !important; font-size: 30px !important; }
.cro-page .section-padding2 p, .cro-page .font-inner-p-15 p, .cro-page .font-inner-p-15 { font-family: 'Work Sans', sans-serif !important; font-size: 16px !important; line-height: 1.75 !important; color: #4A4438 !important; }
.cro-p-blog h1, .cro-p-blog h2, .cro-p-blog h3, .cro-p-blog h4, .cro-p-blog h5 { font-weight: 400 !important; }
.cro-p-blog img { border-radius: 16px; }
.cro-p-blog p { font-family: 'Work Sans', sans-serif; font-size: 15px; line-height: 1.7; color: #4A4438; }

.cro-p-contact section.gray-bg { background: #FAF6EE !important; padding: 64px 0 96px !important; }
.cro-p-contact .section-title h2 {
  border-left: none !important; padding-left: 0 !important; font-family: 'Fraunces', Georgia, serif !important;
  font-weight: 400 !important; font-size: clamp(34px, 3.34vw, 48px) !important; color: #2B2620 !important;
}
.cro-p-contact .section-title h2::before {
  content: 'Contact'; display: block; margin-bottom: 12px; font-family: 'Work Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: #8A5F14;
}
.cro-p-contact .section-title p { font-family: 'Work Sans', sans-serif; font-size: 17px; color: #6B6255; }
.cro-p-contact h4, .cro-p-contact h5, .cro-p-contact h6 { font-family: 'Fraunces', Georgia, serif !important; font-weight: 400 !important; color: #2B2620 !important; }
.cro-p-contact .contact_us_form {
  background: #FFFFFF; border: 1px solid #E4D9C3; border-radius: 22px; padding: 30px 30px 26px;
}
.cro-p-contact .contact_us_form .row { padding-left: 0 !important; }
.cro-p-contact .contact_us_form .form-control {
  box-sizing: border-box !important; height: 50px; border: 1px solid #DDD1BA !important; border-radius: 12px !important;
  background: #FAF6EE !important; padding: 0 16px !important; box-shadow: none !important; font-family: 'Work Sans', sans-serif; font-size: 15px !important;
}
.cro-p-contact .contact_us_form textarea.form-control { height: 130px; padding: 14px 16px !important; }
.cro-p-contact .contact_us_form .form-control:focus { border-color: #8A5F14 !important; background: #FFFFFF !important; }
.cro-p-contact #send_message {
  display: inline-flex !important; align-items: center; justify-content: center; height: 52px; padding: 0 34px !important;
  border-radius: 999px !important; background: #8A5F14 !important; border: none !important; color: #FFFFFF !important; cursor: pointer;
  font-family: 'Work Sans', sans-serif !important; font-size: 14px !important; font-weight: 600 !important; box-shadow: none !important;
}
.cro-p-contact #send_message::before, .cro-p-contact #send_message::after { display: none !important; }
.cro-p-contact #send_message span { color: #FFFFFF !important; }
.cro-p-contact #send_message .arrow { display: none; }
.cro-p-contact #send_message:hover { background: #6F4C10 !important; }
.cro-page section.bauen-project.bg-img::before, .cro-page section.bauen-project.bg-img::after { display: none !important; }
.cro-page section.bauen-project.bg-img { height: auto !important; min-height: 0 !important; background-image: none !important; }
.cro-page section.bauen-project .animate-box.mt-5 { margin-top: 0 !important; }
.cro-page section.bauen-project .animate-box { padding-top: 0 !important; padding-bottom: 0 !important; }
.cro-page section.bauen-project .animate-box > div { position: static !important; transform: none !important; }
/* mobile product gallery (bzoom): absolutely positioned 4-up thumbs overflowed with 5+ images */
.cro-p-product ul:has(> li[id^="zzoom-thumb"]) { display: flex !important; gap: 8px; overflow-x: auto; height: auto !important; scrollbar-width: none; padding-bottom: 2px !important; }
.cro-p-product li[id^="zzoom-thumb"] {
  position: static !important; flex: 0 0 64px; width: 64px !important; height: 64px; border: 1px solid #E4D9C3 !important;
  border-radius: 12px !important; overflow: hidden; list-style: none;
}
.cro-p-product li[id^="zzoom-thumb"] img { width: 100% !important; height: 100% !important; object-fit: cover; }

/* ---------- Journal post ---------- */
.cro-post { padding: 56px 0 110px; }
.cro-post-inner { max-width: 880px !important; }
a.cro-post-back { display: inline-block; margin-bottom: 26px; font-family: 'Work Sans', sans-serif; font-size: 14px; font-weight: 600; color: #6B6255 !important; text-decoration: none !important; }
a.cro-post-back:hover { color: #8A5F14 !important; }
.cro-post-title { margin-top: 12px !important; }
.cro-post-hero { margin-top: 34px; aspect-ratio: 16 / 9; border-radius: 22px; overflow: hidden; background: #EDE4D2; }
.cro-post-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cro-post-body { margin-top: 38px; font-family: 'Work Sans', sans-serif; font-size: 17px; line-height: 1.8; color: #4A4438; }
.cro-post-body p { margin: 0 0 18px; font-size: 17px !important; line-height: 1.8 !important; color: #4A4438 !important; }
.cro-post-body h2, .cro-post-body h3, .cro-post-body h4 { font-family: 'Fraunces', Georgia, serif !important; font-weight: 400 !important; color: #2B2620 !important; margin: 36px 0 14px; }
.cro-post-body img { max-width: 100%; height: auto; border-radius: 16px; }
.cro-post-body * { max-width: 100%; }
.cro-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 56px; padding-top: 32px; border-top: 1px solid #E4D9C3; }
a.cro-post-nav-item { display: block; padding: 20px 22px; border: 1px solid #E4D9C3; border-radius: 18px; background: #FFFFFF; text-decoration: none !important; transition: border-color .2s; }
a.cro-post-nav-item:hover { border-color: #8A5F14; }
a.cro-post-nav-item--next { text-align: right; }
.cro-post-nav-label { display: block; font-family: 'Work Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: #8A5F14; }
.cro-post-nav-title { display: block; margin-top: 6px; font-family: 'Fraunces', Georgia, serif; font-size: 20px; color: #2B2620; }
@media (max-width: 767px) {
  .cro-post { padding: 32px 0 64px; }
  .cro-post-hero { border-radius: 16px; margin-top: 24px; }
  .cro-post-body, .cro-post-body p { font-size: 16px !important; }
  .cro-post-nav { grid-template-columns: 1fr; }
}

/* mobile product page: legacy duplicate title above the gallery; overlay icons */
.cro-p-product .center-on-small-only.product-name { display: none !important; }
.cro-p-product #productDetails i.fa-2x.fa-heart-o, .cro-p-product #productDetails i.fa-2x.fa-share-alt {
  width: 44px !important; height: 44px !important; border-radius: 999px !important; background: rgba(255,255,255,.95) !important;
  color: #2B2620 !important; font-size: 18px !important; display: inline-flex !important; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

/* ---------- Policy / static store pages ---------- */
.cro-p-page .cro-list-head, .cro-p-page .cro-list-body { display: none; }
.cro-p-page main .container, .cro-p-page > .container, .cro-p-page #mainContainer > .container { max-width: 880px !important; padding-top: 48px !important; padding-bottom: 90px; }
.cro-p-page .container, .cro-p-page .container p, .cro-p-page .container li, .cro-p-page .container span, .cro-p-page .container td {
  font-family: 'Work Sans', sans-serif !important; font-size: 15.5px !important; line-height: 1.75 !important; color: #4A4438 !important;
}
.cro-p-page .container h1, .cro-p-page .container h2, .cro-p-page .container h3, .cro-p-page .container h4, .cro-p-page .container h5,
.cro-p-page .container strong:only-child, .cro-p-page .container b:only-child {
  font-family: 'Fraunces', Georgia, serif !important; font-weight: 400 !important; color: #2B2620 !important;
}
.cro-p-page .container h1, .cro-p-page .container h2 { font-size: 36px !important; line-height: 1.15 !important; margin: 0 0 22px !important; }
.cro-p-page .container h3, .cro-p-page .container h4, .cro-p-page .container h5 { font-size: 22px !important; margin: 32px 0 10px !important; }
.cro-p-page .container a { color: #8A5F14 !important; }
.cro-p-product #productDetails i.fa-2x.fa-heart-o::before, .cro-p-product #productDetails i.fa-2x.fa-share-alt::before { color: #2B2620 !important; font-size: 18px; }

/* ---------- Payment review (store/cart/checkout/pay) ---------- */
.cro-p-cart .card:has(#razorpay_pay_form) {
  background: #FFFFFF !important; border: 1px solid #E4D9C3 !important; border-radius: 22px !important; box-shadow: 0 24px 60px rgba(43,38,32,.08) !important; overflow: hidden;
}
.cro-p-cart .card:has(#razorpay_pay_form) .card-header { background: transparent !important; border-bottom: 1px solid #EDE4D2 !important; padding: 26px 28px 18px !important; }
.cro-p-cart .card:has(#razorpay_pay_form) .card-header .h4 { font-family: 'Fraunces', Georgia, serif !important; font-weight: 400 !important; font-size: 26px !important; color: #2B2620; }
.cro-p-cart .card:has(#razorpay_pay_form) .card-body { padding: 20px 28px 6px !important; }
.cro-p-cart #razorpay_pay_form .small { font-family: 'Work Sans', sans-serif; font-size: 11.5px !important; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: #7A6F60; }
.cro-p-cart #razorpay_pay_form input[type="text"] {
  box-sizing: border-box !important; width: 100%; height: 46px; border: 1px solid #DDD1BA !important; border-radius: 12px !important;
  background: #FAF6EE !important; padding: 0 14px !important; font-family: 'Work Sans', sans-serif; font-size: 15px; color: #2B2620; box-shadow: none !important;
}
.cro-p-cart #razorpay_pay_form .h5 { font-family: 'Fraunces', Georgia, serif; font-size: 32px !important; color: #2B2620; margin-top: 6px !important; }
.cro-p-cart .card:has(#razorpay_pay_form) .card-footer { background: transparent !important; border-top: none !important; padding: 8px 28px 26px !important; }
.cro-p-cart .card:has(#razorpay_pay_form) .card-footer .btn {
  height: 54px; border-radius: 999px !important; background: #8A5F14 !important; color: #FFFFFF !important; border: none !important;
  box-shadow: none !important; font-family: 'Work Sans', sans-serif !important; font-size: 15px !important; font-weight: 600 !important;
  text-transform: none !important; letter-spacing: .3px;
}
.cro-p-cart .card:has(#razorpay_pay_form) .card-footer .btn:hover { background: #6F4C10 !important; }
