/* =====================================================================
   CUSTOM CSS  —  Celebrino (celebrino.gr) · Flatsome
   ---------------------------------------------------------------------
   Paste into:  WordPress → Flatsome → Customize → Custom CSS
   Style:       Glassmorphism + Material Design
   Palette:     derived from the Celebrino logo (cream · blush · sage · mocha)
   Fonts:       Literata (headings) + Manrope (body) — both support Greek.
                Select them in Customize → Style → Typography so Flatsome loads them.

   Breakpoints:
       mobile : @media (max-width: 549px)
       tablet : @media (min-width: 550px) and (max-width: 849px)
       desktop: @media (min-width: 850px)
   ===================================================================== */


/* ---------------------------------------------------------------------
   1. GLOBAL  (tokens, background, typography, buttons, header, footer)
   --------------------------------------------------------------------- */

:root {
  --cb-cream: #FBF8F3;
  --cb-ivory: #F4ECE3;
  --cb-peach-soft: #FBE9DC;
  --cb-blush: #E9B7AD;
  --cb-blush-soft: #F7E1DB;
  --cb-rose: #B86F63;          /* accent text / sale — 3.6:1 on cream, large text only */
  --cb-peach: #F6DCC8;
  --cb-sage: #B7B4A3;
  --cb-sage-soft: #E6E5DC;
  --cb-mocha: #7A5A4A;         /* primary (buttons, links) */
  --cb-mocha-dark: #4E372D;    /* headings */
  --cb-text: #5B4639;
  --cb-muted: #7E6A60;
  --cb-gold: #D8B37A;

  --cb-glass: rgba(255, 255, 255, .55);
  --cb-glass-strong: rgba(255, 255, 255, .74);
  --cb-glass-border: rgba(255, 255, 255, .8);
  --cb-blur: blur(18px) saturate(160%);

  --cb-elev-1: 0 1px 2px rgba(78, 55, 45, .06), 0 2px 6px rgba(78, 55, 45, .05);
  --cb-elev-2: 0 2px 6px rgba(78, 55, 45, .05), 0 12px 32px rgba(78, 55, 45, .09);
  --cb-elev-3: 0 6px 14px rgba(78, 55, 45, .08), 0 24px 52px rgba(78, 55, 45, .15);

  --cb-r-sm: 12px;
  --cb-r-md: 20px;
  --cb-r-lg: 28px;
  --cb-r-pill: 999px;
  --cb-ease: cubic-bezier(.2, 0, 0, 1);

  /* Flatsome 3.18+ colour variables (also set these in Customize → Style → Colors) */
  --fs-color-primary: #7A5A4A;
  --fs-color-secondary: #B86F63;
  --fs-color-success: #7F8C63;
  --fs-color-alert: #B0564A;
}

/* Soft pastel light behind every glass surface */
body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--cb-text);
  background-color: var(--cb-cream);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(42vw 42vw at 6% 10%, rgba(233, 183, 173, .42), transparent 62%),
    radial-gradient(36vw 36vw at 94% 6%, rgba(246, 220, 200, .65), transparent 62%),
    radial-gradient(46vw 46vw at 88% 72%, rgba(183, 180, 163, .32), transparent 62%),
    radial-gradient(40vw 40vw at 8% 88%, rgba(246, 220, 200, .5), transparent 62%),
    var(--cb-cream);
}
#wrapper, #main { background: transparent !important; }

h1, h2, h3, h4, h5, .cb-serif {
  font-family: "Literata", Georgia, "Times New Roman", serif;
  color: var(--cb-mocha-dark);
  font-weight: 600;
  letter-spacing: -.015em;
}
p { line-height: 1.65; }
a { color: var(--cb-mocha); }
a:hover { color: var(--cb-rose); }

/* Wider site width (also set Customize → Style → Layout → Container width = 1240) */
.container, .container-width, .row { max-width: 1240px; }
.row.row-small { max-width: 1225px; }
.row.row-large { max-width: 1270px; }

/* --- Buttons (Material 3: pill, tonal / filled, elevation on hover) --- */
.button {
  border-radius: var(--cb-r-pill);
  text-transform: none;
  letter-spacing: .01em;
  font-weight: 700;
  font-family: "Manrope", system-ui, sans-serif;
  transition: background-color .2s var(--cb-ease), box-shadow .2s var(--cb-ease), transform .2s var(--cb-ease), color .2s;
}
.button.is-large { font-size: 1rem; padding: 0 1.8em; line-height: 3.2em; min-height: 3.2em; }
.button .cb-ico { width: 18px; height: 18px; margin: -2px 0 0; }
.button.primary:not(.is-outline) { background-color: var(--cb-mocha); color: #fff; box-shadow: var(--cb-elev-1); }
.button.primary:not(.is-outline):hover { background-color: #684A3C; box-shadow: var(--cb-elev-2); transform: translateY(-1px); }
.button.cb-btn-glass {
  background: var(--cb-glass-strong);
  -webkit-backdrop-filter: var(--cb-blur);
  backdrop-filter: var(--cb-blur);
  color: var(--cb-mocha-dark);
  border: 1px solid var(--cb-glass-border);
  box-shadow: var(--cb-elev-1);
}
.button.cb-btn-glass:hover { background: #fff; color: var(--cb-mocha-dark); box-shadow: var(--cb-elev-2); transform: translateY(-1px); }
.button:focus-visible, a:focus-visible { outline: 3px solid rgba(184, 111, 99, .45); outline-offset: 2px; }

/* --- Reusable glass surface + chips + icons --- */
.cb-glass {
  background: var(--cb-glass);
  -webkit-backdrop-filter: var(--cb-blur);
  backdrop-filter: var(--cb-blur);
  border: 1px solid var(--cb-glass-border);
  box-shadow: var(--cb-elev-2);
  border-radius: var(--cb-r-lg);
}
.cb-ico { width: 22px; height: 22px; display: inline-block; vertical-align: middle; flex: none; }
.cb-ico--sm { width: 14px; height: 14px; }
.cb-chip {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  height: 32px;
  padding: 0 14px;
  border-radius: var(--cb-r-pill);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: var(--cb-mocha-dark);
  background: var(--cb-glass-strong);
  border: 1px solid var(--cb-glass-border);
  box-shadow: var(--cb-elev-1);
  transition: background-color .2s var(--cb-ease), box-shadow .2s var(--cb-ease);
}
a.cb-chip:hover { background: #fff; color: var(--cb-mocha-dark); box-shadow: var(--cb-elev-2); }
.cb-chip .cb-ico { width: 16px; height: 16px; color: var(--cb-rose); }
.cb-chip--sale { background: var(--cb-rose); color: #fff; border-color: transparent; }
.cb-chip--new  { background: var(--cb-mocha); color: #fff; border-color: transparent; }
.cb-chip--best { background: var(--cb-gold); color: var(--cb-mocha-dark); border-color: transparent; }

/* --- Section headings (row: title left, link right) --- */
.cb-head { margin-bottom: 8px; }
.cb-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cb-rose);
  margin-bottom: 10px;
}
.cb-head h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; margin: 0; }
.cb-head p { margin: 10px 0 0; color: var(--cb-muted); max-width: 36em; }
.cb-link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--cb-mocha); transition: gap .2s var(--cb-ease); }
.cb-link-arrow:hover { gap: 10px; color: var(--cb-rose); }
.cb-link-arrow .cb-ico { width: 18px; height: 18px; }

/* --- Top bar --- */
.header-top {
  background-color: var(--cb-mocha-dark) !important;
  color: #F4ECE3;
  min-height: 38px;
  font-size: 13px;
  font-weight: 600;
}
.header-top .cb-topbar { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 8px 0; }
.header-top .cb-topbar .cb-ico { width: 18px; height: 18px; color: var(--cb-blush); }
.header-top .cb-topbar strong { color: #fff; }
.header-top .cb-dot { opacity: .45; }

/* --- Header (glass bar) --- */
.header-main {
  height: 92px;
  background: rgba(251, 248, 243, .62) !important;
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  border-bottom: 1px solid rgba(255, 255, 255, .75);
  box-shadow: 0 1px 0 rgba(122, 90, 74, .06), 0 10px 30px rgba(78, 55, 45, .05);
}
.header-main .header-inner { max-width: 1320px; }
#logo { margin-right: 20px; }
#logo img { max-height: 78px; width: auto; display: block; }
.header-nav-main { flex-wrap: nowrap; }
.header-nav-main > li { margin: 0 1px; white-space: nowrap; }
.header-nav-main > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 9px 12px;
  border-radius: var(--cb-r-pill);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cb-mocha-dark);
  transition: background-color .2s var(--cb-ease), color .2s;
}
.header-nav-main > li > a:hover { background: rgba(122, 90, 74, .08); color: var(--cb-mocha-dark); }
.header-nav-main > li.active > a { background: var(--cb-blush-soft); }
.header-nav-main > li.cb-nav-sale > a { color: var(--cb-rose); }
.header-nav-main .cb-ico--sm { opacity: .6; transition: transform .2s var(--cb-ease); }
.header-nav-main > li.has-dropdown:hover .cb-ico--sm { transform: rotate(180deg); }

