/* ============================================================
   CHARULATA  —  Handmade Ecommerce  —  Design System v3
   Strategy: scoped under body.ch so nothing fights Bootstrap.
   Bootstrap handles grid/utilities; we handle everything visual.
   ============================================================ */

/* ── Google Font preload hint (actual @import is in <head>) ── */

/* ── 1. CSS Custom Properties ─────────────────────────────── */
:root {
  /* Palette */
  --terra:        #C4714B;
  --terra-dk:     #A85D3A;
  --terra-lt:     #F5DDD1;
  --cream:        #FAF7F2;
  --cream-dk:     #F0E8DB;
  --brown:        #2E1C10;
  --brown-md:     #5C3D28;
  --sage:         #7A9B7D;
  --gold:         #C9A84C;
  --gold-lt:      #E8C97A;
  --white:        #FFFFFF;
  --txt:          #2E1C10;
  --txt-muted:    #7A6558;
  --border:       #E2D8CE;

  /* Shadows */
  --sh-sm:        0 1px 4px rgba(46,28,16,.08);
  --sh-md:        0 4px 16px rgba(46,28,16,.10);
  --sh-lg:        0 12px 40px rgba(46,28,16,.16);

  /* Radii */
  --r-sm:  4px;
  --r-md:  10px;
  --r-lg:  18px;
  --r-xl:  28px;
  --r-pill: 999px;

  /* Typography */
  --f-head: 'Playfair Display', Georgia, serif;
  --f-body: 'Poppins', system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  .22s;
}

/* ── 2. Base reset (scoped — won't fight Bootstrap globally) ─ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--txt);
  background: var(--cream);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--f-head);
  color: var(--brown);
  line-height: 1.2;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }
ul,ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--f-body); cursor: pointer; }
a { color: var(--terra); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--terra-dk); }

/* ── 3. Utility ───────────────────────────────────────────── */
.ch-section   { padding: 80px 0; }
.ch-section-sm{ padding: 56px 0; }
.ch-bg-cream  { background: var(--cream); }
.ch-bg-white  { background: var(--white); }
.ch-bg-brown  { background: var(--brown); }
.ch-bg-cream-dk { background: var(--cream-dk); }

