/* ============================================================
   PIK & LB New Dawn Integrated Agro & Aquaculture Enterprise
   Gomoa Eastern, Ghana
   Main Stylesheet — Inter-based professional e-commerce UI
   ============================================================ */

/* 2. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --brand:        #1a3d2b;
  --brand-mid:    #2a5c42;
  --brand-light:  #3d7a57;
  --brand-pale:   #eef5f1;

  /* Accent */
  --accent:       #b88a3d;
  --accent-dark:  #986e2e;
  --accent-pale:  #f8f1e3;

  /* Neutrals */
  --white:        #ffffff;
  --bg:           #f5f5f5;
  --card:         #ffffff;
  --border:       #e2e2e2;
  --border-mid:   #c8c8c8;

  /* Text */
  --text:         #1a1a1a;
  --text-mid:     #4a4a4a;
  --text-muted:   #767676;
  --text-light:   #a8a8a8;

  /* Status */
  --success:      #27ae60;
  --danger:       #e74c3c;
  --info:         #2980b9;

  /* Typography */
  --font:         -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;

  /* Border Radius */
  --r-xs:         3px;
  --r-sm:         6px;
  --r-md:         10px;
  --r-lg:         14px;
  --r-xl:         50px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.16);

  /* Transition */
  --t:            .2s ease;
}


/* 3. RESET + BASE STYLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip; /* prevents horizontal scroll without breaking sticky */
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font);
  cursor: pointer;
}

input, select, textarea {
  font-family: var(--font);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}


/* 4. TYPOGRAPHY
   ============================================================ */
h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h2 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h3 { font-size: 1.1rem; }
h4 { font-size: .95rem; }
h5 { font-size: .85rem; }
h6 { font-size: .78rem; }

p { line-height: 1.7; }

small { font-size: .8rem; }

.text-sm  { font-size: .82rem; }
.text-xs  { font-size: .72rem; }
.fw-600   { font-weight: 600; }
.fw-700   { font-weight: 700; }


/* 5. LAYOUT: CONTAINER + SECTION
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

.section {
  padding: 3rem 0;
}

.section-sm {
  padding: 1.75rem 0;
}


/* 6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 600;
  line-height: 1;
  padding: .6rem 1.25rem;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t), transform var(--t);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: middle;
}

.btn:active { transform: scale(.97); }

/* Primary — brand green */
.btn-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-mid);
  border-color: var(--brand-mid);
  color: var(--white);
}

/* Accent — amber/gold */
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
}

/* White */
.btn-white {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--brand-pale);
  color: var(--brand);
  border-color: var(--brand-pale);
}

/* Danger */
.btn-danger {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}
.btn-danger:hover {
  background: #c0392b;
  border-color: #c0392b;
  color: var(--white);
}

/* Sizes */
.btn-sm {
  font-size: .75rem;
  padding: .4rem .85rem;
}

.btn-lg {
  font-size: .95rem;
  padding: .8rem 1.75rem;
}

.btn-block {
  display: flex;
  width: 100%;
}


/* 6B. STOREFRONT SHELL
   ============================================================ */
.login-pop-banner {
  display: none;
  background: linear-gradient(135deg, #0f2a1d 0%, #1a3d2b 68%, #2b5c42 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.login-pop-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .72rem 0;
}

.login-pop-banner__brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
  color: #fff;
  font-weight: 600;
}

.login-pop-banner__brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  padding: .3rem;
  flex-shrink: 0;
}

.login-pop-banner__brand span {
  font-size: .9rem;
  line-height: 1.35;
}

.login-pop-banner__actions {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}

.login-pop-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 .95rem;
  border-radius: 999px;
  background: #f5c842;
  color: #1a1a1a;
  font-size: .82rem;
  font-weight: 800;
}

.login-pop-banner__close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
}

@media (max-width: 720px) {
  .login-pop-banner__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .login-pop-banner__actions {
    width: 100%;
    justify-content: space-between;
  }
}
.store-topline {
  border-bottom: 1px solid #ece6d8;
  background: #fffefb;
}

.store-topline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  font-size: .73rem;
  color: #66736a;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 250, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(222, 216, 201, .88);
}

.store-header-main {
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: .95rem 0;
}

.store-brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  color: #183828;
  font-weight: 800;
}

.store-brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, #f0f5e7, #fefcf6);
  border: 1px solid #e3e9d7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #77a633;
  font-size: 1.3rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88);
}

.store-brand-copy strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.store-brand-copy span {
  display: block;
  margin-top: .16rem;
  font-size: .68rem;
  color: #86917f;
  font-weight: 600;
}

.store-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  justify-content: center;
}

.store-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: #1b2e22;
  font-size: .86rem;
  font-weight: 600;
  padding: .65rem 0;
}

.store-nav-item.is-active {
  color: var(--brand);
}

.store-nav-item.has-panel:hover .store-mega-panel,
.store-nav-item.has-panel.is-open .store-mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.store-mega-panel {
  position: absolute;
  left: 50%;
  top: calc(100% + .6rem);
  transform: translateX(-50%) translateY(10px);
  min-width: 680px;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,.98);
  border: 1px solid #ece4d3;
  box-shadow: 0 20px 40px rgba(19, 49, 34, .14);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.store-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}

.store-panel-card {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .68rem;
  border-radius: 16px;
  background: #fcfbf7;
  border: 1px solid #f0eadc;
}

.store-panel-card img {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  object-fit: cover;
  background: #f4f5ef;
  flex-shrink: 0;
}

.store-panel-card strong {
  display: block;
  font-size: .8rem;
  color: #183828;
  line-height: 1.2;
  margin-bottom: .16rem;
}

.store-panel-card span {
  display: block;
  font-size: .66rem;
  color: #7e887d;
  line-height: 1.35;
}

.store-panel-footer {
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid #eee6d8;
}

.store-search {
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-search-box {
  position: relative;
  width: min(100%, 320px);
}

.store-search-box input {
  width: 100%;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #e3decf;
  background: #fff;
  padding: 0 2.8rem 0 1rem;
  font-size: .82rem;
  color: #183828;
}

.store-search-submit {
  position: absolute;
  right: .95rem;
  top: 50%;
  transform: translateY(-50%);
  color: #2f7d46;
  font-size: 1rem;
  border: none;
  background: transparent;
  padding: 0;
  width: 24px;
  height: 24px;
}

.store-header-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  justify-content: flex-end;
}

.store-link-btn,
.store-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  color: #152a1d;
  font-size: .82rem;
  font-weight: 600;
  background: transparent;
}

.store-link-btn {
  padding: .7rem 1rem;
}

.store-link-btn.store-link-btn-primary {
  background: #163b2b;
  color: #fff;
  padding: .78rem 1.25rem;
}

.store-icon-btn {
  width: 42px;
  height: 42px;
  position: relative;
}

.store-icon-btn.is-active {
  background: #eef5f1;
  color: var(--brand);
}

.store-icon-badge {
  position: absolute;
  top: .2rem;
  right: .18rem;
  min-width: 18px;
  height: 18px;
  padding: 0 .3rem;
  border-radius: 999px;
  background: #163b2b;
  color: #fff;
  font-size: .62rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* 7. BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .2rem .55rem;
  border-radius: var(--r-xs);
  line-height: 1;
}

.badge-green {
  background: #e8f5ee;
  color: #1a8c4e;
}

.badge-gold {
  background: var(--accent-pale);
  color: var(--accent-dark);
}

.badge-red {
  background: #fde8e8;
  color: #c0392b;
}

.badge-gray {
  background: #f0f0f0;
  color: var(--text-muted);
}


/* 8. FORMS
   ============================================================ */
.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: .35rem;
}

.form-control {
  width: 100%;
  padding: .55rem .85rem;
  font-size: .88rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(26,61,43,.1);
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
  padding: .65rem .85rem;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23767676' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.2rem;
}

.form-text {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .3rem;
}

.form-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  cursor: pointer;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
  cursor: pointer;
}


/* 9. ALERTS
   ============================================================ */
.alert {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .85rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: .85rem;
  line-height: 1.55;
  border-left: 4px solid transparent;
  margin-bottom: 1rem;
}

.alert-info {
  background: #e8f4fc;
  border-color: var(--info);
  color: #1a5a87;
}

.alert-success {
  background: #eafaf1;
  border-color: var(--success);
  color: #1a7a40;
}

.alert-error {
  background: #fde8e8;
  border-color: var(--danger);
  color: #962d2d;
}


/* 10. TOP BAR — hidden globally
   ============================================================ */
.top-bar {
  display: none;
}


/* 11. NAVBAR
   ============================================================ */

/* Hidden checkbox powers CSS hamburger */
.nav-toggle {
  display: none;
}

.navbar {
  background: var(--brand);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}