/* Dropdowns — glass sheet */
.header-nav-main .has-dropdown { position: relative; }
.header-nav-main .nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0 !important;
  display: block;
  max-height: none;             /* Flatsome sets max-height:0 */
  min-width: 250px;
  margin: 10px 0 0;
  padding: 8px;
  list-style: none;
  border-radius: var(--cb-r-md);
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: var(--cb-blur);
  backdrop-filter: var(--cb-blur);
  border: 1px solid var(--cb-glass-border);
  box-shadow: var(--cb-elev-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s var(--cb-ease), transform .18s var(--cb-ease), visibility .18s;
  z-index: 40;
}
.header-nav-main .nav-dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.header-nav-main .has-dropdown:hover > .nav-dropdown,
.header-nav-main .has-dropdown:focus-within > .nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.header-nav-main .nav-dropdown li { margin: 0; }
.header-nav-main .nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--cb-r-sm);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--cb-text);
}
.header-nav-main .nav-dropdown a:hover { background: var(--cb-blush-soft); color: var(--cb-mocha-dark); }

/* Header icon buttons (Material icon button + state layer) */
.cb-header-icons { gap: 4px; }
.cb-header-icons > li { margin: 0; }
.cb-icon-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--cb-mocha-dark);
  transition: background-color .2s var(--cb-ease);
}
.cb-icon-btn:hover { background: rgba(122, 90, 74, .09); color: var(--cb-mocha-dark); }
.cb-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px 0 14px;
  margin-left: 6px;
  border-radius: var(--cb-r-pill);
  background: var(--cb-mocha);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--cb-elev-1);
  transition: box-shadow .2s var(--cb-ease), background-color .2s;
}
.cb-cart-btn:hover { background: #684A3C; color: #fff; box-shadow: var(--cb-elev-2); }
.cb-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: var(--cb-r-pill);
  background: var(--cb-blush);
  color: var(--cb-mocha-dark);
  font-size: 11.5px;
  font-weight: 800;
}
.cb-icon-btn .cb-cart-count { position: absolute; top: 3px; right: 1px; }

/* Off-canvas mobile menu (Flatsome .off-canvas) — glass sheet */
.off-canvas .mfp-content {
  background: rgba(251, 248, 243, .88) !important;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
.off-canvas .nav-vertical li > a { font-weight: 700; color: var(--cb-mocha-dark); text-transform: none; }

/* --- Footer --- */
.cb-footer {
  position: relative;
  padding: 64px 0 20px;
  background: rgba(255, 255, 255, .45);
  -webkit-backdrop-filter: var(--cb-blur);
  backdrop-filter: var(--cb-blur);
  border-top: 1px solid var(--cb-glass-border);
}
.cb-footer .cb-footer-logo { max-width: 150px; margin-bottom: 14px; }
.cb-footer p { font-size: 14.5px; color: var(--cb-text); max-width: 26em; }
.cb-footer h4 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cb-mocha-dark);
  margin: 6px 0 18px;
}
.cb-footer-links { list-style: none; margin: 0; padding: 0; }
.cb-footer-links li { margin: 0 0 10px !important; list-style: none; }
.cb-footer-links a { color: var(--cb-text); font-size: 14.5px; }
.cb-footer-links a:hover { color: var(--cb-rose); }
.cb-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.cb-contact .cb-ico { width: 18px; height: 18px; margin-top: 2px; color: var(--cb-rose); }
.cb-social { display: flex; gap: 8px; margin-top: 18px; }
.cb-social a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cb-glass-strong);
  border: 1px solid var(--cb-glass-border);
  color: var(--cb-mocha-dark);
  box-shadow: var(--cb-elev-1);
  transition: transform .2s var(--cb-ease), box-shadow .2s var(--cb-ease), color .2s;
}
.cb-social a:hover { transform: translateY(-2px); box-shadow: var(--cb-elev-2); color: var(--cb-rose); }
.cb-social .cb-ico { width: 20px; height: 20px; }

.absolute-footer.cb-absolute {
  background: var(--cb-mocha-dark);
  color: rgba(244, 236, 227, .82);
  padding: 16px 0;
  font-size: 13px;
}
.cb-absolute .cb-absolute-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cb-absolute a { color: rgba(244, 236, 227, .82); }
.cb-absolute a:hover { color: #fff; }
.cb-pay { display: flex; gap: 6px; flex-wrap: wrap; }
.cb-pay span {
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 12px;
  font-weight: 700;
  color: #F4ECE3;
}


/* ---------------------------------------------------------------------
   2. REUSABLE HELPERS
   --------------------------------------------------------------------- */

@keyframes cb-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes cb-float-sm { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) {
  .cb-home-hero .cb-hero-balloons, .cb-float-card, .cb-sticker { animation: none !important; }
}


/* ---------------------------------------------------------------------
   3. PAGE / SECTION STYLES  (front page)
   --------------------------------------------------------------------- */

/* ----- [ cb-home-hero ] --------------------------------------------- */
.cb-home-hero { padding: 44px 0 56px; }
.cb-home-hero .cb-hero-copy > .col-inner { padding: 52px 48px; }
.cb-home-hero h1 {
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 22px 0 20px;
}
.cb-home-hero h1 em { font-style: italic; font-weight: 500; color: var(--cb-rose); }
.cb-home-hero .cb-lead { font-size: 18px; line-height: 1.65; color: var(--cb-text); max-width: 32em; margin-bottom: 30px; }
.cb-home-hero .cb-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.cb-home-hero .cb-hero-ctas .button { margin: 0; }
.cb-home-hero .cb-quick { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(122, 90, 74, .12); }
.cb-home-hero .cb-quick-label { font-size: 13px; font-weight: 700; color: var(--cb-muted); margin-right: 4px; }

.cb-home-hero .cb-hero-art { position: relative; max-width: 560px; margin: 0 auto; }
.cb-home-hero .cb-hero-art::before {
  content: "";
  position: absolute;
  inset: 6% 4% 8% 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 68%);
  z-index: 0;
}
.cb-home-hero .cb-hero-balloons {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  animation: cb-float 7s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(122, 90, 74, .16));
}
.cb-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  border-radius: var(--cb-r-md);
  background: var(--cb-glass-strong);
  -webkit-backdrop-filter: var(--cb-blur);
  backdrop-filter: var(--cb-blur);
  border: 1px solid var(--cb-glass-border);
  box-shadow: var(--cb-elev-3);
  animation: cb-float-sm 6s ease-in-out infinite;
}
.cb-float-card strong { display: block; font-size: 14px; color: var(--cb-mocha-dark); line-height: 1.25; }
.cb-float-card small { display: block; font-size: 12.5px; color: var(--cb-muted); }
.cb-float-card small b { color: var(--cb-rose); }
.cb-float-thumb { width: 52px; height: 52px; border-radius: 14px; background: var(--cb-blush-soft); display: grid; place-items: center; }
.cb-float-thumb img { width: 42px; height: 42px; }
.cb-float-icon { width: 44px; height: 44px; border-radius: 14px; background: var(--cb-sage-soft); color: var(--cb-mocha-dark); display: grid; place-items: center; }
.cb-float-card--product { top: 18%; left: -4%; }
.cb-float-card--ship { bottom: 12%; right: -2%; animation-delay: -3s; }
.cb-sticker {
  position: absolute;
  z-index: 2;
  top: 4%;
  right: 6%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--cb-rose);
  color: #fff;
  font-family: "Literata", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--cb-elev-3);
  transform: rotate(-12deg);
}
.cb-sticker small { display: block; margin-top: 4px; font-family: "Manrope", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .02em; }