/* Section heading */
.ch-heading {
  text-align: center;
  margin-bottom: 52px;
}
.ch-heading__eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
}
.ch-heading h2 {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 10px;
}
.ch-heading p {
  font-size: 15px;
  color: var(--txt-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}
.ch-heading__line {
  width: 48px; height: 3px;
  background: var(--terra);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ── 4. Buttons ───────────────────────────────────────────── */
.ch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  padding: 13px 30px;
  line-height: 1;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.ch-btn i { font-size: 13px; }
.ch-btn-primary {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.ch-btn-primary:hover {
  background: var(--terra-dk);
  border-color: var(--terra-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,113,75,.35);
}
.ch-btn-outline {
  background: transparent;
  color: var(--terra);
  border-color: var(--terra);
}
.ch-btn-outline:hover {
  background: var(--terra);
  color: var(--white);
  transform: translateY(-2px);
}
.ch-btn-ghost {
  background: transparent;
  color: var(--brown);
  border-color: var(--border);
}
.ch-btn-ghost:hover {
  border-color: var(--terra);
  color: var(--terra);
}
.ch-btn-white {
  background: rgba(255,255,255,.18);
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.ch-btn-white:hover {
  background: var(--white);
  color: var(--terra);
  border-color: var(--white);
}
.ch-btn-sm { padding: 9px 20px; font-size: 11px; }
.ch-btn-lg { padding: 16px 42px; font-size: 13px; }

/* ── 5. Preloader ─────────────────────────────────────────── */
#ch-preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s var(--ease);
}
#ch-preloader.hide { opacity: 0; pointer-events: none; }
.ch-preloader-ring {
  width: 44px; height: 44px;
  border: 3px solid var(--terra-lt);
  border-top-color: var(--terra);
  border-radius: 50%;
  animation: ch-spin .8s linear infinite;
}
@keyframes ch-spin { to { transform: rotate(360deg); } }

/* ── 6. Scroll-to-top ─────────────────────────────────────── */
.ch-scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--terra); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; box-shadow: var(--sh-md);
  opacity: 0; pointer-events: none;
  transition: all var(--dur) var(--ease);
}
.ch-scroll-top.show { opacity: 1; pointer-events: auto; }
.ch-scroll-top:hover { background: var(--terra-dk); color: var(--white); transform: translateY(-3px); }

/* ── 7. Flash Notifications ───────────────────────────────── */
.ch-toast {
  position: fixed; top: 80px; right: 20px; z-index: 9999;
  max-width: 360px; width: 100%;
  background: var(--white); border-radius: var(--r-md);
  border-left: 4px solid var(--terra);
  box-shadow: var(--sh-lg);
  padding: 14px 18px;
  display: flex; align-items: flex-start; gap: 12px;
  animation: ch-slideIn .3s var(--ease);
}
.ch-toast--success { border-left-color: var(--sage); }
.ch-toast--error   { border-left-color: #e74c3c; }
.ch-toast i { font-size: 18px; margin-top: 1px; flex-shrink: 0; }
.ch-toast--success i { color: var(--sage); }
.ch-toast--error   i { color: #e74c3c; }
.ch-toast--info    i { color: var(--terra); }
.ch-toast p { flex: 1; font-size: 13px; line-height: 1.5; margin: 0; color: var(--txt); }
.ch-toast__close {
  background: none; border: none; padding: 0;
  font-size: 16px; color: var(--txt-muted); cursor: pointer; line-height: 1;
}
@keyframes ch-slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════════════
   8. TOPBAR
   ══════════════════════════════════════════════ */
.ch-topbar {
  background: var(--brown);
  padding: 9px 0;
  font-size: 12px;
  font-family: var(--f-body);
  line-height: 1;
}
.ch-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
}
.ch-topbar__left,
.ch-topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.ch-topbar__left a,
.ch-topbar__left span,
.ch-topbar__right a {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  display: flex; align-items: center; gap: 6px;
  transition: color var(--dur) var(--ease);
}
.ch-topbar__left a:hover,
.ch-topbar__right a:hover { color: var(--gold-lt); }
.ch-topbar__left i,
.ch-topbar__right i { color: var(--gold); font-size: 11px; }

/* ══════════════════════════════════════════════
   9. MAIN HEADER
   ══════════════════════════════════════════════ */
.ch-header {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), 0 2px 12px rgba(46,28,16,.06);
  position: sticky;
  top: 0;
  z-index: 900;
}
.ch-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  margin: auto;
  padding: 14px 24px;
}

/* Logo */
.ch-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.ch-logo__icon {
  width: 44px; height: 44px; flex-shrink: 0;
}
.ch-logo__text { line-height: 1; }
.ch-logo__name {
  display: block;
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: .01em;
}
.ch-logo__tag {
  display: block;
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: 2px;
}

/* Search */
.ch-search {
  flex: 1;
  display: flex;
  align-items: stretch;
  height: 46px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  overflow: hidden;
  background: var(--cream);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ch-search:focus-within {
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(196,113,75,.12);
}
.ch-search__cat {
  height: 100%;
  padding: 0 16px;
  border: none;
  border-right: 1.5px solid var(--border);
  background: var(--cream-dk);
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--txt-muted);
  cursor: pointer;
  outline: none;
  min-width: 130px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237A6558'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}
.ch-search__cat option { list-style: none; }
.ch-search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 16px;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--txt);
  outline: none;
  min-width: 0;
}
.ch-search__input::placeholder { color: var(--txt-muted); }
.ch-search__btn {
  flex-shrink: 0;
  padding: 0 24px;
  border: none;
  background: var(--terra);
  color: var(--white);
  font-size: 16px;
  transition: background var(--dur) var(--ease);
}
.ch-search__btn:hover { background: var(--terra-dk); }