.navbar .container {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 1rem;
}

/* Brand / Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-monogram {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: .05rem;
}

.brand-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.brand-sub {
  font-size: .62rem;
  color: rgba(255,255,255,.6);
  line-height: 1.2;
}

/* Desktop Search Bar */
.navbar-search {
  flex: 1;
  max-width: 480px;
  display: flex;
}

.navbar-search input {
  flex: 1;
  height: 38px;
  border: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  padding: 0 1rem;
  font-size: .88rem;
  font-family: var(--font);
  outline: none;
  color: var(--text);
}

.navbar-search input::placeholder {
  color: var(--text-light);
}

.navbar-search button {
  height: 38px;
  padding: 0 1rem;
  background: #b4893d;
  color: var(--white);
  border: none;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background var(--t);
  white-space: nowrap;
}

.navbar-search button:hover {
  background: #986e2e;
}

/* Navbar Action Icons */
.navbar-actions {
  display: flex;
  gap: .5rem;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
  justify-content: flex-end;
}

.nav-auth-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .62rem .92rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: .8rem;
  white-space: nowrap;
  transition: all var(--t);
}

.nav-auth-link.signin {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}

.nav-auth-link.signup {
  color: var(--white);
  background: linear-gradient(135deg, #b88a3d 0%, #986e2e 100%);
  border: 1px solid rgba(184,138,61,.45);
}

.nav-auth-link:hover {
  transform: translateY(-1px);
  color: var(--white);
}

.nav-account-btn {
  min-height: 44px;
}

.nav-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  color: var(--white);
  padding: .45rem .72rem;
  border-radius: var(--r-sm);
  font-size: .72rem;
  font-weight: 700;
  transition: background var(--t);
  position: relative;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  min-height: 44px;
}

.nav-icon-btn > span:first-child {
  font-size: 1.2rem;
  line-height: 1;
}

.nav-icon-btn:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

.nav-icon {
  font-size: 1.3rem;
  line-height: 1;
}

/* Cart / notification badge */
.nav-badge,
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  width: 17px;
  height: 17px;
  font-size: .55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-cart-badge {
  position: relative;
}

/* Hide cart link in nav-menu on desktop (icon in navbar-actions serves this purpose) */
@media (min-width: 769px) {
  li:has(a.nav-cart-badge) { display: none; }
}

/* CSS Hamburger */
.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  margin-left: .25rem;
}

.nav-toggle-label span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}

/* Animate hamburger to X when checked */
.nav-toggle:checked ~ * .nav-toggle-label span:nth-child(1),
.nav-toggle:checked + .navbar .nav-toggle-label span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle:checked ~ * .nav-toggle-label span:nth-child(2),
.nav-toggle:checked + .navbar .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}
.nav-toggle:checked ~ * .nav-toggle-label span:nth-child(3),
.nav-toggle:checked + .navbar .nav-toggle-label span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .1rem;
  flex-shrink: 0;
}

.nav-link {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: .4rem .7rem;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.nav-mobile-auth-row {
  display: none;
}

.nav-mobile-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 1rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .01em;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}

.nav-mobile-auth-btn.signin {
  border: 2px solid rgba(255,255,255,.78);
  color: #fff;
  background: rgba(255,255,255,.03);
}

.nav-mobile-auth-btn.signup {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(152,110,46,.28);
}

.nav-mobile-auth-btn:hover {
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--r-sm);
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
}

/* Mobile search bar rendered below nav */
.navbar-search-mobile {
  display: none;
  background: var(--brand-mid);
  padding: .6rem 1.25rem;
}

.navbar-search-mobile form {
  display: flex;
  max-width: 100%;
}

.navbar-search-mobile input {
  flex: 1;
  height: 36px;
  border: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  padding: 0 .85rem;
  font-size: .85rem;
  font-family: var(--font);
  outline: none;
}

.navbar-search-mobile button {
  height: 36px;
  padding: 0 .85rem;
  background: #b4893d;
  color: var(--white);
  border: none;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .8rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
}


/* 12. CATEGORY NAV BAR
   ============================================================ */
.cat-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cat-nav::-webkit-scrollbar {
  display: none;
}

.cat-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  padding: 0 1.25rem;
}

.cat-nav-link {
  padding: .6rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-mid);
  border-bottom: 2px solid transparent;
  display: inline-block;
  transition: color var(--t), border-color var(--t);
  text-decoration: none;
}

.cat-nav-link:hover,
.cat-nav-link.active {
  color: var(--brand);
  border-color: var(--brand);
}

.cat-nav-link.is-disabled,
.footer a.is-disabled,
.home-category-tile.is-disabled,
.product-category-link.is-disabled {
  opacity: .45;
  pointer-events: none;
  cursor: default;
}

.home-category-tile.is-disabled {
  filter: grayscale(.12);
}


/* 13. PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  background: var(--brand);
  padding: 2rem 0;
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
}

.page-banner p {
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  margin-top: .4rem;
}

.breadcrumb {
  display: flex;
  gap: .4rem;
  align-items: center;
  margin-top: .5rem;
  font-size: .78rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,.6);
  transition: color var(--t);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255,255,255,.3);
}


/* 14. HERO BANNER
   ============================================================ */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--brand);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,61,43,.88) 0%, rgba(26,61,43,.45) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
  max-width: 560px;
}

.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .3rem .8rem;
  border-radius: var(--r-sm);
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: .75rem;
}

.hero p {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}


/* 15. TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-top: 3px solid var(--brand);
  border-bottom: 1px solid var(--border);
  padding: .85rem 0;
}

.trust-strip .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.trust-strip .container::-webkit-scrollbar {
  display: none;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem 1.5rem;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-item:last-child {
  border-right: none;
}

.t-icon {
  font-size: 1.4rem;
}

.t-text {
  display: flex;
  flex-direction: column;
  gap: .05rem;
}

.t-text strong {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
}

.t-text span {
  font-size: .68rem;
  color: var(--text-muted);
}


/* 16. SECTION HEADER
   ============================================================ */
.section-head {
  margin-bottom: 1.75rem;
}

.section-head .label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .4rem;
}

.section-head h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
}

.section-head p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: .35rem;
}

.section-head-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}


/* 17. CATEGORY QUICK CARDS
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem .75rem;
  text-align: center;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.cat-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.cat-card-icon {
  font-size: 2rem;
  margin-bottom: .5rem;
  display: block;
  line-height: 1;
}

.cat-card-name {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.cat-card-count {
  font-size: .65rem;
  color: var(--text-muted);
  margin-top: .15rem;
}


/* 18. PRODUCT CARDS — compact Jumia-style
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}

.product-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

/* Emoji placeholder when no image */
.product-card-img .product-emoji {
  font-size: 3rem;
  line-height: 1;
}

.product-card-badge {
  position: absolute;
  top: .5rem;
  left: .5rem;
  z-index: 1;
}

.product-card-body {
  padding: .6rem .75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: .2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-unit {
  font-size: .7rem;
  color: var(--text-muted);
  margin-bottom: auto;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin: .35rem 0;
}

.product-price-old {
  font-size: .75rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: .3rem;
  font-weight: 400;
}

.product-card-footer {
  padding: .4rem .75rem .65rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.btn-buy-now {
  display: block;
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  padding: .42rem .5rem;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background var(--t);
  text-decoration: none;
  letter-spacing: .01em;
  text-transform: none !important;
}

.btn-buy-now:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.btn-add-cart {
  display: block;
  width: 100%;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  padding: .42rem;
  font-size: .76rem;
  font-weight: 600;
  font-family: var(--font);
  text-align: center;
  cursor: pointer;
  transition: background var(--t), color var(--t);
  letter-spacing: .01em;
  text-decoration: none;
  text-transform: none !important;
}

.btn.btn-add-cart,
.product-card-footer .btn-add-cart {
  text-transform: none !important;
}

.btn-add-cart:hover {
  background: var(--brand-mid);
  color: var(--white);
}


/* 19. SHOP LAYOUT — sidebar + product grid
   ============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.shop-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  position: sticky;
  top: 80px;
  overflow: hidden;
}

.shop-sidebar-head {
  background: var(--brand);
  color: var(--white);
  padding: .85rem 1.25rem;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sidebar-section {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-section:last-child {
  border-bottom: none;
}

.sidebar-section-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .6rem;
}

.sidebar-list {
  list-style: none;
}

.sidebar-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .38rem 0;
  font-size: .82rem;
  color: var(--text-mid);
  border-bottom: 1px solid #f0f0f0;
  transition: color var(--t);
  text-decoration: none;
}

.sidebar-list li:last-child a {
  border-bottom: none;
}

.sidebar-list li a:hover,
.sidebar-list li a.active {
  color: var(--brand);
  font-weight: 600;
}

.sidebar-count {
  font-size: .68rem;
  color: var(--text-light);
  background: var(--bg);
  padding: .1rem .45rem;
  border-radius: 10px;
}

.shop-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: .65rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

.shop-top-bar .results {
  font-size: .82rem;
  color: var(--text-muted);
}

.shop-top-bar select {
  font-size: .8rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .3rem .6rem;
  color: var(--text-mid);
  font-family: var(--font);
  outline: none;
  cursor: pointer;
}

/* Mobile-only filter controls (hidden on desktop) */
.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-pale);
  border: 1px solid var(--brand);
  border-radius: var(--r-sm);
  padding: .4rem .8rem;
  cursor: pointer;
  font-family: var(--font);
}