/* ----- [ cb-trust ] ------------------------------------------------- */
.cb-trust { padding: 0 0 20px; }
.cb-trust .cb-trust-bar > .col-inner { padding: 22px 12px 0; }
.cb-trust .icon-box { display: flex; align-items: center; gap: 14px; }
.cb-trust .icon-box-img { margin: 0 !important; }
.cb-trust .icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--cb-blush-soft);
  color: var(--cb-rose);
}
.cb-trust .col:nth-child(2) .icon { background: var(--cb-sage-soft); color: #6F6C58; }
.cb-trust .col:nth-child(3) .icon { background: var(--cb-peach-soft); color: #A5694B; }
.cb-trust h4 { font-family: "Manrope", system-ui, sans-serif; font-size: 15px; font-weight: 800; letter-spacing: 0; margin: 0 0 2px; }
.cb-trust .icon-box-text p { font-size: 13.5px; color: var(--cb-muted); margin: 0; line-height: 1.45; }

/* ----- [ cb-cats ] -------------------------------------------------- */
.cb-cats { padding: 56px 0 20px; }
.cb-cats .box-category {
  height: 100%;
  padding: 10px 10px 16px;
  border-radius: var(--cb-r-md);
  background: var(--cb-glass);
  -webkit-backdrop-filter: var(--cb-blur);
  backdrop-filter: var(--cb-blur);
  border: 1px solid var(--cb-glass-border);
  box-shadow: var(--cb-elev-1);
  transition: transform .25s var(--cb-ease), box-shadow .25s var(--cb-ease), background-color .25s;
}
.cb-cats a:hover .box-category { transform: translateY(-4px); box-shadow: var(--cb-elev-3); background: var(--cb-glass-strong); }
.cb-cats .box-image { border-radius: 14px; background: var(--cb-blush-soft); }
.cb-cats .product-category:nth-child(6n+2) .box-image { background: var(--cb-sage-soft); }
.cb-cats .product-category:nth-child(6n+3) .box-image { background: var(--cb-peach-soft); }
.cb-cats .product-category:nth-child(6n+4) .box-image { background: var(--cb-ivory); }
.cb-cats .product-category:nth-child(6n+5) .box-image { background: var(--cb-sage-soft); }
.cb-cats .product-category:nth-child(6n+6) .box-image { background: var(--cb-peach-soft); }
.cb-cats .box-image img { transition: transform .4s var(--cb-ease); }
.cb-cats a:hover .box-image img { transform: scale(1.07) rotate(-2deg); }
.cb-cats .box-text { padding: 14px 4px 0; }
.cb-cats .header-title {
  font-family: "Literata", Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cb-mocha-dark);
  margin: 0 0 2px;
}
.cb-cats .count { font-size: 12.5px; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--cb-muted); margin: 0; opacity: 1; }