/* Header action icons */
.ch-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.ch-icon-btn {
  position: relative;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  color: var(--brown);
  font-size: 20px;
  background: none;
  border: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  text-decoration: none;
}
.ch-icon-btn:hover { background: var(--cream-dk); color: var(--terra); }
.ch-icon-btn__badge {
  position: absolute;
  top: 5px; right: 5px;
  min-width: 17px; height: 17px;
  padding: 0 3px;
  background: var(--terra);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 700;
  border-radius: var(--r-pill);
  border: 2px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Dropdown panel (cart / wishlist) */
.ch-dropdown {
  position: relative;
}
.ch-dropdown__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
  padding: 18px;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur) var(--ease);
  pointer-events: none;
}
.ch-dropdown:hover .ch-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.ch-dropdown__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.ch-dropdown__head span {
  font-size: 13px; font-weight: 600; color: var(--brown);
}
.ch-dropdown__head a {
  font-size: 12px; color: var(--terra);
}
.ch-dropdown__list {
  max-height: 230px;
  overflow-y: auto;
}
.ch-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dk);
}
.ch-dropdown__item:last-child { border-bottom: none; }
.ch-dropdown__item img {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  object-fit: cover; flex-shrink: 0;
}
.ch-dropdown__item-title {
  font-size: 12px; font-weight: 600; color: var(--brown); display: block;
}
.ch-dropdown__item-price {
  font-size: 12px; color: var(--txt-muted); display: block; margin-top: 2px;
}
.ch-dropdown__item-remove {
  margin-left: auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: none; border: none;
  color: var(--txt-muted); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur), color var(--dur);
}
.ch-dropdown__item-remove:hover { background: #fde8e8; color: #e53e3e; }
.ch-dropdown__foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ch-dropdown__foot-total {
  font-size: 14px; font-weight: 700; color: var(--brown);
}
.ch-dropdown__empty {
  text-align: center;
  padding: 20px 0;
  color: var(--txt-muted);
  font-size: 13px;
}

/* Mobile hamburger */
.ch-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  padding: 6px; flex-shrink: 0;
}
.ch-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--brown); border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.ch-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ch-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ch-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   10. NAVIGATION
   ══════════════════════════════════════════════ */
.ch-nav {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 73px;   /* height of ch-header */
  z-index: 899;
}
.ch-nav__inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}
.ch-nav__list {
  display: flex;
  align-items: center;
}
/* Top-level item */
.ch-nav__list > .ch-nav__item {
  position: relative;
}
.ch-nav__list > .ch-nav__item > a {
  display: block;
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brown);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ch-nav__list > .ch-nav__item > a:hover,
.ch-nav__list > .ch-nav__item.active > a {
  color: var(--terra);
  border-bottom-color: var(--terra);
}

/* NEW pill badge */
.ch-nav-badge {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: var(--r-pill);
  margin-left: 5px;
  vertical-align: middle;
}

/* First-level dropdown */
.ch-nav__drop {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 8px 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              visibility var(--dur) var(--ease);
  pointer-events: none;
}
.ch-nav__item:hover > .ch-nav__drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.ch-nav__drop li { position: relative; }
.ch-nav__drop li a {
  display: block;
  padding: 9px 20px;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--txt-muted);
  transition: background var(--dur), color var(--dur), padding-left var(--dur);
  white-space: nowrap;
}
.ch-nav__drop li a:hover {
  background: var(--cream);
  color: var(--terra);
  padding-left: 26px;
}

/* Second-level sub-dropdown */
.ch-nav__subdrop {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 8px 0;
  z-index: 9999;
  margin-left: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              visibility var(--dur) var(--ease);
  pointer-events: none;
}
.ch-nav__drop li:hover > .ch-nav__subdrop {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
.ch-nav__subdrop li a {
  display: block;
  padding: 9px 20px;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--txt-muted);
  transition: background var(--dur), color var(--dur);
}
.ch-nav__subdrop li a:hover {
  background: var(--cream); color: var(--terra);
}

/* Mobile search bar (hidden on desktop) */
.ch-mobile-search { display: none; }

/* ══════════════════════════════════════════════
   11. BREADCRUMB
   ══════════════════════════════════════════════ */
.ch-crumb {
  background: var(--cream-dk);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}
.ch-crumb__inner {
  max-width: 1280px; margin: auto; padding: 0 24px;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--f-body); font-size: 13px;
}
.ch-crumb a { color: var(--txt-muted); }
.ch-crumb a:hover { color: var(--terra); }
.ch-crumb__sep { color: var(--border); }
.ch-crumb__current { color: var(--brown); font-weight: 500; }

