/* ============================================================
   CULTUREZ — style.css
   Aesthetic: Warm editorial luxury meets Kampala streetwear
   Palette: Cream, sand, espresso brown
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

:root {
  --cream:     #F7F0E6;
  --sand:      #EAD9C0;
  --parchment: #E0C99A;
  --brown:     #2C1A0E;
  --espresso:  #1A0E07;
  --warm-mid:  #8B6B47;
  --warm-lite: #C4A882;
  --white:     #FDFAF6;
  --radius:    4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--brown);
  min-height: 100vh;
}

/* ── ANNOUNCEMENT BAR ─────────────────────────────── */
.announce-bar {
  background: var(--brown);
  color: var(--cream);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.12rem;
  font-family: 'DM Sans', sans-serif;
}

.announce-bar strong { color: var(--parchment); }

/* ── NAVBAR ───────────────────────────────────────── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  height: 70px;
  background: var(--white);
  border-bottom: 1px solid var(--sand);
  position: sticky;
  top: 0;
  z-index: 90;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: 0.08rem;
  color: var(--brown);
  text-decoration: none;
}

.logo span {
  font-size: 0.55em;
  vertical-align: super;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 2.5vw;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  text-decoration: none;
  color: var(--warm-mid);
  font-size: 0.82rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--brown); }

.nav-links a.active { border-bottom: 1.5px solid var(--brown); padding-bottom: 2px; }

.nav-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-icons a {
  color: var(--brown);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.nav-icons a:hover { color: var(--warm-mid); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - 110px);
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Plain warm gradient background — no image */
  background: linear-gradient(135deg, #2C1A0E 0%, #4A2E1A 50%, #2C1A0E 100%);
}

/* Grain texture overlay — adds that editorial print feel */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 8vw;
  max-width: 700px;
  animation: heroFade 1s ease-out 0.3s both;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--parchment);
}

.hero-sub {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: rgba(253,250,246,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--brown);
  text-decoration: none;
  padding: 14px 32px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  border: 2px solid var(--white);
}

.btn-primary:hover {
  background: var(--parchment);
  border-color: var(--parchment);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid rgba(253,250,246,0.5);
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ── SECTION COMMON ────────────────────────────────── */
.section-wrap {
  padding: 80px 6vw;
}

.section-header {
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
}

.title-rule {
  width: 48px;
  height: 2px;
  background: var(--parchment);
  margin-top: 16px;
}

/* ── FEATURED STRIP (homepage) ─────────────────────── */
.featured-strip {
  background: var(--brown);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-inner {
  display: inline-block;
  animation: stripScroll 18s linear infinite;
}

.strip-inner span {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--parchment);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  padding: 0 40px;
}

.strip-inner span::after {
  content: ' ✦ ';
  color: var(--warm-lite);
}

@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PRODUCT GRID ───────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  display: block;
  text-decoration: none;
  color: var(--brown);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(44,26,14,0.12);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--sand);
}

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

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

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brown);
  color: var(--cream);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  padding: 4px 10px;
  text-transform: uppercase;
  border-radius: 2px;
}

.card-info {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--sand);
}

.card-category {
  font-size: 0.68rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 5px;
  font-weight: 500;
}

.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
  line-height: 1.3;
}

.card-price {
  font-size: 0.85rem;
  color: var(--warm-mid);
  font-weight: 600;
}

/* ── VIEW ALL LINK ─────────────────────────────────── */
.view-all-wrap {
  text-align: center;
  margin-top: 48px;
}

.btn-text-link {
  display: inline-block;
  text-decoration: none;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--brown);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-text-link:hover {
  color: var(--warm-mid);
  border-color: var(--warm-mid);
}

/* ── BRAND BAND (homepage) ─────────────────────────── */
.brand-band {
  background: var(--sand);
  padding: 80px 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.brand-band-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 20px;
}

.brand-band-text p {
  font-size: 0.95rem;
  color: var(--warm-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.brand-band-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
}

.brand-band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── PAGE HERO (inner pages) ───────────────────────── */
.page-hero {
  background: var(--brown);
  padding: 60px 6vw 48px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: attr(data-title);
  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 700;
  color: rgba(247,240,230,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.page-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--warm-lite);
  margin-bottom: 10px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

/* ── PRODUCT DETAIL PAGE ───────────────────────────── */
.back-link {
  display: inline-block;
  color: var(--warm-mid);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 24px 6vw 0;
  letter-spacing: 0.05rem;
  transition: color 0.2s;
}

.back-link:hover { color: var(--brown); }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  padding: 32px 6vw 60px;
  align-items: start;
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-info { padding-top: 8px; }

.product-category-label {
  font-size: 0.72rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 8px;
  font-weight: 600;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 12px;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--warm-mid);
  margin-bottom: 24px;
}

.product-divider {
  border: none;
  border-top: 1px solid var(--sand);
  margin: 24px 0;
}

.size-label {
  font-size: 0.72rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 12px;
  font-weight: 600;
}

.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.size-options input[type="radio"] { display: none; }

.size-options label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--warm-mid);
  transition: all 0.15s;
}

.size-options label:hover {
  border-color: var(--brown);
  color: var(--brown);
}

.size-options input[type="radio"]:checked + label {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}

.product-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--warm-mid);
  margin-bottom: 20px;
}

.product-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-details-list li {
  font-size: 0.85rem;
  color: var(--warm-mid);
  padding-left: 16px;
  position: relative;
}

.product-details-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--parchment);
}