/* ----- [ cb-products ] ---------------------------------------------- */
.cb-products { padding: 56px 0 32px; }
.cb-products .cb-tabs-wrap { display: flex; justify-content: flex-end; }
.cb-tabs.nav {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 4px;
  padding: 5px;
  margin: 0;
  border-radius: var(--cb-r-pill);
  background: var(--cb-glass);
  -webkit-backdrop-filter: var(--cb-blur);
  backdrop-filter: var(--cb-blur);
  border: 1px solid var(--cb-glass-border);
  box-shadow: var(--cb-elev-1);
}
.cb-tabs.nav > li { margin: 0; }
.cb-tabs.nav > li > a {
  display: block;
  padding: 10px 18px;
  border-radius: var(--cb-r-pill);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.2;
  color: var(--cb-mocha);
  background: transparent;
  transition: background-color .2s var(--cb-ease), color .2s;
}
.cb-tabs.nav > li > a:hover { background: rgba(122, 90, 74, .08); color: var(--cb-mocha-dark); }
.cb-tabs.nav > li.active > a { background: var(--cb-mocha); color: #fff; box-shadow: var(--cb-elev-1); }
.cb-products .tab-panels { padding-top: 28px; }

.cb-products .product-small.col .col-inner { height: 100%; }
.cb-products .product-small.box {
  height: 100%;
  padding: 10px;
  border-radius: var(--cb-r-md);
  background: var(--cb-glass);
  -webkit-backdrop-filter: var(--cb-blur);
  backdrop-filter: var(--cb-blur);
  border: 1px solid var(--cb-glass-border);
  box-shadow: var(--cb-elev-1);
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--cb-ease), box-shadow .25s var(--cb-ease), background-color .25s;
}
.cb-products .product-small.box:hover { transform: translateY(-4px); box-shadow: var(--cb-elev-3); background: var(--cb-glass-strong); }
.cb-products .box-image { width: 100%; border-radius: 14px; background: var(--cb-blush-soft); }
.cb-products .products > .col:nth-child(4n+2) .box-image { background: var(--cb-peach-soft); }
.cb-products .products > .col:nth-child(4n+3) .box-image { background: var(--cb-sage-soft); }
.cb-products .products > .col:nth-child(4n+4) .box-image { background: var(--cb-ivory); }
.cb-products .box-image img { transition: transform .4s var(--cb-ease); }
.cb-products .product-small.box:hover .box-image img { transform: scale(1.05); }
.cb-products .badge-container { margin: 0; padding: 20px; display: flex; gap: 6px; }
.cb-products .badge-container .cb-chip { height: 26px; padding: 0 10px; font-size: 12px; box-shadow: none; }
.cb-products .image-tools { padding: 10px; }
.cb-wish {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cb-glass-strong);
  -webkit-backdrop-filter: var(--cb-blur);
  backdrop-filter: var(--cb-blur);
  border: 1px solid var(--cb-glass-border);
  color: var(--cb-mocha);
  transition: color .2s, transform .2s var(--cb-ease);
}
.cb-wish:hover { color: var(--cb-rose); transform: scale(1.08); }
.cb-wish .cb-ico { width: 18px; height: 18px; }
.cb-products .box-text-products { padding: 14px 6px 4px; flex: 1; display: flex; flex-direction: column; }
.cb-products .product-cat { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--cb-muted); margin: 0 0 4px; opacity: 1; }
.cb-products .product-title { margin: 0 0 10px; }
.cb-products .product-title a { font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--cb-mocha-dark); }
.cb-products .product-title a:hover { color: var(--cb-rose); }
.cb-products .price-wrapper { margin-top: auto; }
.cb-products .price { display: flex; align-items: baseline; gap: 8px; }
.cb-products .price .amount { font-size: 18px; font-weight: 800; color: var(--cb-mocha-dark); }
.cb-products .price del { opacity: 1; }
.cb-products .price del .amount { font-size: 14px; font-weight: 600; color: var(--cb-muted); }
.cb-products .price ins { text-decoration: none; }
.cb-products .price ins .amount { color: var(--cb-rose); }
.cb-products .add-to-cart-button .button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 12px 0 0;
  line-height: 2.9em;
  min-height: 2.9em;
  font-size: 14px;
  background: var(--cb-blush-soft) !important;
  color: var(--cb-mocha-dark) !important;
  border: 0;
  box-shadow: none;
}
.cb-products .add-to-cart-button .button:hover { background: var(--cb-mocha) !important; color: #fff !important; box-shadow: var(--cb-elev-2); }

/* ----- [ cb-themes ] ------------------------------------------------ */
.cb-themes { padding: 56px 0; }
.cb-theme-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 270px);
  gap: 20px;
}
.cb-theme-grid .cb-theme:first-child { grid-column: span 2; grid-row: span 2; }
.cb-themes .banner.cb-theme {
  display: block;
  height: 100%;
  min-height: 0;
  border-radius: var(--cb-r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #F8DED7, #F0C4B9);
  color: var(--cb-mocha-dark);
  box-shadow: var(--cb-elev-1);
  border: 1px solid rgba(255, 255, 255, .6);
  transition: box-shadow .3s var(--cb-ease), transform .3s var(--cb-ease);
}
.cb-themes .banner.cb-theme:hover { box-shadow: var(--cb-elev-3); transform: translateY(-3px); }
.cb-themes .banner-bg { background: radial-gradient(60% 70% at 72% 30%, rgba(255, 255, 255, .7), rgba(255, 255, 255, 0) 70%); }
.cb-theme--baptism    { background: linear-gradient(135deg, #FCF6F0, #EEDFCF) !important; }
.cb-theme--babyshower { background: linear-gradient(135deg, #ECEBE3, #D5D3C5) !important; }
.cb-theme--wedding    { background: linear-gradient(135deg, #FCEEE3, #F1D3BC) !important; }
.cb-theme--carnival   { background: linear-gradient(135deg, #EEDDD3, #D8B8A6) !important; }
.cb-theme-art {
  position: absolute;
  top: 2%;
  right: -4%;
  width: 58%;
  max-width: 260px;
  transition: transform .5s var(--cb-ease);
}
.cb-theme:first-child .cb-theme-art { top: 6%; right: 2%; width: 62%; max-width: 380px; }
.cb-theme:hover .cb-theme-art { transform: translateY(-8px) rotate(-3deg) scale(1.04); }
.cb-theme-box {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px 18px;
  border-radius: var(--cb-r-md);
  text-align: left;
  background: rgba(255, 255, 255, .55);
  -webkit-backdrop-filter: var(--cb-blur);
  backdrop-filter: var(--cb-blur);
  border: 1px solid var(--cb-glass-border);
  box-shadow: var(--cb-elev-1);
}
.cb-theme-box h3 { font-size: 22px; line-height: 1.15; margin: 0; }
.cb-theme-box p { font-size: 13.5px; color: var(--cb-text); margin: 2px 0 0; line-height: 1.45; }
.cb-theme-box .cb-link-arrow { font-size: 14px; margin-top: 8px; }
.cb-theme:first-child .cb-theme-box { left: 22px; bottom: 22px; right: auto; max-width: 380px; padding: 22px 26px; }
.cb-theme:first-child .cb-theme-box h3 { font-size: 34px; }
.cb-theme:first-child .cb-theme-box p { font-size: 15px; }

/* ----- [ cb-newsletter ] -------------------------------------------- */
.cb-newsletter { padding: 24px 0 80px; }
.cb-news-card > .col-inner {
  position: relative;
  overflow: hidden;
  padding: 56px 60px;
  border-radius: 36px;
  background: rgba(255, 255, 255, .5);
  -webkit-backdrop-filter: var(--cb-blur);
  backdrop-filter: var(--cb-blur);
  border: 1px solid var(--cb-glass-border);
  box-shadow: var(--cb-elev-2);
}
.cb-news-card > .col-inner::before,
.cb-news-card > .col-inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(10px);
}
.cb-news-card > .col-inner::before { width: 320px; height: 320px; left: -80px; bottom: -160px; background: rgba(233, 183, 173, .55); }
.cb-news-card > .col-inner::after  { width: 280px; height: 280px; right: -60px; top: -140px; background: rgba(183, 180, 163, .45); }
.cb-news-card h2 { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.12; margin: 0 0 12px; }
.cb-news-card p { color: var(--cb-text); margin: 0; }
.cb-news-balloons { position: absolute; top: 18px; right: 28px; width: 110px; opacity: .95; animation: cb-float 7s ease-in-out infinite; }
.cb-news-form { display: flex; gap: 10px; margin: 0; }
.cb-news-form input[type="email"] {
  flex: 1;
  height: 56px;
  margin: 0;
  padding: 0 24px;
  border-radius: var(--cb-r-pill);
  border: 1px solid rgba(122, 90, 74, .2);
  background: rgba(255, 255, 255, .85);
  box-shadow: inset 0 1px 2px rgba(78, 55, 45, .06);
  font-size: 15px;
  color: var(--cb-mocha-dark);
  transition: border-color .2s, box-shadow .2s;
}
.cb-news-form input[type="email"]:focus { border-color: var(--cb-mocha); box-shadow: 0 0 0 4px rgba(184, 111, 99, .18); outline: 0; }
.cb-news-form .button { height: 56px; margin: 0; padding: 0 30px; }
.cb-news-note { font-size: 12.5px; color: var(--cb-muted); margin-top: 12px !important; }
.cb-news-note a { text-decoration: underline; }


/* ---------------------------------------------------------------------
   4. RESPONSIVE
   --------------------------------------------------------------------- */

/* Narrower desktops: keep the full menu on one line */
@media (min-width: 850px) and (max-width: 1359px) {
  .cb-cart-btn .cb-cart-total { display: none; }
  .cb-cart-btn { padding: 0 12px; }
}
@media (min-width: 850px) and (max-width: 1279px) {
  #logo { margin-right: 12px; }
  #logo img { max-height: 66px; }
  .header-nav-main > li > a { padding: 8px 9px; font-size: 14px; }
  .header-nav-main > li.cb-nav-home { display: none; }   /* logo links home */
  .cb-float-card--product { left: 0; }
}
@media (min-width: 850px) and (max-width: 1099px) {
  #logo img { max-height: 58px; }
  .header-nav-main > li > a { padding: 8px 6px; font-size: 13.5px; }
  .header-nav-main .cb-ico--sm { display: none; }
  .cb-header-icons .header-wishlist-icon { display: none; }
}

/* Tablet + mobile */
@media (max-width: 849px) {
  .header-main { height: 72px; }
  #logo { margin: 0; }
  #logo img { max-height: 58px; }
  .cb-home-hero { padding: 20px 0 32px; }
  .cb-home-hero .cb-hero-art { max-width: 440px; margin-top: 10px; }
  .cb-products .cb-tabs-wrap { justify-content: flex-start; overflow-x: auto; }
  .cb-theme-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px repeat(2, 220px); gap: 14px; }
  .cb-theme-grid .cb-theme:first-child { grid-column: span 2; grid-row: span 1; }
  .cb-news-card > .col-inner { padding: 40px 32px; }
  .cb-news-balloons { width: 80px; }
}

/* Mobile */
@media (max-width: 549px) {
  .header-top { font-size: 12px; }
  .cb-home-hero .cb-hero-copy > .col-inner { padding: 30px 22px; }
  .cb-home-hero h1 { font-size: 42px; margin: 18px 0 14px; }
  .cb-home-hero .cb-lead { font-size: 16px; margin-bottom: 22px; }
  .cb-home-hero .cb-hero-ctas .button { flex: 1 1 100%; justify-content: center; }
  .cb-float-card { padding: 8px 12px 8px 8px; gap: 8px; }
  .cb-float-card strong { font-size: 12.5px; }
  .cb-float-card small { font-size: 11.5px; }
  .cb-float-thumb, .cb-float-icon { width: 38px; height: 38px; border-radius: 12px; }
  .cb-float-thumb img { width: 30px; height: 30px; }
  .cb-float-card--product { left: 0; top: 14%; }
  .cb-float-card--ship { right: 0; bottom: 6%; }
  .cb-sticker { width: 74px; height: 74px; font-size: 20px; }
  .cb-trust .cb-trust-bar > .col-inner { padding: 18px 8px 4px; }
  .cb-trust .cb-trust-bar .col { padding-bottom: 14px; }
  .cb-trust .icon { width: 44px; height: 44px; border-radius: 14px; }
  .cb-trust h4 { font-size: 14px; }
  .cb-cats .header-title { font-size: 15px; }
  .cb-products .product-small.box { padding: 8px; }
  .cb-products .badge-container { padding: 14px; }
  .cb-products .product-title a { font-size: 14px; }
  .cb-products .add-to-cart-button .button span { display: none; }
  .cb-theme-grid { grid-template-rows: 280px repeat(2, 200px); }
  .cb-theme-art { width: 70%; right: -10%; top: -2%; }
  .cb-theme-box { left: 10px; right: 10px; bottom: 10px; padding: 10px 12px; }
  .cb-theme-box h3 { font-size: 17px; }
  .cb-theme-box p, .cb-theme-box .cb-link-arrow { display: none; }
  .cb-theme:first-child .cb-theme-box { left: 12px; right: 12px; bottom: 12px; padding: 16px 18px; }
  .cb-theme:first-child .cb-theme-box h3 { font-size: 26px; }
  .cb-theme:first-child .cb-theme-box p, .cb-theme:first-child .cb-theme-box .cb-link-arrow { display: block; }
  .cb-news-card > .col-inner { padding: 32px 20px; border-radius: 28px; }
  .cb-news-balloons { width: 64px; top: 12px; right: 12px; }
  .cb-news-form { flex-direction: column; }
  .cb-news-form input[type="email"] { flex: none; width: 100%; }
  .cb-news-form .button { width: 100%; justify-content: center; }
  .cb-tabs.nav > li > a { padding: 9px 14px; font-size: 13px; }
  .cb-absolute .cb-absolute-inner { justify-content: center; text-align: center; }
}

/* Tabs never wrap — they scroll sideways if space runs out */
@media (max-width: 849px) {
  .cb-tabs.nav { flex-shrink: 0; }
  .cb-tabs.nav > li { flex: none; }
  .cb-tabs.nav > li > a { white-space: nowrap; }
}


/* =====================================================================
   5. INNER PAGES  (shop, category, product, cart, checkout, account,
      contact, FAQ, text pages) — scoped per page section class
   ===================================================================== */

/* ----- [ cb-page-hero ] — title band on every inner page ------------- */
.cb-page-hero { padding: 32px 0 8px; }
.cb-page-hero-card { position: relative; overflow: hidden; padding: 30px 40px 34px; }
.cb-page-hero-card.has-art { padding-right: 300px; min-height: 230px; }
.cb-page-hero h1 { font-size: clamp(32px, 4.2vw, 54px); line-height: 1.05; letter-spacing: -.025em; margin: 6px 0 10px; }
.cb-page-hero-text { font-size: 17px; color: var(--cb-text); max-width: 40em; margin: 0; }
.cb-page-hero-art {
  position: absolute;
  right: 32px;
  top: 50%;
  width: 230px;
  margin-top: -115px;
  filter: drop-shadow(0 18px 26px rgba(122, 90, 74, .14));
  animation: cb-float-sm 7s ease-in-out infinite;
}
.cb-page-hero-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -60px;
  top: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 183, 173, .45), transparent 65%);
}
.cb-breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--cb-muted); margin-bottom: 14px; text-transform: none; letter-spacing: 0; }
.cb-breadcrumbs a { color: var(--cb-muted); }
.cb-breadcrumbs a:hover { color: var(--cb-rose); }
.cb-breadcrumbs .divider { opacity: .5; margin: 0; }
.cb-breadcrumbs [aria-current] { color: var(--cb-mocha-dark); }
.cb-subcats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.cb-chip.is-active { background: var(--cb-mocha); color: #fff; border-color: transparent; }
a.cb-chip.is-active:hover { background: #684A3C; color: #fff; }

/* Search field inside the hero */
.cb-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 560px;
  height: 58px;
  padding: 0 6px 0 20px;
  margin-top: 6px;
  border-radius: var(--cb-r-pill);
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(122, 90, 74, .18);
  color: var(--cb-muted);
}
.cb-search-form input[type="search"] { flex: 1; height: 56px; margin: 0; padding: 0; border: 0; background: transparent; box-shadow: none; font-size: 16px; }
.cb-search-form .button { margin: 0; height: 46px; }

/* ----- Form controls (checkout, account, cart coupon) ----------------- */
.cb-form-card { padding: 34px 36px; }
.cb-form-card h2, .cb-totals h2 { font-size: 24px; margin: 0 0 20px; }
.cb-form-card .form-row { margin: 0 0 16px; }
.cb-form-card label, .cb-variation-label { display: block; font-size: 13.5px; font-weight: 700; color: var(--cb-mocha-dark); margin-bottom: 8px; }
.cb-form-card label abbr, .cb-totals abbr { color: var(--cb-rose); text-decoration: none; border: 0; }
.cb-form-card .optional { font-weight: 500; color: var(--cb-muted); }
.cb-form-card input[type="text"], .cb-form-card input[type="email"], .cb-form-card input[type="tel"],
.cb-form-card input[type="password"], .cb-form-card select, .cb-form-card textarea,
.cb-coupon input[type="text"] {
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(122, 90, 74, .2);
  background-color: rgba(255, 255, 255, .85);
  box-shadow: inset 0 1px 2px rgba(78, 55, 45, .05);
  font-size: 15px;
  color: var(--cb-mocha-dark);
  transition: border-color .2s, box-shadow .2s;
}
.cb-form-card textarea { height: auto; padding: 14px 16px; min-height: 96px; }
.cb-form-card input:focus, .cb-form-card select:focus, .cb-form-card textarea:focus, .cb-coupon input:focus {
  border-color: var(--cb-mocha);
  box-shadow: 0 0 0 4px rgba(184, 111, 99, .16);
  outline: 0;
}
.cb-fields { display: flex; flex-wrap: wrap; gap: 0 16px; }
.cb-fields .form-row { flex: 1 1 100%; }
.cb-fields .form-row.cb-half { flex: 1 1 calc(50% - 8px); }
.cb-check-row { display: flex !important; align-items: flex-start; gap: 10px; font-weight: 500 !important; font-size: 14px !important; color: var(--cb-text) !important; margin: 4px 0 16px !important; cursor: pointer; }
.cb-check-row input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--cb-mocha); flex: none; }
.cb-form-inline { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.cb-form-inline .cb-check-row { margin: 0 !important; }
.cb-form-inline a { font-size: 14px; font-weight: 700; }
.cb-small { font-size: 13px; color: var(--cb-muted); }
.button.expand { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; margin: 8px 0 0; }

/* ----- [ cb-shop ] — archive with sidebar ----------------------------- */
.cb-shop { padding: 24px 0 64px; }
.cb-shop-sidebar > .col-inner { padding: 22px 22px 8px; position: sticky; top: 150px; }
.cb-shop-sidebar .widget { margin: 0 0 20px; padding: 0 0 18px; border-bottom: 1px solid rgba(122, 90, 74, .1); }
.cb-shop-sidebar .widget:last-child { border-bottom: 0; }
.cb-shop-sidebar .widget-title {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cb-mocha-dark);
  margin: 0 0 12px;
}
.cb-widget-list { list-style: none; margin: 0; padding: 0; }
.cb-widget-list li { display: flex; align-items: center; justify-content: space-between; margin: 0 0 2px !important; }
.cb-widget-list li > a { flex: 1; display: block; padding: 7px 10px; margin: 0 0 0 -10px;border-radius: 10px; font-size: 14.5px; font-weight: 600; color: var(--cb-text); }
.cb-widget-list li > a:hover { background: rgba(122, 90, 74, .06); color: var(--cb-mocha-dark); }
.cb-widget-list li.is-active > a { color: var(--cb-rose); }
.cb-shop-sidebar .widget > ul > li .count { font-size: 12px; font-weight: 700; line-height: 1.2; opacity: 1; color: var(--cb-muted); background: var(--cb-ivory); border-radius: var(--cb-r-pill); padding: 3px 9px; margin-left: 14px; }
.cb-check { display: flex !important; align-items: center; gap: 10px; }
.cb-box { width: 18px; height: 18px; border-radius: 6px; border: 1.5px solid rgba(122, 90, 74, .35); background: #fff; flex: none; position: relative; }
.cb-check.is-checked .cb-box { background: var(--cb-mocha); border-color: var(--cb-mocha); }
.cb-check.is-checked .cb-box::after { content: ""; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.cb-range { position: relative; height: 6px; margin: 16px 8px 12px; border-radius: 6px; background: var(--cb-sage-soft); }
.cb-range-fill { position: absolute; left: 0; width: 70%; top: 0; bottom: 0; border-radius: 6px; background: var(--cb-blush); }
.cb-range-knob { position: absolute; top: 50%; width: 20px; height: 20px; margin: -10px 0 0 -10px; border-radius: 50%; background: #fff; border: 2px solid var(--cb-mocha); box-shadow: var(--cb-elev-1); }
.cb-range-values { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--cb-muted); }
.cb-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.cb-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sw);
  border: 1px solid rgba(122, 90, 74, .18);
  box-shadow: inset 0 0 0 3px #fff;
  transition: transform .2s var(--cb-ease), box-shadow .2s;
}
.cb-swatch:hover { transform: scale(1.08); }
.cb-swatch.is-active { box-shadow: inset 0 0 0 3px #fff, 0 0 0 2px var(--cb-mocha); }
.cb-filter-head { display: none; }

.cb-shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin: 0 0 18px; }
.cb-shop-toolbar .woocommerce-result-count { margin: 0; font-size: 14px; font-weight: 700; color: var(--cb-muted); }
.cb-shop-toolbar .woocommerce-ordering { margin: 0 0 0 auto; }
.cb-shop-toolbar select {
  height: 44px;
  margin: 0;
  padding: 0 40px 0 18px;
  border-radius: var(--cb-r-pill);
  border: 1px solid var(--cb-glass-border);
  background-color: var(--cb-glass-strong);
  box-shadow: var(--cb-elev-1);
  font-size: 14px;
  font-weight: 700;
  color: var(--cb-mocha-dark);
}
.cb-shop-toolbar .button { margin: 0; display: inline-flex; align-items: center; gap: 8px; }
.cb-empty { padding: 40px; text-align: center; color: var(--cb-muted); }
.cb-pager { display: flex; justify-content: center; gap: 8px; list-style: none; margin: 18px 0 0; padding: 0; }
.cb-pager li { margin: 0 !important; }
.cb-pager .page-number {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 6px;
  border-radius: 50%;
  background: var(--cb-glass-strong);
  border: 1px solid var(--cb-glass-border);
  color: var(--cb-mocha-dark);
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--cb-elev-1);
}
.cb-pager .page-number:hover { background: #fff; color: var(--cb-rose); }
.cb-pager .page-number.current { background: var(--cb-mocha); color: #fff; border-color: transparent; }
.cb-pager .cb-ico { width: 18px; height: 18px; }

/* ----- [ cb-product ] — single product -------------------------------- */
.cb-product { padding: 28px 0 24px; }
.cb-gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(247, 225, 219, .9), rgba(251, 233, 220, .7));
}
.cb-gallery-main > img { width: 72%; height: 72%; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(122, 90, 74, .16)); }
.cb-gallery-main .badge-container { margin: 0; padding: 20px; }
.cb-gallery-main .cb-wish { position: absolute; top: 18px; right: 18px; z-index: 2; width: 44px; height: 44px; }
.cb-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.cb-thumb {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 10px;
  border-radius: 16px;
  background: var(--cb-glass);
  border: 2px solid var(--cb-glass-border);
  box-shadow: var(--cb-elev-1);
  line-height: 1;
  transition: border-color .2s, transform .2s var(--cb-ease);
}
.cb-thumb img { width: 100%; height: 100%; object-fit: contain; }
.cb-thumb:hover { transform: translateY(-2px); }
.cb-thumb.is-active { border-color: var(--cb-mocha); }