/* ══════════════════════════════════════════════
   12. HERO SLIDER
   ══════════════════════════════════════════════ */
.ch-hero { position: relative; overflow: hidden; }

/* Each slide uses background-image so banner image text is hidden behind overlay */
.ch-hero__slide {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Gradient overlay — left side dark, right side fades */
.ch-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20,10,4,.78) 0%,
    rgba(20,10,4,.45) 45%,
    rgba(20,10,4,.08) 100%
  );
}
.ch-hero__body {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: auto;
  padding: 80px 24px;
}
.ch-hero__content {
  max-width: 580px;
}
.ch-hero__eyebrow {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.ch-hero__title {
  font-family: var(--f-head);
  font-size: clamp(32px, 5.5vw, 68px);
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 18px;
  text-shadow: 0 2px 32px rgba(0,0,0,.25);
}
.ch-hero__sub {
  font-family: var(--f-body);
  font-size: 16px;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 34px;
}
.ch-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
/* Arrow controls */
.ch-hero .carousel-control-prev,
.ch-hero .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.15) !important;
  border: 1.5px solid rgba(255,255,255,.35) !important;
  opacity: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background var(--dur) !important;
  bottom: auto !important;
}
.ch-hero .carousel-control-prev { left: 20px; }
.ch-hero .carousel-control-next { right: 20px; }
.ch-hero .carousel-control-prev:hover,
.ch-hero .carousel-control-next:hover {
  background: var(--terra) !important;
  border-color: var(--terra) !important;
}
.ch-hero .carousel-control-prev i,
.ch-hero .carousel-control-next i {
  font-size: 16px;
  color: var(--white);
}
.ch-hero .carousel-control-prev-icon,
.ch-hero .carousel-control-next-icon { display: none !important; }
/* Indicators */
.ch-hero .carousel-indicators {
  bottom: 22px;
  margin: 0;
  gap: 6px;
  display: flex;
  justify-content: center;
}
.ch-hero .carousel-indicators li {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.4);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}
.ch-hero .carousel-indicators .active {
  background: var(--terra);
  width: 26px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════
   13. PROMISE STRIP (below hero)
   ══════════════════════════════════════════════ */
.ch-promise {
  background: var(--cream-dk);
  border-bottom: 1px solid var(--border);
}
.ch-promise__grid {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ch-promise__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
}
.ch-promise__item:last-child { border-right: none; }
.ch-promise__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(196,113,75,.12);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--terra);
  font-size: 20px;
}
.ch-promise__text strong {
  display: block;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 2px;
}
.ch-promise__text span {
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--txt-muted);
}

/* ══════════════════════════════════════════════
   14. CATEGORY CARDS
   ══════════════════════════════════════════════ */
.ch-cat-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  text-decoration: none;
}
.ch-cat-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.ch-cat-card:hover img { transform: scale(1.08); }
.ch-cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,10,4,.72) 0%, rgba(20,10,4,.06) 60%);
  transition: all var(--dur) var(--ease);
}
.ch-cat-card:hover .ch-cat-card__overlay {
  background: linear-gradient(to top, rgba(20,10,4,.82) 0%, rgba(20,10,4,.2) 60%);
}
.ch-cat-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.ch-cat-card__title {
  font-family: var(--f-head);
  font-size: 22px;
  color: var(--white);
  margin: 0 0 6px;
}
.ch-cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  transition: gap var(--dur) var(--ease);
}
.ch-cat-card:hover .ch-cat-card__cta { gap: 12px; }
.ch-cat-card__cta::after {
  content: '→';
  font-size: 14px;
}

/* ══════════════════════════════════════════════
   15. PRODUCT CARD
   ══════════════════════════════════════════════ */
.ch-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ch-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}
.ch-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
}
.ch-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.ch-card:hover .ch-card__thumb img { transform: scale(1.07); }

/* Badge */
.ch-card__badge {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--f-body);
  font-size: 9px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  z-index: 2;
}
.ch-card__badge--new  { background: var(--sage); color: var(--white); }
.ch-card__badge--hot  { background: var(--terra); color: var(--white); }
.ch-card__badge--sale { background: var(--gold); color: var(--brown); }
.ch-card__badge--out  { background: var(--border); color: var(--txt-muted); }