/* ── STICKY BUY BAR ────────────────────────────────── */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247,240,230,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--sand);
  padding: 14px 6vw;
}

.sticky-buy-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
  background: #25D366;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
  letter-spacing: 0.05rem;
}

.btn-whatsapp:hover { opacity: 0.88; }

.btn-buy {
  flex: 1;
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-buy:hover { background: var(--espresso); }

/* ── CHECKOUT MODAL ────────────────────────────────── */
.hidden { display: none !important; }

.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,14,7,0.65);
  backdrop-filter: blur(4px);
}

.checkout-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  overflow-y: auto;
  padding: 0 0 40px;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--sand);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.checkout-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.05rem;
}

.checkout-close {
  background: none;
  border: none;
  color: var(--warm-mid);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.checkout-close:hover { color: var(--brown); }

.checkout-progress {
  height: 2px;
  background: var(--sand);
}

.checkout-progress-fill {
  height: 100%;
  background: var(--brown);
  width: 33%;
  transition: width 0.4s ease;
}

.checkout-step { padding: 24px 24px 8px; }

.step-label {
  font-size: 0.7rem;
  color: var(--warm-mid);
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.step-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 20px;
}

.option-cards { display: flex; flex-direction: column; gap: 12px; }

.option-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.option-card:hover {
  border-color: var(--brown);
  background: var(--sand);
}

.option-icon { font-size: 1.5rem; flex-shrink: 0; }

.momo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  flex-shrink: 0;
}

.airtel-icon { background: #FF0000; color: #fff; }
.mtn-icon    { background: #FFCB00; color: #000; }

.option-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brown);
  margin-bottom: 3px;
}

.option-sub { font-size: 0.78rem; color: var(--warm-mid); }

.checkout-form { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }

.checkout-field { display: flex; flex-direction: column; gap: 6px; }

.checkout-field label {
  font-size: 0.7rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--warm-mid);
  font-weight: 600;
}

.checkout-field input {
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  color: var(--brown);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
}

.checkout-field input:focus { border-color: var(--brown); }
.checkout-field input::placeholder { color: var(--warm-lite); }

.checkout-next-btn {
  width: 100%;
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: var(--radius);
  padding: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.checkout-next-btn:hover { background: var(--espresso); }

.order-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--sand);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--warm-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--sand);
}

.summary-row-total {
  border-bottom: none;
  font-weight: 700;
  color: var(--brown);
  font-size: 0.95rem;
  margin-top: 4px;
  padding-top: 10px;
}

.momo-steps { margin-bottom: 20px; }

.momo-label {
  font-size: 0.72rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 10px;
  font-weight: 600;
}

.momo-list { list-style: none; counter-reset: momo-counter; display: flex; flex-direction: column; gap: 10px; }

.momo-list li {
  font-size: 0.88rem;
  color: var(--warm-mid);
  padding-left: 32px;
  position: relative;
  counter-increment: momo-counter;
}

.momo-list li::before {
  content: counter(momo-counter);
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--brown);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  top: 0px;
}

.momo-highlight {
  color: var(--brown);
  font-weight: 700;
  background: var(--sand);
  padding: 1px 6px;
  border-radius: 3px;
}

.checkout-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.05rem;
  transition: opacity 0.2s;
}

.checkout-whatsapp-btn:hover { opacity: 0.88; }

.success-icon {
  width: 52px;
  height: 52px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--brown);
}

.cash-note { font-size: 0.85rem; color: var(--warm-mid); line-height: 1.6; margin-bottom: 20px; }

/* ── ABOUT PAGE ────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  padding: 80px 6vw;
  align-items: center;
}

.about-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--warm-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  flex-wrap: wrap;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown);
}

.stat-lbl {
  font-size: 0.72rem;
  color: var(--warm-mid);
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── CONTACT PAGE ──────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  padding: 60px 6vw 80px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--warm-mid);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  color: var(--brown);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--brown); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--warm-lite); }

.btn-submit {
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: var(--radius);
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.btn-submit:hover { background: var(--espresso); }

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 28px;
}

.contact-item {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sand);
}

.contact-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-item-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
  text-decoration: none;
}

a.contact-item-value:hover { text-decoration: underline; }

/* ── FOOTER ────────────────────────────────────────── */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  padding: 48px 6vw 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4vw;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247,240,230,0.1);
}

.footer-brand .logo { color: var(--cream); font-size: 1.3rem; }

.footer-brand p {
  font-size: 0.82rem;
  color: var(--warm-lite);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 200px;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--warm-lite);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(247,240,230,0.65);
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--warm-lite);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar { padding: 0 4vw; }
  .nav-links {
    position: static;
    transform: none;
    gap: 4vw;
  }
  .nav-icons { display: none; }

  .hero { height: 85vh; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-btns { gap: 10px; }
  .btn-primary, .btn-outline { padding: 12px 22px; font-size: 0.78rem; }

  .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }

  .brand-band { grid-template-columns: 1fr; }
  .brand-band-img { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 16/9; }

  .product-detail { grid-template-columns: 1fr; }

  .contact-wrap { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .section-wrap { padding: 56px 4vw; }

  .sticky-buy-bar { padding: 12px 4vw; }
}

@media (max-width: 400px) {
  .nav-links { gap: 3vw; }
  .nav-links a { font-size: 0.7rem; letter-spacing: 0.06rem; }
  .logo { font-size: 1rem; }
  .sticky-buy-inner { flex-direction: column; }
  .btn-whatsapp, .btn-buy { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
}