details.mobile-filter {
  display: none;
}

details.mobile-filter summary {
  cursor: pointer;
  list-style: none;
}

details.mobile-filter summary::-webkit-details-marker {
  display: none;
}


/* 20. SHOP STRIP — home page horizontal scroll
   ============================================================ */
.shop-strip-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.shop-strip-track::-webkit-scrollbar {
  height: 4px;
}

.shop-strip-track::-webkit-scrollbar-track {
  background: transparent;
}

.shop-strip-track::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.shop-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t), border-color var(--t);
  position: relative;
}

.shop-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.shop-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.shop-card:hover .shop-card-img img {
  transform: scale(1.05);
}

.shop-card-tag {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 1;
}

.shop-card-body {
  padding: .6rem .7rem;
  flex: 1;
}

.shop-card-body h4 {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: .2rem;
}

.shop-card-body p {
  font-size: .68rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card-price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin: .35rem 0;
}

.price-val {
  font-size: .95rem;
  font-weight: 700;
  color: var(--brand);
}

.price-u {
  font-size: .65rem;
  color: var(--text-muted);
}

.shop-card-cta {
  display: block;
  margin: .35rem .7rem .7rem;
  padding: .35rem;
  text-align: center;
  background: var(--brand);
  color: var(--white);
  border-radius: var(--r-sm);
  font-size: .72rem;
  font-weight: 600;
  transition: background var(--t);
  text-decoration: none;
}

.shop-card-cta:hover {
  background: var(--brand-mid);
  color: var(--white);
}

.strip-scroll-hint {
  font-size: .72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: .5rem;
}


/* 21. GALLERY — CSS masonry columns
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.gallery-filter-btn {
  padding: .4rem 1rem;
  font-size: .78rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  color: var(--text-mid);
  background: var(--white);
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  font-family: var(--font);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.gallery-masonry {
  columns: 4;
  column-gap: .75rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: .75rem;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,61,43,0);
  transition: background .25s;
  display: flex;
  align-items: flex-end;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(26,61,43,.45);
}

.gallery-caption {
  padding: .6rem .8rem;
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: all .25s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}


/* 22. ABOUT / EDITORIAL SECTION
   ============================================================ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.editorial-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}

.editorial-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.editorial-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--text);
}

.editorial-content p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: .85rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 1.25rem 0;
}

.stat-item .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand);
  display: block;
  line-height: 1.1;
}

.stat-item .lbl {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-top: .15rem;
  display: block;
}


/* 23. NUMBERS SECTION
   ============================================================ */
.numbers-section {
  background: var(--brand);
  padding: 2.5rem 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.number-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.1);
}

.number-item:last-child {
  border-right: none;
}

.number-item .num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.number-item .lbl {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .3rem;
}


/* 24. TESTIMONIAL
   ============================================================ */
.testimonial-section {
  background: var(--bg);
  padding: 3rem 0;
  text-align: center;
}

.testimonial-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: .82rem;
  font-weight: 700;
  color: var(--brand);
}

.testimonial-role {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .2rem;
}


/* 25. CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--brand);
  padding: 3rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: .6rem;
}

.cta-section p {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}

.cta-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* 26. CART
   ============================================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  align-items: start;
}

.cart-table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px; /* desktop: full 5-col table */
}

.cart-table th {
  background: var(--bg);
  padding: .75rem 1rem;
  text-align: left;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.cart-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid #f5f5f5;
  vertical-align: middle;
  font-size: .88rem;
}

.cart-table tr:last-child td {
  border-bottom: none;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.cart-product-img {
  width: 60px;
  height: 60px;
  border-radius: var(--r-sm);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  overflow: hidden;
}

.cart-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-product-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}

.cart-product-meta {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .15rem;
}

/* Quantity +/- controls */
.qty-control {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.qty-control a,
.qty-control button {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--text-mid);
  transition: background var(--t), color var(--t), border-color var(--t);
  text-decoration: none;
  background: none;
  cursor: pointer;
  font-family: var(--font);
}

.qty-control a:hover,
.qty-control button:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.qty-control .qty {
  font-weight: 700;
  font-size: .88rem;
  min-width: 24px;
  text-align: center;
}

/* Cart Summary (sticky sidebar) */
.cart-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem;
  position: sticky;
  top: 80px;
}

.cart-summary h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  font-size: .88rem;
  border-bottom: 1px solid #f5f5f5;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row.total {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand);
  border-top: 2px solid var(--border);
  margin-top: .25rem;
  padding-top: .75rem;
  border-bottom: none;
}

/* Order confirmation box */
.order-confirm-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 560px;
  margin: 2rem auto;
}

.order-confirm-box .confirm-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.order-confirm-box h2 {
  color: var(--brand);
  margin-bottom: .5rem;
}

.order-confirm-box p {
  color: var(--text-muted);
  font-size: .9rem;
}


/* 27. CHECKOUT
   ============================================================ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  align-items: start;
}

.form-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.form-section h3 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
}


/* 28. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info-panel {
  background: var(--brand);
  border-radius: var(--r-lg);
  padding: 2rem;
  color: var(--white);
  position: sticky;
  top: 80px;
}

.contact-info-panel h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.ci-item {
  display: flex;
  gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  align-items: flex-start;
}

.ci-item:last-child {
  border-bottom: none;
}

.ci-icon {
  font-size: 1.1rem;
  margin-top: .05rem;
  flex-shrink: 0;
}

.ci-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: .2rem;
}

.ci-value {
  font-size: .85rem;
  color: rgba(255,255,255,.9);
  line-height: 1.55;
}

.ci-value a {
  color: rgba(255,255,255,.9);
  transition: color var(--t);
}

.ci-value a:hover {
  color: var(--white);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}

.contact-form-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}


/* 29. ACCOUNT PAGES
   ============================================================ */
.account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.account-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  position: sticky;
  top: 80px;
}

.account-sidebar-header {
  background: var(--brand);
  padding: 1.25rem;
  color: var(--white);
}

.account-user-name {
  font-weight: 700;
  font-size: .95rem;
}

.account-user-email {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  margin-top: .2rem;
}

.account-nav a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1.25rem;
  font-size: .83rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: all var(--t);
  text-decoration: none;
}

.account-nav li:last-child a {
  border-bottom: none;
}

.account-nav a:hover,
.account-nav a.active {
  background: var(--brand-pale);
  color: var(--brand);
  font-weight: 600;
}

.account-nav a .icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.account-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.account-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: .85rem;
}

.order-row:last-child {
  border-bottom: none;
}

.order-status {
  display: inline-flex;
  align-items: center;
  padding: .2rem .6rem;
  border-radius: 10px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.status-pending {
  background: #fff7e6;
  color: #d4780a;
}

.status-confirmed {
  background: #e8f5ee;
  color: #1a8c4e;
}

.status-delivered {
  background: #e6f0ff;
  color: #1a5cbf;
}


/* 30. AUTH PAGES — login / register
   ============================================================ */
.auth-page {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 2rem 0;
}

.auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-md);
}

.auth-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.auth-card > p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
  color: var(--text-muted);
  font-size: .78rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-footer {
  text-align: center;
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

.auth-footer a {
  color: var(--brand);
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}


/* 31. FOOTER
   ============================================================ */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,.75);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: .75rem;
}

.footer-brand p {
  font-size: .78rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}

.social-link {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  transition: background var(--t), color var(--t);
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent);
  color: var(--white);
}

.footer-col h5 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: .5rem;
}

.footer-col ul li a {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  transition: color var(--t);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  gap: .75rem;
  margin-bottom: .75rem;
  align-items: flex-start;
}

.footer-contact-item .ico {
  font-size: .9rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: .1rem;
}

.footer-contact-item p {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}