/* Hover overlay actions */
.ch-card__actions {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  background: rgba(20,10,4,.32);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.ch-card:hover .ch-card__actions { opacity: 1; }
.ch-card__action {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--brown);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  border: none;
  text-decoration: none;
  transition: background var(--dur), color var(--dur), transform var(--dur);
  transform: translateY(10px);
}
.ch-card:hover .ch-card__action { transform: translateY(0); }
.ch-card__action:nth-child(2) { transition-delay: .04s; }
.ch-card__action:hover { background: var(--terra); color: var(--white); }

/* Card body */
.ch-card__body {
  padding: 16px 16px 10px;
  flex: 1;
  display: flex; flex-direction: column;
}
.ch-card__cat {
  font-family: var(--f-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 5px;
}
.ch-card__title {
  font-family: var(--f-head);
  font-size: 15px;
  color: var(--brown);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.ch-card__title a { color: inherit; text-decoration: none; }
.ch-card__title a:hover { color: var(--terra); }
.ch-card__price {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: auto;
}
.ch-card__price-current {
  font-family: var(--f-body);
  font-size: 17px; font-weight: 700;
  color: var(--terra);
}
.ch-card__price-original {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--txt-muted);
  text-decoration: line-through;
}

/* Add-to-cart footer */
.ch-card__foot {
  padding: 0 16px 16px;
}
.ch-card__atc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 10px;
  background: var(--cream-dk);
  color: var(--brown);
  font-family: var(--f-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  border: none;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background var(--dur), color var(--dur);
}
.ch-card__atc:hover { background: var(--terra); color: var(--white); }

/* ══════════════════════════════════════════════
   16. FILTER TABS
   ══════════════════════════════════════════════ */
.ch-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.ch-filter-btn {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--txt-muted);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.ch-filter-btn:hover,
.ch-filter-btn.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

/* ══════════════════════════════════════════════
   17. SERVICES STRIP
   ══════════════════════════════════════════════ */
.ch-services {
  background: var(--brown);
  padding: 50px 0;
}
.ch-services__grid {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.ch-service {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.ch-service:last-child { border-right: none; }
.ch-service i {
  display: block;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 14px;
}
.ch-service h4 {
  font-family: var(--f-body);
  font-size: 14px; font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.ch-service p {
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin: 0;
}

/* ══════════════════════════════════════════════
   18. BLOG CARDS
   ══════════════════════════════════════════════ */
.ch-post {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ch-post:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.ch-post__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.ch-post__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.ch-post:hover .ch-post__img img { transform: scale(1.06); }
.ch-post__body { padding: 22px; }
.ch-post__date {
  font-family: var(--f-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 10px;
}
.ch-post__title {
  font-size: 18px;
  margin-bottom: 14px;
  line-height: 1.3;
}
.ch-post__title a { color: var(--brown); }
.ch-post__title a:hover { color: var(--terra); }
.ch-post__link {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--terra);
  display: inline-flex; align-items: center; gap: 6px;
}
.ch-post__link i { transition: transform var(--dur) var(--ease); }
.ch-post:hover .ch-post__link i { transform: translateX(5px); }

/* ══════════════════════════════════════════════
   19. NEWSLETTER
   ══════════════════════════════════════════════ */
.ch-newsletter {
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dk) 100%);
  padding: 64px 0;
  text-align: center;
}
.ch-newsletter h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 10px;
}
.ch-newsletter p {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.ch-newsletter__form {
  display: flex;
  max-width: 460px;
  margin: auto;
  border-radius: var(--r-pill);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.ch-newsletter__form input {
  flex: 1;
  padding: 16px 22px;
  border: none;
  background: var(--white);
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--txt);
  outline: none;
}
.ch-newsletter__form input::placeholder { color: var(--txt-muted); }
.ch-newsletter__form button {
  padding: 0 28px;
  background: var(--brown);
  color: var(--white);
  border: none;
  font-family: var(--f-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: background var(--dur);
}
.ch-newsletter__form button:hover { background: rgba(46,28,16,.8); }

/* ══════════════════════════════════════════════
   20. FOOTER
   ══════════════════════════════════════════════ */
.ch-footer {
  background: var(--brown);
  padding-top: 72px;
  font-family: var(--f-body);
}
.ch-footer__grid {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.ch-footer__brand p {
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.ch-footer__call {
  font-size: 13px; font-weight: 600;
  color: var(--gold-lt);
  display: flex; align-items: center; gap: 8px;
}
.ch-footer__call a { color: var(--gold-lt); }
.ch-footer h5 {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}
.ch-footer__links li + li { margin-top: 10px; }
.ch-footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color var(--dur), padding-left var(--dur);
  display: inline-block;
}
.ch-footer__links a:hover { color: var(--gold-lt); padding-left: 4px; }
.ch-footer__contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.ch-footer__contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.ch-footer__bottom {
  max-width: 1280px; margin: auto; padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.ch-footer__copy {
  font-size: 12px; color: rgba(255,255,255,.4); margin: 0;
}
.ch-footer__copy a { color: var(--gold-lt); }
.ch-footer__payments {
  height: 26px; opacity: .5;
  filter: brightness(0) invert(1);
}

/* ══════════════════════════════════════════════
   21. SHOP / SIDEBAR
   ══════════════════════════════════════════════ */
.ch-sidebar { position: sticky; top: 110px; }
.ch-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 22px;
}
.ch-widget__title {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brown); margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.ch-widget ul { }
.ch-widget ul li + li { border-top: 1px dashed var(--cream-dk); }
.ch-widget ul li a {
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 13px; color: var(--txt-muted);
  transition: color var(--dur), padding-left var(--dur);
}
.ch-widget ul li a:hover { color: var(--terra); padding-left: 4px; }
.ch-widget ul li ul { padding-left: 14px; }

/* Price range output */
.ch-price-range-val {
  display: flex; justify-content: space-between;
  font-family: var(--f-body);
  font-size: 13px; font-weight: 600;
  color: var(--brown); margin-top: 12px;
}

/* Recent product mini card */
.ch-recent-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--cream-dk);
}
.ch-recent-item:last-child { border-bottom: none; }
.ch-recent-item img {
  width: 54px; height: 54px;
  object-fit: cover;
  border-radius: var(--r-sm); flex-shrink: 0;
}
.ch-recent-item a {
  font-size: 13px; font-weight: 600;
  color: var(--brown); display: block; margin-bottom: 3px;
}
.ch-recent-item span {
  font-size: 12px; font-weight: 700; color: var(--terra);
}

/* Shop top bar */
.ch-shop-bar {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin-bottom: 24px;
}
.ch-shop-bar select {
  font-family: var(--f-body);
  font-size: 13px; color: var(--txt);
  border: 1px solid var(--border);
  background: var(--cream);
  padding: 7px 12px;
  border-radius: var(--r-pill);
  cursor: pointer; outline: none;
  margin-left: 8px;
}
.ch-shop-bar__count {
  font-size: 13px; color: var(--txt-muted);
  font-family: var(--f-body);
}
.ch-view-btn {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--txt-muted);
  margin-left: 4px;
  transition: all var(--dur);
}
.ch-view-btn:hover, .ch-view-btn.active {
  background: var(--terra); border-color: var(--terra); color: var(--white);
}

/* ══════════════════════════════════════════════
   22. CART & CHECKOUT
   ══════════════════════════════════════════════ */
/* Form inputs */
.ch-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--txt);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.ch-input:focus {
  border-color: var(--terra);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196,113,75,.1);
}
.ch-label {
  display: block;
  font-family: var(--f-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--brown); margin-bottom: 7px;
}
.ch-form-row { margin-bottom: 20px; }