.cb-summary { padding: 34px 38px; }
.cb-summary .product-cat { margin-bottom: 8px; }
.cb-summary h1 { font-size: clamp(28px, 3vw, 40px); line-height: 1.12; margin: 0 0 14px; }
.cb-summary .price-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.cb-summary .price { display: flex; align-items: baseline; gap: 10px; margin: 0; }
.cb-summary .price .amount { font-family: "Literata", Georgia, serif; font-size: 34px; font-weight: 700; color: var(--cb-rose); }
.cb-summary .price del { opacity: 1; }
.cb-summary .price del .amount { font-family: "Manrope", sans-serif; font-size: 18px; font-weight: 600; color: var(--cb-muted); }
.cb-summary .price ins { text-decoration: none; }
.cb-stock { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--cb-r-pill); background: #E9EDE0; color: #56613F; font-size: 13px; font-weight: 700; }
.cb-stock .cb-ico { width: 16px; height: 16px; }
.cb-summary .product-short-description p { font-size: 15.5px; color: var(--cb-text); }
.cb-variation { margin: 18px 0; }
.cb-variation-label strong { color: var(--cb-rose); }
.cb-options { display: flex; flex-wrap: wrap; gap: 8px; }
.cb-add-to-cart { display: flex; gap: 12px; align-items: stretch; margin: 24px 0 22px; flex-wrap: wrap; }
.cb-add-to-cart .button { flex: 1; margin: 0; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-width: 220px; }
.cb-qty {
  display: inline-flex;
  align-items: center;
  height: 56px;
  padding: 0 4px;
  border-radius: var(--cb-r-pill);
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(122, 90, 74, .18);
}
.cb-qty input.qty {
  width: 44px;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--cb-mocha-dark);
  -moz-appearance: textfield;
}
.cb-qty input::-webkit-outer-spin-button, .cb-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cb-qty-btn {
  width: 44px;
  height: 44px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: var(--cb-mocha-dark);
  background: transparent;
  transition: background-color .2s;
}
.cb-qty-btn:hover { background: var(--cb-blush-soft); }
.cb-qty.is-small { height: 42px; }
.cb-qty.is-small .cb-qty-btn { width: 34px; height: 34px; font-size: 17px; }
.cb-qty.is-small input.qty { width: 34px; font-size: 15px; }
.cb-perks { list-style: none; margin: 0 0 20px; padding: 16px 0 0; border-top: 1px solid rgba(122, 90, 74, .12); display: grid; gap: 10px; }
.cb-perks li { display: flex; align-items: center; gap: 12px; margin: 0 !important; font-size: 14px; color: var(--cb-text); }
.cb-perks .cb-ico { width: 20px; height: 20px; color: var(--cb-rose); }
.cb-perks strong { color: var(--cb-mocha-dark); }
.cb-meta { display: grid; gap: 4px; font-size: 13.5px; color: var(--cb-muted); }
.cb-meta strong, .cb-meta a { color: var(--cb-mocha-dark); font-weight: 700; }
.cb-product-tabs { margin-top: 24px; }
.cb-product-tabs .tab-panels { margin-top: 16px; padding: 30px 34px; }
.cb-product-tabs .panel h3 { font-size: 22px; }
.cb-product-tabs .panel ul { margin-left: 1.2em; }
.cb-note { font-size: 13px; padding: 10px 14px; border-radius: 12px; background: var(--cb-peach-soft); color: #7A5238; }
.cb-attrs { width: 100%; border-collapse: collapse; }
.cb-attrs th, .cb-attrs td { padding: 12px 14px; border-bottom: 1px solid rgba(122, 90, 74, .1); text-align: left; font-size: 14.5px; text-transform: none; letter-spacing: 0; }
.cb-attrs th { width: 32%; color: var(--cb-mocha-dark); font-weight: 700; }
.cb-related { padding-top: 16px; }

/* ----- [ cb-cart ] + totals ------------------------------------------- */
.cb-cart { padding: 24px 0 24px; }
.cb-cart-card { padding: 28px 30px; }
.cb-ship-progress { padding: 16px 18px; margin-bottom: 18px; border-radius: 16px; background: var(--cb-blush-soft); }
.cb-ship-progress p { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; font-size: 14.5px; color: var(--cb-mocha-dark); }
.cb-ship-progress .cb-ico { color: var(--cb-rose); }
.cb-progress { height: 8px; border-radius: 8px; background: rgba(255, 255, 255, .8); overflow: hidden; }
.cb-progress span { display: block; height: 100%; border-radius: 8px; background: linear-gradient(90deg, var(--cb-blush), var(--cb-rose)); }
.cb-cart-table { width: 100%; border-collapse: collapse; margin: 0; }
.cb-cart-table th {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(122, 90, 74, .14);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cb-muted);
  text-align: left;
}
.cb-cart-table td { padding: 14px 8px; border-bottom: 1px solid rgba(122, 90, 74, .1); vertical-align: middle; }
.cb-cart-table .product-name a { font-weight: 700; color: var(--cb-mocha-dark); line-height: 1.35; }
.cb-cart-table .product-name small { display: block; color: var(--cb-muted); margin-top: 2px; }
.cb-cart-table .amount { font-weight: 800; color: var(--cb-mocha-dark); white-space: nowrap; }
.cb-cart-thumb { position: relative; display: grid; place-items: center; width: 72px; height: 72px; border-radius: 14px; background: var(--cb-blush-soft); flex: none; }
.cb-cart-thumb img { width: 76%; height: 76%; object-fit: contain; }
.cb-cart-table .product-thumbnail { width: 88px; }
.cb-cart-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.cb-coupon { display: flex; gap: 8px; margin: 0; flex: 1 1 320px; max-width: 420px; }
.cb-coupon input[type="text"] { border-radius: var(--cb-r-pill); height: 48px; }
.cb-coupon .button { margin: 0; height: 48px; }