.footer-contact-item a {
  color: rgba(255,255,255,.55);
  transition: color var(--t);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom a {
  color: rgba(255,255,255,.35);
  transition: color var(--t);
}

.footer-bottom a:hover {
  color: var(--white);
}


/* 32. WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: var(--white);
  padding: .65rem 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  color: var(--white);
}

.wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.wa-text {
  display: flex;
  flex-direction: column;
  gap: .05rem;
}

.wa-text .line1 {
  font-size: .68rem;
  opacity: .8;
}

.wa-text .line2 {
  font-size: .78rem;
  font-weight: 700;
}


/* 33. UTILITY CLASSES
   ============================================================ */
.text-center   { text-align: center; }
.text-right    { text-align: right; }
.text-left     { text-align: left; }
.text-brand    { color: var(--brand); }
.text-accent   { color: var(--accent); }
.text-muted    { color: var(--text-muted); }
.text-danger   { color: var(--danger); }
.text-success  { color: var(--success); }
.text-white    { color: var(--white); }

.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.pt-1 { padding-top: .5rem; }
.pt-2 { padding-top: 1rem; }
.pb-1 { padding-bottom: .5rem; }
.pb-2 { padding-bottom: 1rem; }

.d-flex         { display: flex; }
.d-block        { display: block; }
.d-none         { display: none; }
.d-grid         { display: grid; }

.align-center   { align-items: center; }
.align-start    { align-items: flex-start; }
.justify-between{ justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap      { flex-wrap: wrap; }

.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.bg-white       { background: var(--white); }
.bg-brand-pale  { background: var(--brand-pale); }
.bg-accent-pale { background: var(--accent-pale); }
.bg-gray        { background: var(--bg); }
.bg-brand       { background: var(--brand); }

.rounded        { border-radius: var(--r-md); }
.rounded-lg     { border-radius: var(--r-lg); }
.rounded-sm     { border-radius: var(--r-sm); }

.w-100          { width: 100%; }
.h-100          { height: 100%; }

.border-top     { border-top: 1px solid var(--border); }
.border-bottom  { border-bottom: 1px solid var(--border); }

.overflow-hidden    { overflow: hidden; }
.position-relative  { position: relative; }

.img-fluid   { max-width: 100%; height: auto; }
.object-cover{ object-fit: cover; }


/* 34. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- 1024px: Tablet landscape ---- */
@media (max-width: 1024px) {

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .gallery-masonry {
    columns: 3;
  }

  .contact-layout {
    grid-template-columns: 280px 1fr;
  }
}


/* ---- 768px: Tablet portrait ---- */
@media (max-width: 768px) {

  .store-topline {
    display: none;
  }

  .store-header-main {
    grid-template-columns: 1fr auto;
    gap: .85rem;
  }

  .store-nav,
  .store-search {
    display: none;
  }

  /* Navbar: hide desktop search, show hamburger label */
  .navbar .navbar-search {
    display: none;
  }

  .navbar .container {
    position: relative;
    gap: .55rem;
    justify-content: space-between;
    padding-right: .9rem;
  }

  .navbar-brand {
    min-width: 0;
    margin-right: auto;
    flex: 1 1 auto;
    overflow: hidden;
    gap: .58rem;
  }

  .brand-monogram,
  .brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .navbar-brand .brand-text {
    min-width: 0;
  }

  .navbar-brand .brand-name {
    font-size: .96rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .navbar-brand .brand-sub {
    font-size: .62rem;
    letter-spacing: .08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .navbar-search-mobile {
    display: block;
  }

  .nav-toggle-label {
    display: flex;
    margin-left: .35rem;
    margin-right: 0;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
  }

  .navbar-actions {
    margin-left: auto;
    padding-left: .35rem;
    justify-content: flex-end;
    gap: .3rem;
    flex-shrink: 0;
  }

  .nav-icon-btn {
    min-width: 34px;
    padding: .2rem .36rem;
  }

  .navbar-actions .nav-icon-btn:first-child {
    display: none;
  }

  .navbar-actions .nav-auth-link,
  .navbar-actions .nav-account-btn {
    display: none;
  }

  .navbar-actions .nav-icon-btn:last-child {
    padding-right: .15rem;
  }

  .navbar-actions .nav-icon-btn > span:first-child {
    font-size: 1.05rem;
    line-height: 1;
  }

  .nav-badge,
  .cart-count {
    top: -2px;
    right: 0;
  }

  /* Mobile dropdown menu */
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--brand);
    flex-direction: column;
    align-items: stretch;
    padding: .9rem .9rem 1.1rem;
    z-index: 200;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    gap: .2rem;
  }

  .nav-toggle:checked ~ .navbar .nav-menu,
  .nav-toggle:checked + .navbar .nav-menu {
    display: flex;
  }

  .nav-link {
    padding: .7rem .8rem;
    border-radius: 16px;
    font-size: 1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .nav-menu > li {
    list-style: none;
  }

  .nav-menu > li:last-child:not(.nav-mobile-auth-row) {
    margin-bottom: .2rem;
  }

  .nav-menu .nav-cta {
    display: none;
  }

  .nav-mobile-auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    margin-top: .95rem;
    padding-top: .35rem;
  }

  /* Products: 2 columns on tablet */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }

  /* Shop layout: stack, hide sidebar */
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    display: none;
  }

  details.mobile-filter {
    display: block;
  }

  .filter-toggle-btn {
    display: flex;
  }

  /* Cart: stack layout */
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  /* Cart table: 3-col on mobile — hide Price (col 2) and Subtotal (col 4) */
  .cart-table-wrap {
    overflow-x: visible;
  }

  .cart-table {
    min-width: 0;
    width: 100%;
  }

  .cart-table th:nth-child(2),
  .cart-table td:nth-child(2),
  .cart-table th:nth-child(4),
  .cart-table td:nth-child(4) {
    display: none;
  }

  .cart-table th,
  .cart-table td {
    padding: .65rem .6rem;
  }

  /* Show unit price inline under product name on mobile */
  .cart-product-name::after {
    content: attr(data-price);
    display: block;
    font-size: .72rem;
    color: var(--brand);
    font-weight: 700;
    margin-top: .1rem;
  }

  /* Tighter product image */
  .cart-product-img {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .cart-product {
    gap: .6rem;
  }

  /* Qty controls: slightly smaller */
  .qty-control a,
  .qty-control button {
    width: 28px;
    height: 28px;
  }

  /* Checkout: stack */
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  /* Contact: stack */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    position: static;
  }

  /* Account: stack */
  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    position: static;
  }

  /* Editorial: stack */
  .editorial {
    grid-template-columns: 1fr;
  }

  /* Category grid */
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Numbers: 2 columns */
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .number-item:nth-child(2) {
    border-right: none;
  }

  /* Hero */
  .hero {
    min-height: 320px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-masonry {
    columns: 2;
  }

  /* Section padding */
  .section {
    padding: 2rem 0;
  }

  /* Form row: single column */
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ---- 480px: Mobile ---- */
@media (max-width: 480px) {

  .container {
    padding: 0 .85rem;
  }

  .section {
    padding: 1.75rem 0;
  }

  /* Products: 2 cols, smaller gaps */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
  }

  .product-card-body {
    padding: .5rem .6rem;
  }

  .product-card-body h3 {
    font-size: .78rem;
  }

  .product-price {
    font-size: .92rem;
  }

  .btn-add-cart {
    font-size: .72rem;
    padding: .38rem;
  }

  /* Category grid */
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
  }

  .cat-card {
    padding: .85rem .4rem;
  }

  .cat-card-icon {
    font-size: 1.5rem;
  }

  .cat-card-name {
    font-size: .7rem;
  }

  /* Numbers */
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .number-item .num {
    font-size: 1.5rem;
  }

  .number-item .lbl {
    font-size: .6rem;
  }

  .numbers-section {
    padding: 1.75rem 0;
  }

  /* Shop strip cards */
  .shop-card {
    flex: 0 0 150px;
  }

  /* Gallery */
  .gallery-masonry {
    columns: 2;
  }

  /* Editorial */
  .editorial {
    gap: 1.5rem;
  }

  /* Hero */
  .hero {
    min-height: 280px;
  }

  .hero-inner {
    padding: 2rem 0;
  }

  /* WhatsApp float: icon only */
  .whatsapp-float .wa-text {
    display: none;
  }

  .whatsapp-float {
    border-radius: 50%;
    padding: .75rem;
  }

  /* Footer: 2-col with brand spanning full width */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer {
    padding-top: 2rem;
  }

  /* Page banner */
  .page-banner {
    padding: 1.5rem 0;
  }

  .page-banner h1 {
    font-size: 1.25rem;
  }

  /* Trust strip */
  .trust-item {
    padding: .35rem .85rem;
  }

  /* Cart table: even tighter on small phones */
  .cart-table th,
  .cart-table td {
    padding: .5rem .5rem;
    font-size: .78rem;
  }

  .cart-product-img {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* Qty control: tighter */
  .qty-control a,
  .qty-control button {
    width: 24px;
    height: 24px;
    font-size: .8rem;
  }

  .qty-control .qty {
    min-width: 20px;
    font-size: .8rem;
  }

  /* Checkout form sections */
  .form-section {
    padding: 1rem;
  }

  /* Auth card */
  .auth-card {
    padding: 1.5rem 1rem;
  }

  /* Numbers: remove side borders, add bottom borders */
  .number-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .number-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}