/* Cart table */
.ch-cart-table { width: 100%; border-collapse: collapse; }
.ch-cart-table thead th {
  padding: 12px 16px;
  font-family: var(--f-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--txt-muted);
  background: var(--cream-dk);
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.ch-cart-table tbody td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--cream-dk);
  vertical-align: middle;
}
.ch-cart-table .product-img {
  width: 72px; height: 72px;
  object-fit: cover; border-radius: var(--r-md);
}
.ch-cart-table .product-name {
  font-family: var(--f-head); font-size: 15px; color: var(--brown);
}
.ch-cart-table .product-name a { color: inherit; }
.ch-cart-table .unit-price { font-weight: 600; font-size: 15px; }
.ch-cart-table .row-total { font-weight: 700; color: var(--terra); font-size: 15px; }

/* Cart totals panel */
.ch-totals {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
}
.ch-totals h3 {
  font-size: 17px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.ch-totals-row {
  display: flex; justify-content: space-between;
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--cream-dk);
}
.ch-totals-row:last-of-type {
  border: none; font-weight: 700; font-size: 16px; color: var(--brown);
}
.ch-coupon-form {
  display: flex; gap: 8px; margin-bottom: 20px;
}
.ch-coupon-form input {
  flex: 1; padding: 11px 16px;
  font-family: var(--f-body); font-size: 13px;
  border: 1.5px solid var(--border); border-radius: var(--r-pill);
  outline: none; transition: border-color var(--dur);
}
.ch-coupon-form input:focus { border-color: var(--terra); }