.cb-totals { padding: 28px 30px; position: sticky; top: 150px; }
.cb-totals-list { margin: 0 0 18px; }
.cb-totals-list > div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(122, 90, 74, .1); }
.cb-totals-list dt { font-weight: 600; color: var(--cb-text); }
.cb-totals-list dd { margin: 0; font-weight: 800; color: var(--cb-mocha-dark); }
.cb-totals-list .cb-total { border-bottom: 0; padding-top: 14px; }
.cb-totals-list .cb-total dt { font-size: 17px; font-weight: 800; color: var(--cb-mocha-dark); }
.cb-totals-list .cb-total small { font-weight: 500; color: var(--cb-muted); }
.cb-totals-list .cb-total dd { font-family: "Literata", Georgia, serif; font-size: 26px; }
.cb-pay--light { margin-top: 16px; justify-content: center; }
.cb-pay--light span { background: #fff; border-color: rgba(122, 90, 74, .15); color: var(--cb-mocha-dark); }
.cb-secure { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 12px 0 0; font-size: 13px; color: var(--cb-muted); }
.cb-secure .cb-ico { width: 16px; height: 16px; color: #6F7A55; }

/* ----- [ cb-checkout ] ------------------------------------------------ */
.cb-checkout { padding: 24px 0 64px; }
.cb-login-hint { padding: 12px 16px; border-radius: 14px; background: var(--cb-ivory); font-size: 14px; margin-bottom: 24px; }
.cb-login-hint a { font-weight: 800; }
.cb-checkout h2 { display: flex; align-items: center; gap: 12px; font-size: 22px; margin: 28px 0 16px; }
.cb-checkout .cb-form-card h2:first-of-type { margin-top: 0; }
.cb-step { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--cb-mocha); color: #fff; font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 800; }
.cb-segment { display: inline-flex; gap: 4px; padding: 4px; margin: 4px 0 16px; border-radius: var(--cb-r-pill); background: var(--cb-ivory); }
.cb-seg { margin: 0 !important; cursor: pointer; }
.cb-seg input { position: absolute; opacity: 0; pointer-events: none; }
.cb-seg span { display: block; padding: 9px 20px; border-radius: var(--cb-r-pill); font-size: 14px; font-weight: 700; color: var(--cb-mocha); transition: background-color .2s, color .2s; }
.cb-seg input:checked + span { background: var(--cb-mocha); color: #fff; box-shadow: var(--cb-elev-1); }
.cb-seg input:focus-visible + span { outline: 3px solid rgba(184, 111, 99, .45); }
.cb-options-list { display: grid; gap: 10px; }
.cb-option {
  display: flex !important;
  align-items: center;
  gap: 14px;
  margin: 0 !important;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1.5px solid rgba(122, 90, 74, .15);
  background: rgba(255, 255, 255, .7);
  cursor: pointer;
  transition: border-color .2s, background-color .2s;
}
.cb-option:has(input:checked) { border-color: var(--cb-mocha); background: #fff; box-shadow: var(--cb-elev-1); }
.cb-option input { width: 20px; height: 20px; margin: 0; accent-color: var(--cb-mocha); flex: none; }
.cb-option-body { flex: 1; }
.cb-option-body strong { display: block; font-size: 15px; color: var(--cb-mocha-dark); }
.cb-option-body small { display: block; font-size: 13px; font-weight: 500; color: var(--cb-muted); }
.cb-option-price { font-weight: 800; color: var(--cb-mocha-dark); white-space: nowrap; }
.cb-review-items { list-style: none; margin: 0 0 12px; padding: 0; display: grid; gap: 12px; }
.cb-review-items li { display: flex; align-items: center; gap: 12px; margin: 0 !important; font-size: 14px; }
.cb-review-items li > span:nth-child(2) { flex: 1; color: var(--cb-mocha-dark); font-weight: 600; line-height: 1.35; }
.cb-review-items .cb-cart-thumb { width: 58px; height: 58px; }
.cb-review-items .cb-cart-thumb b {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cb-mocha);
  color: #fff;
  font-size: 11.5px;
}

/* ----- [ cb-account ] ------------------------------------------------- */
.cb-account { padding: 24px 0 64px; }
.cb-account .col-inner { height: 100%; }
.cb-account .cb-perks { margin: 24px 0 0; }

/* ----- [ cb-contact ] ------------------------------------------------- */
.cb-contact { padding: 24px 0 64px; }
.cb-contact-card {
  display: block;
  height: 100%;
  padding: 28px 28px 22px;
  color: var(--cb-text);
  transition: transform .25s var(--cb-ease), box-shadow .25s var(--cb-ease);
}
a.cb-contact-card:hover { transform: translateY(-4px); box-shadow: var(--cb-elev-3); color: var(--cb-text); }
.cb-contact-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 16px; border-radius: 16px; background: var(--cb-blush-soft); color: var(--cb-rose); }
.cb-contact .col:nth-child(2) .cb-contact-icon { background: var(--cb-sage-soft); color: #6F6C58; }
.cb-contact .col:nth-child(3) .cb-contact-icon { background: var(--cb-peach-soft); color: #A5694B; }
.cb-contact-card h3 { font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--cb-muted); margin: 0 0 4px; }
.cb-contact-card .cb-contact-value { font-family: "Literata", Georgia, serif; font-size: 22px; font-weight: 600; color: var(--cb-mocha-dark); margin: 0 0 4px; }
.cb-contact-card p { font-size: 14px; margin: 0; }
.cb-contact-form { padding: 32px 34px; }
.cb-contact-form h2 { font-size: clamp(24px, 2.6vw, 32px); margin: 0 0 20px; }
.cb-contact-form .button { margin: 4px 0 0; display: inline-flex; align-items: center; gap: 8px; }
.cb-contact-side { padding: 10px 10px 10px 20px; }
.cb-contact-side h2 { font-size: clamp(26px, 2.8vw, 36px); margin: 0 0 10px; }
.cb-faq-teaser { margin-top: 28px; padding: 20px 22px; }
.cb-faq-teaser strong { font-family: "Literata", Georgia, serif; font-size: 19px; color: var(--cb-mocha-dark); }
.cb-faq-teaser p { margin: 4px 0 8px; font-size: 14px; }

/* ----- [ cb-faq ] + accordion ----------------------------------------- */
.cb-faq { padding: 24px 0 64px; }
.cb-faq-nav { position: sticky; top: 150px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.cb-faq h2 { font-size: 26px; margin: 8px 0 14px; scroll-margin-top: 150px; }
.cb-accordion { display: grid; gap: 10px; margin-bottom: 32px; }
.cb-accordion .accordion-item {
  border-radius: var(--cb-r-md);
  background: var(--cb-glass);
  -webkit-backdrop-filter: var(--cb-blur);
  backdrop-filter: var(--cb-blur);
  border: 1px solid var(--cb-glass-border);
  box-shadow: var(--cb-elev-1);
  overflow: hidden;
}
.cb-accordion .accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 18px 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  color: var(--cb-mocha-dark);
}
.cb-accordion .accordion-title:hover { background: rgba(255, 255, 255, .5); }
.cb-accordion .accordion-title .cb-ico { width: 20px; height: 20px; color: var(--cb-rose); transition: transform .25s var(--cb-ease); }
.cb-accordion .accordion-inner { display: none; padding: 0 22px 18px; }
.cb-accordion .accordion-inner p { margin: 0; color: var(--cb-text); }
.cb-accordion .accordion-item.active .accordion-inner { display: block; }
.cb-accordion .accordion-item.active .accordion-title .cb-ico { transform: rotate(180deg); }
.cb-faq-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 26px; }
.cb-faq-cta strong { font-family: "Literata", Georgia, serif; font-size: 20px; color: var(--cb-mocha-dark); }
.cb-faq-cta p { margin: 0; }
.cb-faq-cta .button { margin: 0; }

/* ----- [ cb-text-page ] ----------------------------------------------- */
.cb-text-page { padding: 24px 0 64px; }
.cb-article { max-width: 860px; margin: 0 auto; padding: 40px 48px; }
.cb-article h2 { font-size: 24px; margin: 28px 0 10px; }
.cb-article h3 { font-size: 19px; margin: 22px 0 8px; }
.cb-article p, .cb-article li { font-size: 15.5px; color: var(--cb-text); }
.cb-article ul, .cb-article ol { margin: 0 0 16px 1.3em; }
.cb-article .cb-pay { justify-content: flex-start; margin: 0 0 12px; }
.cb-updated { margin-top: 28px; font-size: 13px; color: var(--cb-muted); }

/* ----- [ cb-wishlist ] ------------------------------------------------ */
.cb-wishlist { padding: 24px 0 64px; }
.cb-wish.is-active { color: var(--cb-rose); }

/* ----- Inner pages · responsive --------------------------------------- */
@media (max-width: 849px) {
  .cb-page-hero-card.has-art { padding-right: 40px; }
  .cb-page-hero-art { width: 140px; right: -10px; top: 20px; margin-top: 0; opacity: .5; }
  .cb-shop-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 110;
    width: min(88vw, 360px);
    max-width: none !important;
    padding: 0 !important;
    transform: translateX(-105%);
    transition: transform .3s var(--cb-ease);
  }
  .cb-shop-sidebar.is-open { transform: none; box-shadow: 0 0 0 100vmax rgba(78, 55, 45, .28); }
  .cb-shop > .section-content { z-index: auto; }   /* let the filter panel sit above the sticky header */
  .cb-shop-sidebar > .col-inner { position: static; height: 100%; overflow-y: auto; border-radius: 0 var(--cb-r-lg) var(--cb-r-lg) 0; background: rgba(251, 248, 243, .94); }
  .cb-filter-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
  .cb-filter-head strong { font-family: "Literata", Georgia, serif; font-size: 22px; color: var(--cb-mocha-dark); }
  .cb-summary { margin-top: 8px; }
  .cb-totals, .cb-faq-nav, .cb-shop-sidebar > .col-inner { top: auto; }
  .cb-totals { position: static; }
  .cb-faq-nav { position: static; flex-direction: row; flex-wrap: wrap; margin-bottom: 8px; }
  .cb-contact-side { padding: 20px 0 0; }
}
@media (max-width: 549px) {
  .cb-page-hero { padding-top: 18px; }
  .cb-page-hero-card { padding: 22px 20px 24px; }
  .cb-page-hero-card.has-art { padding-right: 20px; min-height: 0; }
  .cb-page-hero-art { width: 96px; }
  .cb-page-hero-text { font-size: 15px; }
  .cb-subcats { flex-wrap: nowrap; overflow-x: auto; margin: 16px -20px 0; padding: 0 20px 6px; }
  .cb-subcats .cb-chip { flex: none; }
  .cb-search-form { height: 52px; padding-left: 14px; }
  .cb-search-form .button span { font-size: 13px; }
  .cb-shop-toolbar .woocommerce-result-count { order: 3; width: 100%; }
  .cb-shop-toolbar select { max-width: 190px; }
  .cb-summary, .cb-form-card, .cb-cart-card, .cb-totals { padding: 22px 18px; }
  .cb-summary .price .amount { font-size: 28px; }
  .cb-add-to-cart .button { min-width: 0; }
  .cb-thumbs { gap: 8px; }
  .cb-product-tabs .tab-panels { padding: 20px 18px; }
  .cb-product-tabs .cb-tabs-wrap, .cb-product-tabs .cb-tabs { max-width: 100%; overflow-x: auto; }
  .cb-fields .form-row.cb-half { flex-basis: 100%; }
  /* cart table → stacked cards */
  .cb-cart-table thead { display: none; }
  .cb-cart-table, .cb-cart-table tbody { display: block; }
  .cb-cart-table tr { position: relative; display: grid; grid-template-columns: 72px 1fr; column-gap: 14px; padding: 14px 36px 14px 0; border-bottom: 1px solid rgba(122, 90, 74, .1); }
  .cb-cart-table td { display: block; padding: 0; border: 0; text-align: left; }
  .cb-cart-table .product-thumbnail { grid-row: span 3; width: auto; }
  .cb-cart-table .product-price { display: none; }
  .cb-cart-table .product-quantity { margin-top: 8px; }
  .cb-cart-table .product-subtotal { margin-top: 6px; }
  .cb-cart-table .product-remove { position: absolute; top: 8px; right: 0; }
  .cb-coupon { max-width: none; }
  .cb-contact-form .button { width: 100%; justify-content: center; }
  .cb-article { padding: 24px 20px; }
  .cb-accordion .accordion-title { padding: 16px 18px; font-size: 15px; }
}