/* ---- 360px: Very small phones ---- */
@media (max-width: 360px) {

  .container {
    padding: 0 .65rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .4rem;
  }

  .product-card-body h3 {
    font-size: .74rem;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .4rem;
  }

  /* Navbar: hide brand sub text, tighter actions */
  .navbar-brand .brand-text {
    display: none;
  }

  .nav-icon-btn span:last-of-type:not(.nav-badge) {
    display: none;
  }

  .navbar-actions {
    gap: .2rem;
    padding-left: .35rem;
  }

  .navbar .container {
    padding-right: .72rem;
  }

  .navbar-brand {
    gap: .5rem;
  }

  .brand-monogram,
  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .navbar-brand .brand-name {
    font-size: .88rem;
  }

  /* Page banner: minimal padding */
  .page-banner {
    padding: 1rem 0;
  }

  .page-banner h1 {
    font-size: 1.1rem;
  }

  /* Cart table */
  .cart-table {
    min-width: 280px;
  }

  /* Summary rows */
  .summary-row {
    font-size: .82rem;
  }

  /* Buttons: full width in checkout/cart actions */
  .cart-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-actions .btn {
    text-align: center;
    justify-content: center;
  }
}


/* ---- Landscape on short screens ---- */
@media (max-height: 500px) and (orientation: landscape) {

  .hero {
    min-height: 240px;
  }

  .hero-inner {
    padding: 1.5rem 0;
  }

  .numbers-section {
    padding: 1.5rem 0;
  }

  .nav-menu {
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
}


/* 35. PREMIUM BRAND OVERRIDES
   ============================================================ */
:root {
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  --cream: #f7f1e8;
  --brand-ink: #10261c;
  --brand-forest: #173629;
  --brand-moss: #315543;
  --brand-sand: #d9c1a0;
  --brand-glow: rgba(232, 146, 12, .28);
  --card-shadow: 0 22px 60px rgba(10, 21, 17, .12);
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(232,146,12,.08), transparent 22%),
    radial-gradient(circle at top right, rgba(61,122,87,.08), transparent 24%),
    linear-gradient(180deg, #f8f4ee 0%, #f7f3ec 18%, #f3f1eb 100%);
  color: #16211c;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -.02em;
}

p,
.btn,
.nav-link,
.top-bar-item,
.footer,
.form-control,
input,
select,
textarea,
button {
  font-family: var(--font-body);
}

.section {
  padding: 5rem 0;
}

.top-bar {
  display: none !important;
}

.top-bar .container {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem 1.6rem;
  flex-wrap: wrap;
  padding-top: .45rem;
  padding-bottom: .45rem;
}

.top-bar-group {
  display: flex;
  align-items: center;
  gap: .7rem 1rem;
  flex-wrap: wrap;
  min-width: 0;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  min-width: 0;
  padding: .34rem .72rem;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.25;
  text-transform: none;
}

.top-bar-item span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  flex: 0 0 16px;
  font-size: .76rem;
}

.top-bar a.top-bar-item {
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t);
}

.top-bar a.top-bar-item:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.18);
  color: #fff;
  transform: translateY(-1px);
}

@media (min-width: 980px) {
  .top-bar-group:first-child {
    flex: 1 1 0;
  }

  .top-bar-group:last-child {
    justify-content: flex-end;
  }
}

.navbar {
  background: rgba(16, 38, 28, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 30px rgba(16, 38, 28, .14);
}

.navbar .container {
  height: 78px;
}

.brand-monogram,
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.brand-name {
  font-size: 1rem;
  letter-spacing: .02em;
}

.brand-sub {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}

.nav-link {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,.08);
}

.nav-cta,
.btn-gold,
.btn-accent {
  background: linear-gradient(135deg, #c49a4c, #a77c30);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(167,124,48,.24);
}

.btn {
  border-radius: 999px;
  font-size: .79rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

.btn-lg {
  padding: .95rem 1.75rem;
}

.btn-outline,
.btn-outline-white {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}

.hero {
  min-height: 760px;
  padding: 7.5rem 0 5rem;
  overflow: hidden;
  background-position: center center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(8,18,13,.82) 0%, rgba(15,37,28,.62) 42%, rgba(15,37,28,.44) 100%),
    radial-gradient(circle at 18% 24%, rgba(232,146,12,.22), transparent 28%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .7fr);
  gap: 2.5rem;
  align-items: end;
  padding: 0;
}

.hero-copy {
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 700;
}

.hero-line {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240,170,57,.2), rgba(240,170,57,1));
}

.hero h1 {
  max-width: 10ch;
  margin: 1.1rem 0 1rem;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  line-height: .9;
  letter-spacing: -.04em;
  color: #fef9f1;
}

.hero h1 em {
  font-style: italic;
  color: #dfc17b;
  font-weight: 600;
}

.hero-desc {
  max-width: 58ch;
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
}

.hero-badges {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin: 1.75rem 0 0;
}

.hero-badges span {
  padding: .65rem 1rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.hero-divider {
  width: 100%;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.55), rgba(255,255,255,0));
  margin: 2rem 0 1.15rem;
}

.hero-gps {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  color: rgba(255,255,255,.74);
}

.gps-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.gps-code {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff8eb;
  letter-spacing: .08em;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  justify-self: end;
  width: min(100%, 370px);
}

.hero-panel-card,
.hero-panel-note,
.hero-metrics {
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  backdrop-filter: blur(16px);
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(7, 14, 11, .22);
}

.hero-panel-card,
.hero-panel-note {
  padding: 1.4rem 1.45rem;
}

.hero-panel-label,
.note-kicker {
  display: inline-block;
  margin-bottom: .7rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f0c88f;
  font-weight: 800;
}

.hero-panel-card h3 {
  font-size: 1.6rem;
  color: #fff8ef;
  line-height: 1;
  margin-bottom: .7rem;
}

.hero-panel-text,
.hero-panel-note p {
  color: rgba(255,255,255,.74);
  font-size: .95rem;
  line-height: 1.7;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  padding: 1rem;
}

.hero-metric {
  padding: .95rem .8rem;
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  text-align: center;
}

.hero-metric strong {
  display: block;
  color: #fff6ea;
  font-size: 1.45rem;
  font-family: var(--font-display);
}

.hero-metric span {
  display: block;
  margin-top: .25rem;
  color: rgba(255,255,255,.66);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  z-index: 1;
}

.hero-orb-a {
  width: 360px;
  height: 360px;
  right: -100px;
  top: 80px;
  background: radial-gradient(circle, rgba(232,146,12,.28), transparent 65%);
}

.hero-orb-b {
  width: 260px;
  height: 260px;
  left: -60px;
  bottom: 50px;
  background: radial-gradient(circle, rgba(90,145,106,.22), transparent 68%);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.66);
}

.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.8), rgba(255,255,255,0));
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -54px;
  padding: 0 0 1.2rem;
  background: transparent;
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(16,38,28,.06);
  box-shadow: var(--card-shadow);
}

.t-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(23,54,41,.1), rgba(240,170,57,.18));
  font-size: 1.2rem;
  margin-bottom: .65rem;
}