/* ══════════════════════════════════════════════
   23. AUTH PAGES
   ══════════════════════════════════════════════ */
.ch-auth-wrap {
  min-height: 80vh;
  display: flex; align-items: center;
  background: var(--cream); padding: 60px 0;
}
.ch-auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px;
  max-width: 460px; width: 100%;
  margin: auto;
  box-shadow: var(--sh-md);
}
.ch-auth-card h2 { text-align: center; margin-bottom: 6px; }
.ch-auth-card .sub {
  text-align: center; font-size: 14px;
  color: var(--txt-muted); margin-bottom: 32px;
}

/* ══════════════════════════════════════════════
   24. MODALS (Quick view)
   ══════════════════════════════════════════════ */
.ch-modal .modal-content {
  border: none;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.ch-modal .modal-header {
  background: var(--cream-dk);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}
.ch-modal .modal-header .modal-title {
  font-family: var(--f-head);
  font-size: 18px; color: var(--brown);
}
.ch-modal .close {
  color: var(--brown); opacity: 1; font-size: 22px;
}

/* ══════════════════════════════════════════════
   25. ALERT / PAGINATION
   ══════════════════════════════════════════════ */
.pagination .page-item .page-link {
  font-family: var(--f-body); font-size: 13px;
  color: var(--txt-muted);
  border-color: var(--border);
}
.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

/* ══════════════════════════════════════════════
   26. RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ch-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ch-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .ch-hamburger { display: flex; }
  /* Nav collapses */
  .ch-nav__list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--sh-lg);
    z-index: 9999;
    padding: 8px 0;
  }
  .ch-nav__list.open { display: flex; }
  .ch-nav__inner { position: relative; }
  .ch-nav__item { width: 100%; }
  .ch-nav__item > a {
    padding: 12px 20px !important;
    border-bottom: 1px solid var(--cream-dk) !important;
    border-bottom-width: 1px !important;
  }
  .ch-nav__drop {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none;
    background: var(--cream); padding: 4px 0;
    display: none; pointer-events: auto;
  }
  .ch-nav__drop.open { display: block; }
  .ch-nav__drop li a { padding-left: 32px; }

  /* Search collapses to mobile bar */
  .ch-search { display: none; }
  .ch-mobile-search { display: block; padding: 12px 24px; border-top: 1px solid var(--border); }
  .ch-mobile-search .ch-search { display: flex; }

  .ch-promise__grid { grid-template-columns: repeat(2, 1fr); }
  .ch-hero__slide { min-height: 400px; }
  .ch-hero__title { font-size: 34px !important; }
}

@media (max-width: 767px) {
  .ch-section { padding: 56px 0; }
  .ch-hero__slide { min-height: 280px; }
  .ch-hero__title { font-size: 26px !important; }
  .ch-hero__sub { display: none; }
  .ch-hero__body { padding: 50px 20px; }
  .ch-promise__grid { grid-template-columns: 1fr 1fr; }
  .ch-footer__grid { grid-template-columns: 1fr; }
  .ch-footer__bottom { flex-direction: column; text-align: center; }
  .ch-services__grid { grid-template-columns: 1fr 1fr; }
  .ch-auth-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .ch-promise__grid { grid-template-columns: 1fr; }
  .ch-topbar__left { display: none; }
  .ch-services__grid { grid-template-columns: 1fr; }
}