.t-text {
  display: flex;
  flex-direction: column;
  gap: .12rem;
  color: var(--brand-ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .76rem;
}

.t-text span {
  color: #5d665f;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  font-size: .85rem;
}

.statement-strip {
  background:
    radial-gradient(circle at right center, rgba(240,170,57,.12), transparent 20%),
    linear-gradient(135deg, #f2eadf, #f8f4ed);
  border-top: 1px solid rgba(16,38,28,.06);
  border-bottom: 1px solid rgba(16,38,28,.06);
}

.statement-text {
  max-width: 20ch;
  margin: 0;
  padding: 4.2rem 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: .98;
  letter-spacing: -.03em;
  color: var(--brand-forest);
}

.statement-text strong {
  font-weight: 600;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.editorial-image {
  position: relative;
  padding: 0 1.4rem 2rem 0;
}

.img-main {
  border-radius: 32px;
  min-height: 560px;
  object-fit: cover;
  box-shadow: 0 34px 80px rgba(17,34,26,.18);
}

.img-accent {
  position: absolute;
  left: -18px;
  bottom: 24px;
}

.img-accent-inner {
  min-width: 150px;
  padding: 1.1rem 1.2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #173629, #315543);
  color: #fff7eb;
  box-shadow: 0 18px 34px rgba(17,34,26,.22);
}

.img-accent-inner .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.img-accent-inner .lbl {
  display: block;
  margin-top: .25rem;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.img-secondary {
  position: absolute;
  right: -18px;
  top: 42px;
  width: 220px;
  border-radius: 26px;
  overflow: hidden;
  border: 8px solid #f7f3ec;
  box-shadow: 0 18px 40px rgba(17,34,26,.16);
}

.img-secondary img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.editorial-content {
  max-width: 620px;
}

.eyebrow {
  display: inline-block;
  color: #9b6b23;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}

.gold-rule {
  width: 72px;
  height: 2px;
  border-radius: 999px;
  margin-bottom: 1.15rem;
  background: linear-gradient(90deg, #f0aa39, rgba(240,170,57,0));
}

.editorial-content h2,
.shop-strip-header h2,
.numbers-intro h2,
.cta-section h2 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: .96;
  color: var(--brand-ink);
  margin-bottom: 1rem;
}

.editorial-content p {
  font-size: 1.02rem;
  color: #465047;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.8rem 0 2rem;
}

.stat-item {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(16,38,28,.06);
  box-shadow: 0 12px 26px rgba(17,34,26,.06);
}

.stat-item .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand-forest);
}

.stat-item .lbl {
  color: #546158;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
}

#products.section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(247,241,232,0) 0%, rgba(247,241,232,.95) 12%, #f1ece2 100%) !important;
}

.shop-strip-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.section-intro {
  max-width: 52ch;
  color: #526158;
  margin-top: .7rem;
}

.shop-strip-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.shop-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(16,38,28,.06);
  box-shadow: var(--card-shadow);
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease;
}

.shop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(17,34,26,.16);
}

.shop-card-img {
  position: relative;
}

.shop-card-img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.shop-card-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  border-radius: 999px;
  padding: .45rem .8rem;
}

.shop-card-body {
  padding: 1.2rem 1.15rem 1.3rem;
}

.shop-card-body h4 {
  font-size: 1.7rem;
  margin-bottom: .45rem;
  color: var(--brand-ink);
}

.shop-card-body p {
  color: #57645b;
  font-size: .94rem;
  margin-bottom: .85rem;
}

.shop-card-price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
}

.price-val {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--brand-forest);
}

.price-u {
  color: #68776d;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
}

.shop-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  color: #9b6b23;
  font-size: .77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.numbers-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #133126, #1c4432);
  color: #fff8ee;
}

.numbers-intro {
  max-width: 640px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.numbers-intro h2 {
  color: #fff8ee;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.number-item {
  padding: 1.4rem 1rem;
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
}

.number-item .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
}

.number-item .lbl {
  display: block;
  margin-top: .45rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .72rem;
  color: rgba(255,248,238,.74);
}

.testimonial-section {
  padding: 5rem 0;
  background:
    radial-gradient(circle at top left, rgba(240,170,57,.08), transparent 28%),
    linear-gradient(180deg, #f8f4ee, #f4efe6);
}

.testimonial-section .container {
  max-width: 940px;
}

.testimonial-quote {
  padding: 2.4rem 2.4rem 2rem;
  border-radius: 32px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(16,38,28,.06);
  box-shadow: var(--card-shadow);
}

.quote-icon {
  color: #d1ad78;
  margin-bottom: 1rem;
}

.testimonial-quote p,
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: .98;
  color: var(--brand-ink);
}

.testimonial-author-block {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  margin-top: 1.4rem;
}

.testimonial-author-block .line {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(232,146,12,0));
}

.author-name,
.author-role {
  display: block;
}

.author-name {
  font-weight: 800;
  color: var(--brand-forest);
}

.author-role {
  color: #6b746e;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    radial-gradient(circle at top right, rgba(240,170,57,.2), transparent 20%),
    linear-gradient(135deg, #153327, #214a37 70%, #163429);
  color: #fff8ef;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.08), transparent 25%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-section h2,
.cta-section p,
.cta-section .eyebrow {
  color: #fff8ef;
}

.cta-section p {
  max-width: 54ch;
  margin: 0 auto;
  color: rgba(255,248,239,.76);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.footer {
  background: linear-gradient(180deg, #0f261c, #132f23);
  color: rgba(255,255,255,.74);
  padding-top: 4rem;
}

.footer-grid {
  gap: 2rem;
}

.footer-brand .logo-text,
.footer-col h4,
.footer-col h5 {
  color: #fff8ef;
}

.footer-col h4,
.footer-col h5 {
  font-size: 1.2rem;
  margin-bottom: .9rem;
}

.footer-col ul li a,
.footer-contact-item,
.footer-brand p {
  color: rgba(255,255,255,.68);
}

.footer-col ul li a:hover,
.footer-contact-item a:hover,
.footer-bottom a:hover {
  color: #f0c88f;
}

.footer-social .social-link {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 1100px) {
  .hero-inner,
  .editorial-grid,
  .shop-strip-track,
  .numbers-grid,
  .trust-strip .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section,
  .numbers-section,
  .testimonial-section,
  .cta-section {
    padding: 3rem 0;
  }

  .cta-section {
    display: none !important;
  }

  .top-bar {
    display: none;
  }

  .hero-panel {
    display: flex;
    gap: .85rem;
    width: 100%;
    overflow-x: auto;
    padding-bottom: .35rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-panel::-webkit-scrollbar {
    display: none;
  }

  .hero-panel-card,
  .hero-metrics,
  .hero-panel-note {
    min-width: min(86vw, 320px);
    flex: 0 0 min(86vw, 320px);
    scroll-snap-align: start;
  }

  .navbar .container {
    height: 64px;
    gap: .65rem;
  }

  .hero {
    min-height: auto;
    padding: 4.7rem 0 3.2rem;
  }

  .hero-inner,
  .editorial-grid,
  .shop-strip-track,
  .numbers-grid,
  .trust-strip .container,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .trust-strip .container {
    display: flex;
    gap: .85rem;
    overflow-x: auto;
    padding-bottom: .35rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .trust-strip .container::-webkit-scrollbar {
    display: none;
  }

  .trust-item {
    min-width: min(84vw, 320px);
    flex: 0 0 min(84vw, 320px);
    scroll-snap-align: start;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
    max-width: 100%;
  }

  .hero-desc {
    font-size: .92rem;
  }

  .hero-badges {
    gap: .55rem;
    margin-top: 1.15rem;
  }

  .hero-badges span {
    padding: .45rem .75rem;
    font-size: .65rem;
  }

  .hero-panel-card,
  .hero-panel-note {
    padding: 1rem 1rem;
    border-radius: 22px;
  }

  .hero-panel-card h3 {
    font-size: 1.28rem;
  }

  .hero-panel-text,
  .hero-panel-note p {
    font-size: .86rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    padding: .7rem;
    gap: .55rem;
  }

  .hero-metric {
    padding: .8rem .7rem;
    border-radius: 16px;
  }

  .hero-metric strong {
    font-size: 1.15rem;
  }

  .hero-metric span {
    font-size: .62rem;
  }

  .shop-strip-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .85rem;
  }

  .img-main {
    min-height: 320px;
    border-radius: 24px;
  }

  .img-secondary {
    width: 128px;
    right: 0;
    top: auto;
    bottom: -10px;
    border-width: 5px;
  }

  .img-secondary img {
    height: 150px;
  }

  .img-accent {
    left: -8px;
    bottom: 10px;
  }

  .img-accent-inner {
    min-width: 108px;
    padding: .8rem .85rem;
    border-radius: 18px;
  }

  .img-accent-inner .num {
    font-size: 1.35rem;
  }

  .img-accent-inner .lbl {
    font-size: .58rem;
  }

  .statement-text,
  .testimonial-quote p,
  .testimonial-quote {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .editorial-content h2,
  .shop-strip-header h2,
  .numbers-intro h2,
  .cta-section h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .editorial-content p,
  .section-intro,
  .cta-section p {
    font-size: .92rem;
  }

  .stats-row {
    gap: .7rem;
    margin: 1.25rem 0 1.4rem;
  }

  .stat-item,
  .trust-item,
  .number-item {
    border-radius: 18px;
  }

  .trust-item {
    padding: .9rem .95rem;
  }

  .t-icon {
    width: 38px;
    height: 38px;
    margin-bottom: .45rem;
  }

  .t-text {
    font-size: .68rem;
  }

  .t-text span {
    font-size: .77rem;
  }

  .shop-card {
    border-radius: 22px;
  }

  .shop-card-img img {
    height: 220px;
  }

  .shop-card-body {
    padding: .95rem .9rem 1rem;
  }

  .shop-card-body h4 {
    font-size: 1.35rem;
  }

  .shop-card-body p {
    font-size: .86rem;
  }

  .price-val {
    font-size: 1.5rem;
  }

  .numbers-section {
    padding: 3rem 0;
  }

  .numbers-intro {
    margin-bottom: 1.4rem;
  }

  .number-item {
    padding: 1rem .75rem;
  }

  .number-item .num {
    font-size: 1.9rem;
  }

  .number-item .lbl {
    font-size: .62rem;
  }

  .testimonial-quote {
    padding: 1.35rem 1.15rem 1.2rem;
    border-radius: 24px;
  }

  .cta-actions {
    gap: .65rem;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer {
    padding-top: 2.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > .footer-col:nth-child(3) {
    display: none;
  }

  .footer-social .social-link {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: .72rem;
    border-radius: 999px;
  }

  .whatsapp-float .wa-text {
    display: none;
  }
}

@media (max-width: 430px) {
  .container {
    padding: 0 .82rem;
  }

  .section,
  .numbers-section,
  .testimonial-section,
  .cta-section {
    padding: 2.3rem 0;
  }

  .cta-section {
    display: none !important;
  }

  .navbar .container {
    height: 58px;
  }

  .brand-monogram,
  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: .8rem;
  }

  .brand-name {
    font-size: .82rem;
  }

  .brand-sub {
    font-size: .56rem;
    letter-spacing: .1em;
  }

  .nav-toggle-label {
    padding: .2rem;
  }

  .nav-toggle-label span {
    width: 18px;
  }

  .hero {
    padding: 4rem 0 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
    margin: .8rem 0 .7rem;
  }

  .hero-desc {
    font-size: .84rem;
    line-height: 1.6;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    gap: .55rem;
    margin-top: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-divider {
    margin: 1.2rem 0 .8rem;
  }

  .gps-label {
    font-size: .6rem;
  }

  .gps-code {
    font-size: .86rem;
  }

  .hero-panel {
    gap: .7rem;
  }

  .hero-panel-card h3 {
    font-size: 1.1rem;
  }

  .hero-panel-label,
  .note-kicker,
  .eyebrow {
    font-size: .62rem;
  }

  .trust-strip {
    margin-top: -22px;
  }

  .trust-item {
    padding: .8rem .85rem;
  }

  .statement-text {
    padding: 2rem 0;
  }

  .section-head h2,
  .section-head p {
    max-width: 100%;
  }

  .section-head h2 {
    font-size: 1.55rem;
  }

  .section-head p {
    font-size: .82rem;
  }

  .products-grid {
    gap: .42rem;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-card-img {
    aspect-ratio: .95 / 1;
  }

  .product-card-badge {
    top: .35rem;
    left: .35rem;
    font-size: .52rem;
    padding: .18rem .38rem;
  }

  .product-card-body {
    padding: .42rem .46rem;
  }

  .product-card-body h3 {
    font-size: .68rem;
    line-height: 1.2;
    margin-bottom: .12rem;
  }

  .product-card-unit {
    font-size: .58rem;
    line-height: 1.25;
  }

  .product-price {
    font-size: .8rem;
    margin: .22rem 0;
  }

  .product-card-footer {
    padding: .25rem .46rem .46rem;
    gap: .22rem;
  }

  .btn-buy-now,
  .btn-add-cart {
    padding: .34rem .3rem;
    font-size: .62rem;
    border-radius: 10px;
    letter-spacing: 0;
  }

  .cat-grid {
    gap: .4rem;
  }

  .cat-card {
    padding: .62rem .3rem;
    border-radius: 14px;
  }

  .cat-card-icon {
    font-size: 1.15rem;
    margin-bottom: .28rem;
  }

  .cat-card-name {
    font-size: .62rem;
    line-height: 1.15;
  }

  .cat-card-count {
    font-size: .52rem;
  }

  .editorial-content h2,
  .shop-strip-header h2,
  .numbers-intro h2,
  .cta-section h2 {
    font-size: clamp(1.6rem, 9vw, 2.25rem);
  }

  .img-main {
    min-height: 270px;
  }

  .img-secondary {
    width: 105px;
  }

  .img-secondary img {
    height: 118px;
  }

  .shop-card-img img {
    height: 150px;
  }

  .shop-card-body h4 {
    font-size: 1rem;
  }

  .shop-card-body {
    padding: .78rem .72rem .82rem;
  }

  .shop-card-body p {
    font-size: .78rem;
    margin-bottom: .6rem;
  }

  .shop-card-tag {
    top: 10px;
    left: 10px;
    font-size: .54rem;
    padding: .32rem .55rem;
  }

  .price-val {
    font-size: 1.2rem;
  }

  .number-item .num {
    font-size: 1.55rem;
  }

  .footer-col h4,
  .footer-col h5 {
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: .72rem;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 .7rem;
  }

  .navbar .container {
    height: 54px;
  }

  .brand-sub {
    display: none;
  }

  .hero {
    padding: 3.6rem 0 2.1rem;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-desc,
  .editorial-content p,
  .section-intro,
  .cta-section p,
  .shop-card-body p {
    font-size: .8rem;
  }

  .hero-panel-card,
  .hero-panel-note,
  .trust-item,
  .stat-item,
  .number-item,
  .shop-card,
  .testimonial-quote,
  .product-card,
  .cat-card {
    border-radius: 16px;
  }

  .products-grid {
    gap: .35rem;
  }

  .product-card-img {
    aspect-ratio: .92 / 1;
  }

  .product-card-body {
    padding: .38rem .4rem;
  }

  .product-card-body h3 {
    font-size: .64rem;
  }

  .product-card-unit {
    font-size: .54rem;
  }

  .product-price {
    font-size: .74rem;
    margin: .18rem 0;
  }

  .product-card-footer {
    padding: .22rem .4rem .4rem;
    gap: .18rem;
  }

  .btn-buy-now,
  .btn-add-cart {
    font-size: .58rem;
    padding: .3rem .2rem;
  }

  .cat-grid {
    gap: .35rem;
  }

  .cat-card {
    padding: .55rem .2rem;
  }

  .cat-card-icon {
    font-size: 1rem;
  }

  .cat-card-name {
    font-size: .58rem;
  }

  .cat-card-count {
    font-size: .48rem;
  }

  .shop-card-img img {
    height: 132px;
  }

  .shop-card-body {
    padding: .68rem .6rem .72rem;
  }

  .price-val {
    font-size: 1.05rem;
  }

  .whatsapp-float {
    right: 10px;
    bottom: 10px;
    padding: .64rem;
  }
}


/* 36. NAV DROPDOWNS (Products & Shop)
   ============================================================ */
.nav-has-dropdown {
  position: relative;
}

/* ---- Desktop dropdown panel ---- */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  transform: translateY(6px);
  min-width: 560px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 18px;
  box-shadow: 0 8px 16px rgba(0,0,0,.06), 0 24px 48px rgba(0,0,0,.14);
  padding: 1.1rem 1.1rem .85rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 9000;
  pointer-events: none;
}

/* Caret pointing up toward the nav link */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 28px;
  width: 13px;
  height: 7px;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-top: none;
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 27px;
  width: 15px;
  height: 8px;
  background: rgba(0,0,0,.09);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: -1;
}

/* Products: 2nd li — left-anchor dropdown */
.nav-menu > li:nth-child(2) > .nav-dropdown {
  left: 0;
  right: auto;
}

/* Shop: 3rd li — right-anchor dropdown so it never overflows */
.nav-menu > li:nth-child(3) > .nav-dropdown {
  left: auto;
  right: 0;
}
.nav-menu > li:nth-child(3) > .nav-dropdown::before,
.nav-menu > li:nth-child(3) > .nav-dropdown::after {
  left: auto;
  right: 28px;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---- Dropdown header label ---- */
.nav-dropdown-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 .25rem .65rem;
  border-bottom: 1px solid #f0f0ec;
  margin-bottom: .75rem;
}

/* ---- Grid of cards ---- */
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .55rem;
}

.nav-dropdown-card {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .7rem;
  border-radius: 12px;
  background: #f8f9f6;
  border: 1px solid transparent;
  text-decoration: none;
  color: #183828;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.nav-dropdown-card:hover {
  background: #eef5ee;
  border-color: #cce0cc;
  box-shadow: 0 2px 8px rgba(26,61,43,.08);
}
.nav-dropdown-card img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #e8ede8;
}
.nav-dropdown-card strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.25;
  color: #183828;
}
.nav-dropdown-card small {
  display: block;
  font-size: .65rem;
  color: #7e8a7d;
  line-height: 1.3;
  margin-top: .1rem;
}

/* ---- Footer / view all ---- */
.nav-dropdown-footer {
  margin-top: .8rem;
  padding-top: .75rem;
  border-top: 1px solid #f0f0ec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.nav-dropdown-footer-note {
  font-size: .7rem;
  color: var(--text-muted);
}
.nav-dropdown-all {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem 1.25rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.nav-dropdown-all:hover {
  background: var(--brand-mid);
  box-shadow: 0 4px 12px rgba(26,61,43,.25);
}

/* ---- Mobile hamburger dropdown ---- */
@media (max-width: 768px) {

  /* Nav item becomes a column flex so the dropdown expands below */
  .nav-has-dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .nav-has-dropdown > .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px;
  }

  .nav-has-dropdown > .nav-link::after {
    content: '▾';
    font-size: .9rem;
    line-height: 1;
    color: rgba(255,255,255,.75);
    transition: transform .2s ease;
    flex-shrink: 0;
    margin-left: .5rem;
  }

  .nav-has-dropdown.is-open > .nav-link {
    background: rgba(255,255,255,.11);
    border-radius: 14px 14px 6px 6px;
  }

  .nav-has-dropdown.is-open > .nav-link::after {
    transform: rotate(180deg);
    color: rgba(255,255,255,.95);
  }

  /* Dropdown panel: inline below the link */
  .nav-dropdown {
    position: static !important;
    display: none;
    transform: none !important;
    min-width: 0;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: rgba(0,0,0,.18);
    border: 0;
    border-radius: 0 0 14px 14px;
    box-shadow: none;
    padding: .35rem .5rem .55rem;
    margin-top: 2px;
  }
  .nav-dropdown::before,
  .nav-dropdown::after {
    display: none;
  }

  .nav-has-dropdown.is-open > .nav-dropdown {
    display: block;
  }

  /* Dropdown grid: single column */
  .nav-dropdown-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  /* Each card: simple text row */
  .nav-dropdown-card {
    display: flex;
    align-items: center;
    gap: 0;
    padding: .55rem .75rem .55rem 1.1rem;
    border-radius: 10px;
    background: transparent;
    border: 0;
    color: rgba(255,255,255,.9);
    box-shadow: none;
    position: relative;
  }
  .nav-dropdown-card::before {
    content: '›';
    position: absolute;
    left: .4rem;
    font-size: .9rem;
    color: rgba(255,255,255,.45);
    line-height: 1;
  }
  .nav-dropdown-card:hover {
    background: rgba(255,255,255,.08);
    box-shadow: none;
    border-color: transparent;
  }

  .nav-dropdown-card img {
    display: none;
  }

  .nav-dropdown-card > span {
    display: flex;
    flex-direction: column;
  }

  .nav-dropdown-card strong {
    color: rgba(255,255,255,.92);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .01em;
  }

.nav-dropdown-card small {
  display: none;
}

/* Footer: hidden on mobile */
.nav-dropdown-footer {
  display: none;
}

@media (max-width: 700px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-card-img {
    aspect-ratio: .92 / 1;
  }

  .product-card-body {
    padding: .4rem .46rem;
  }

  .product-card-body h3 {
    font-size: .66rem;
    line-height: 1.18;
    margin-bottom: .1rem;
  }

  .product-card-unit {
    font-size: .54rem;
    line-height: 1.2;
  }

  .product-price {
    font-size: .78rem;
    margin: .16rem 0;
  }

  .product-card-footer {
    padding: .2rem .42rem .42rem;
    gap: .18rem;
  }

  .btn-buy-now,
  .btn-add-cart {
    min-height: 30px;
    padding: .32rem .42rem;
    font-size: .58rem;
    border-radius: 9px;
  }

  .shop-card {
    flex: 0 0 138px;
    border-radius: 18px;
  }

  .shop-card-img img {
    height: 126px;
  }

  .shop-card-body {
    padding: .62rem .58rem .68rem;
  }

  .shop-card-body h4 {
    font-size: .92rem;
    line-height: 1.08;
    margin-bottom: .24rem;
  }

  .shop-card-body p {
    font-size: .72rem;
    margin-bottom: .45rem;
    line-height: 1.42;
  }

  .shop-card-tag {
    top: 9px;
    left: 9px;
    font-size: .5rem;
    padding: .26rem .46rem;
  }

  .price-val {
    font-size: .96rem;
  }

  .price-unit {
    font-size: .62rem;
  }
}

  .nav-dropdown-label {
    display: none;
  }
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  /* ---- Bottom navigation bar — full width, brand green ---- */
  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9997;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    padding: .5rem .25rem calc(.55rem + env(safe-area-inset-bottom, 0px));
    border-radius: 0;
    background: var(--brand);
    border: none;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 -4px 24px rgba(0,0,0,.22);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Individual nav item */
  .mobile-bottom-nav__item {
    min-height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    border-radius: 0;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-weight: 600;
    font-size: .62rem;
    letter-spacing: .03em;
    position: relative;
    cursor: pointer;
    transition: color .15s ease, transform .12s ease;
    -webkit-tap-highlight-color: transparent;
    background: transparent;
    border: 0;
    font-family: inherit;
  }

  .mobile-bottom-nav__item:active {
    transform: scale(.9);
  }

  /* Hover state */
  .mobile-bottom-nav__item:hover {
    color: rgba(255,255,255,.85);
  }

  /* Active (current page) state — amber/gold accent */
  .mobile-bottom-nav__item.is-active {
    color: var(--accent);
  }

  /* Active indicator bar at the top of the nav item */
  .mobile-bottom-nav__item.is-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2.5px;
    border-radius: 0 0 3px 3px;
    background: var(--accent);
  }

  /* Icon sizing */
  .mobile-bottom-nav__icon {
    font-size: 1.2rem;
    line-height: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-bottom-nav__label {
    line-height: 1;
    white-space: nowrap;
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .04em;
  }

  /* Cart badge */
  .mobile-bottom-nav__icon--badge {
    padding-right: 0;
  }

  .mobile-bottom-nav__badge {
    position: absolute;
    top: -.4rem;
    right: -.5rem;
    min-width: 15px;
    height: 15px;
    padding: 0 3px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: .54rem;
    line-height: 15px;
    text-align: center;
    font-weight: 800;
    border: 1.5px solid var(--brand);
  }

  body.mobile-search-open {
    overflow: hidden;
  }

  .mobile-search-sheet[hidden] {
    display: none !important;
  }

  .mobile-search-sheet {
    position: fixed;
    inset: 0;
    z-index: 10020;
  }

  .mobile-search-sheet__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(7, 24, 16, .56);
  }

  .mobile-search-sheet__panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #173c28 0%, #102b1d 100%);
    color: #fff;
    border-radius: 24px 24px 0 0;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -18px 40px rgba(0, 0, 0, .28);
  }

  .mobile-search-sheet__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .85rem;
    margin-bottom: .9rem;
  }

  .mobile-search-sheet__eyebrow {
    margin: 0 0 .22rem;
    color: rgba(255, 209, 102, .88);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
  }

  .mobile-search-sheet__header h3 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .mobile-search-sheet__close {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
  }

  .mobile-search-sheet__form {
    display: grid;
    gap: .82rem;
  }

  .mobile-search-sheet__input {
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.96);
    color: #143424;
    padding: 0 .95rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
  }

  .mobile-search-sheet__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
  }

  .mobile-search-sheet__mic,
  .mobile-search-sheet__submit {
    min-height: 48px;
    border-radius: 16px;
    border: 0;
    font-weight: 800;
    font-size: .92rem;
    letter-spacing: .01em;
  }

  .mobile-search-sheet__mic {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
  }

  .mobile-search-sheet__mic.is-listening {
    background: rgba(255, 209, 102, .18);
    color: #ffd166;
    border-color: rgba(255, 209, 102, .45);
  }

  .mobile-search-sheet__mic.is-disabled {
    opacity: .55;
  }

  .mobile-search-sheet__submit {
    background: linear-gradient(135deg, #f2c94c 0%, #d9a928 100%);
    color: #113221;
    box-shadow: 0 12px 22px rgba(214, 168, 39, .18);
  }

  .mobile-search-sheet__hint {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: .83rem;
    line-height: 1.45;
  }

  .whatsapp-float {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
}

/* 37. PRINT STYLES
   ============================================================ */
@media print {

  .navbar,
  .cat-nav,
  .trust-strip,
  .footer,
  .whatsapp-float,
  .nav-toggle-label {
    display: none !important;
  }

  body {
    background: white;
    font-size: 12pt;
    color: #000;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  a {
    text-decoration: underline;
  }
}

.navbar-brand {
  gap: .72rem;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  max-width: 46px;
  max-height: 46px;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .9rem;
}

.footer-brand-mark {
  display: block;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  padding: .3rem;
}

.footer-brand .logo-text {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .brand-logo {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
  }

  .footer-brand-lockup {
    gap: .65rem;
  }

  .footer-brand-mark {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
}
