/* ============================================================
   CACAO REPUBLIC — Ana Stil Dosyası
   ============================================================ */

:root {
  --navy: #0c1832;
  --navy-deep: #060e20;
  --navy-soft: #172245;
  --gold: #c8a45c;
  --gold-light: #dfc080;
  --gold-deep: #a6803a;
  --gold-pale: #f0e4c4;
  --cream: #f7f2e8;
  --cream-deep: #ede4ce;
  --ivory: #fbf8f1;
  --muted: #7e7664;
  --line: rgba(200,164,92,.2);
  --serif: 'Libre Baskerville', Georgia, serif;
  --display: 'DM Serif Display', 'Libre Baskerville', serif;
  --sans: 'Outfit', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--navy);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.7;
}
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--navy-deep);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .06em;
  padding: 10px 0;
  position: relative;
  z-index: 100;
}
.announcement-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.social-links { display: flex; gap: 16px; }
.social-links a { color: var(--gold-light); opacity: .85; transition: opacity .2s, transform .2s; }
.social-links a:hover { opacity: 1; transform: translateY(-1px); }
.announcement-text { text-align: center; font-size: 12px; letter-spacing: .08em; font-family: var(--sans); font-weight: 400; }
.track-order {
  text-align: right; font-size: 12px; color: var(--gold-light);
  letter-spacing: .12em; text-transform: uppercase; position: relative;
}
.track-order::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .35s ease;
}
.track-order:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── HEADER ── */
.header {
  background: var(--ivory);
  position: sticky; top: 0; z-index: 90;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.header.shrink { box-shadow: 0 4px 20px rgba(12,24,50,.07); }
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 110px;
  transition: min-height .3s;
}
.header.shrink .header-inner { min-height: 76px; }

/* NAV */
.primary-nav { display: flex; }
.primary-nav--right { justify-content: flex-end; }
.primary-nav > ul { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--sans);
  color: var(--navy);
  padding: 8px 0;
  display: inline-flex; align-items: center; gap: 4px;
  transition: color .2s;
  position: relative;
}
.primary-nav a::after { display: none; }
.primary-nav a:hover { color: var(--gold-deep); }

/* Active nav link */
.primary-nav a.active { color: var(--gold-deep); }
.primary-nav a.active::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
}

.has-dropdown { position: relative; }
.has-dropdown > a > .chevron {
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 5px; margin-bottom: 2px;
  transition: transform .25s;
}
.has-dropdown:hover > a > .chevron { transform: rotate(-135deg); margin-bottom: -2px; }

.dropdown {
  position: absolute; top: calc(100% + 2px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 14px 0; min-width: 260px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 50;
  box-shadow: 0 20px 50px -20px rgba(12,24,50,.3);
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown li { display: block; }
.dropdown a {
  padding: 9px 24px; display: block;
  text-transform: none; letter-spacing: .02em; font-size: 13px;
  font-family: var(--sans); font-weight: 400;
}
.dropdown a:hover { background: rgba(200,164,92,.08); color: var(--gold-deep); }
.dropdown-section-title {
  padding: 14px 24px 6px;
  font-size: 9.5px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  font-family: var(--sans);
  border-top: 1px solid var(--line);
  margin-top: 6px;
}
.dropdown-section-title:first-child { border-top: none; margin-top: 0; }
.dropdown--wide { min-width: 320px; }

/* LOGO */
.logo {
  display: flex; flex-direction: column; align-items: center;
  color: var(--navy); justify-self: center; text-decoration: none;
}
.logo-img {
  height: 100px; width: auto; object-fit: contain;
  transition: height .3s;
  mix-blend-mode: multiply;
}
.header.shrink .logo-img { height: 72px; }
.logo:hover .logo-img { opacity: .85; }

/* HEADER ACTIONS */
.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); border-radius: 50%;
  transition: background .2s, color .2s; position: relative;
}
.icon-btn:hover { background: rgba(200,164,92,.12); color: var(--gold-deep); }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  background: var(--gold); color: var(--navy-deep);
  font-size: 10px; font-weight: 600;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
}

/* MOBILE TOGGLE */
.menu-toggle {
  display: none; width: 28px; height: 28px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: transform .3s, opacity .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh;
  background: var(--ivory); z-index: 80;
  transform: translateX(-100%); transition: transform .35s ease;
  padding: 110px 32px 40px; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu > nav > ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  display: block; padding: 16px 0;
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  letter-spacing: .01em; border-bottom: 1px solid var(--line); color: var(--navy);
}

/* ── FOOTER ── */
.footer { background: var(--navy-deep); color: var(--cream); padding: 80px 32px 32px; border-top: 1px solid rgba(200,164,92,.18); }
.footer-top {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 50px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(200,164,92,.18);
}
.footer-brand p { margin-top: 20px; color: rgba(247,242,232,.6); font-size: 13.5px; line-height: 1.75; max-width: 320px; font-family: var(--sans); font-weight: 300; }
.footer-logo-img { height: 90px; width: auto; object-fit: contain; filter: brightness(0) saturate(100%) invert(72%) sepia(35%) saturate(500%) hue-rotate(5deg) brightness(90%); }
.footer-col h5 { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 13px; color: rgba(247,242,232,.65); transition: color .2s; font-family: var(--sans); font-weight: 300; }
.footer-col a:hover { color: var(--gold); }
.footer-contact p { margin-bottom: 10px; }
.footer-contact a { font-size: 13px; color: rgba(247,242,232,.65); font-family: var(--sans); font-weight: 300; }
.social-links--footer { margin-top: 20px; gap: 12px; }
.social-links--footer a { color: var(--gold); opacity: .85; }
.social-links--footer a:hover { opacity: 1; }
.footer-bottom {
  max-width: 1400px; margin: 0 auto; padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; font-size: 12px; color: rgba(247,242,232,.5); font-family: var(--sans);
}
.payment-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.pay { font-size: 10.5px; letter-spacing: .12em; padding: 5px 10px; border: 1px solid rgba(200,164,92,.3); color: var(--gold-light); text-transform: uppercase; }

/* ── SHARED COMPONENTS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 36px; font-size: 11px;
  letter-spacing: .3em; text-transform: uppercase; font-weight: 600;
  transition: all .35s ease; border: 1px solid transparent;
  white-space: nowrap; cursor: pointer; font-family: var(--sans);
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(200,164,92,.5); }
.btn-ghost { border-color: rgba(247,242,232,.4); color: var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--navy-deep); border-color: var(--cream); }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-gold-outline { border-color: var(--gold); color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--navy-deep); }

.eyebrow {
  font-size: 10px; letter-spacing: .55em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-weight: 600;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--gold); opacity: .7; }
.section-title {
  font-family: var(--serif);
  font-weight: 700; font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.1; letter-spacing: -.02em; color: var(--navy); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold-deep); font-weight: 400; font-family: var(--display); font-size: 1.08em; }
.section-sub { font-size: 15px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.75; font-weight: 300; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-top: 24px;
  border-bottom: 1px solid var(--gold); padding-bottom: 6px;
  transition: gap .3s, color .3s; font-family: var(--sans); font-weight: 600;
}
.link-arrow:hover { gap: 18px; color: var(--gold-light); }

/* ── MARQUEE ── */
.marquee {
  background: var(--navy); color: var(--gold);
  padding: 22px 0; overflow: hidden;
  border-top: 1px solid rgba(200,164,92,.15);
  border-bottom: 1px solid rgba(200,164,92,.15);
}
.marquee-track {
  display: flex; gap: 50px; white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--display); font-style: italic;
  font-size: 19px; letter-spacing: .03em;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── PAGE HERO (iç sayfalar için) ── */
.page-hero {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 80px 32px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,164,92,.15), transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { background: var(--gold); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  font-size: 16px;
  color: rgba(247,242,232,.75);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.75;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 1400px; margin: 0 auto;
  padding: 18px 32px;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb span { color: var(--navy); font-weight: 500; }

/* ── PRODUCT GROUPS (ürünler sayfası) ── */
.group-tabs {
  display: flex; justify-content: center; gap: 0;
  margin-bottom: 60px; border-bottom: 1px solid var(--line);
}
.group-tab {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  padding: 16px 44px; color: var(--muted); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .25s, border-color .25s;
  background: none; border-left: none; border-right: none; border-top: none;
  font-family: var(--sans); font-weight: 600;
}
.group-tab:hover { color: var(--navy); }
.group-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.group-panel { display: none; }
.group-panel.active { display: block; }
.group-desc {
  text-align: center; max-width: 640px; margin: 0 auto 52px;
  font-family: var(--display); font-size: 22px; font-style: italic;
  color: var(--muted); line-height: 1.65; font-weight: 400;
}
.items-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.flavor-item {
  background: var(--ivory); padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background .25s; cursor: pointer;
  position: relative; overflow: hidden;
}
.flavor-item::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 3px; height: 0; background: var(--gold); transition: height .3s ease;
}
.flavor-item:hover { background: var(--cream); }
.flavor-item:hover::before { height: 100%; }
.flavor-name { font-family: var(--serif); font-size: 15px; font-weight: 400; color: var(--navy); line-height: 1.4; }
.flavor-type { font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-deep); font-family: var(--sans); font-weight: 600; }
.flavor-add {
  margin-top: 12px; width: 32px; height: 32px;
  border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); opacity: 0; transform: translateY(4px);
  transition: opacity .25s, transform .25s, background .2s, border-color .2s;
}
.flavor-item:hover .flavor-add { opacity: 1; transform: translateY(0); }
.flavor-add:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }

/* ── VALUE PROPS ── */
.value-props {
  background: var(--navy-deep); padding: 70px 32px; color: var(--cream);
  border-top: 1px solid rgba(200,164,92,.15); border-bottom: 1px solid rgba(200,164,92,.15);
}
.value-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; align-items: flex-start; }
.value-item { text-align: center; }
.value-icon { width: 44px; height: 44px; margin: 0 auto 18px; color: var(--gold); }
.value-item h4 { font-family: var(--serif); font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--cream); letter-spacing: .01em; }
.value-item p { font-size: 13px; color: rgba(247,242,232,.6); line-height: 1.7; font-family: var(--sans); font-weight: 300; }

/* ── NEWSLETTER ── */
.newsletter { padding: 110px 32px; background: var(--cream); }
.newsletter-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.newsletter-text h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.15; color: var(--navy); margin-bottom: 16px; letter-spacing: -.02em; }
.newsletter-text h2 em { font-style: italic; color: var(--gold-deep); font-weight: 400; font-family: var(--display); font-size: 1.08em; }
.newsletter-text p { color: var(--muted); font-size: 14px; line-height: 1.75; font-weight: 300; }
.newsletter-form { display: flex; flex-direction: column; gap: 14px; }
.newsletter-form input { padding: 18px 22px; background: var(--ivory); border: 1px solid var(--line); font-family: var(--sans); font-size: 14px; color: var(--navy); transition: border-color .2s; }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form .btn { align-self: flex-start; }
.newsletter-success { display: none; font-style: italic; color: var(--gold-deep); font-family: var(--display); font-size: 18px; }
.newsletter-success.show { display: block; }

/* ── HAKKIMIZDA sayfası ── */
.about-section { padding: 110px 32px; max-width: 1400px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-img-wrap { position: relative; aspect-ratio: 4/5; background: var(--cream-deep); }
.about-img-wrap svg { width: 100%; height: 100%; }
.about-text h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(32px, 4vw, 52px); line-height: 1.1; color: var(--navy); margin-bottom: 28px; letter-spacing: -.02em; }
.about-text h2 em { font-style: italic; color: var(--gold-deep); font-weight: 400; font-family: var(--display); font-size: 1.08em; }
.about-text .lead { font-family: var(--display); font-size: 21px; font-style: italic; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.about-text p { font-size: 15px; color: var(--navy); line-height: 1.8; margin-bottom: 18px; font-weight: 300; }

/* ── İLETİŞİM sayfası ── */
.contact-section { padding: 110px 32px; max-width: 1400px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-info h3 { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 24px; letter-spacing: -.01em; }
.contact-info p { font-size: 14.5px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.contact-info a { color: var(--gold-deep); transition: color .2s; }
.contact-info a:hover { color: var(--gold); }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-family: var(--sans); font-weight: 600; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 16px 18px; background: var(--cream); border: 1px solid var(--line);
  font-family: var(--sans); font-size: 14px; color: var(--navy);
  transition: border-color .2s; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 140px; }

/* ── HEDIYE sayfası ── */
.gift-section { padding: 110px 32px; max-width: 1400px; margin: 0 auto; }
.gift-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.gift-card {
  border: 1px solid var(--line); background: var(--cream);
  padding: 40px 32px; transition: all .35s ease;
  position: relative; overflow: hidden;
}
.gift-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform .4s ease;
}
.gift-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -20px rgba(12,24,50,.15); }
.gift-card:hover::after { transform: scaleX(1); }
.gift-card-icon { width: 52px; height: 52px; color: var(--gold-deep); margin-bottom: 24px; }
.gift-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.gift-card p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

/* ── KOLEKSİYONLAR sayfası ── */
.collections-section { padding: 80px 32px 110px; max-width: 1400px; margin: 0 auto; }
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.coll-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: var(--cream-deep);
  display: block;
}
.coll-card:hover .coll-img { transform: scale(1.05); }
.coll-img { position: absolute; inset: 0; width: 100%; height: 100%; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.coll-img svg { width: 100%; height: 100%; }
.coll-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 32px 28px;
  background: linear-gradient(to top, rgba(6,14,32,.95) 0%, rgba(6,14,32,.7) 50%, transparent 100%);
  color: var(--cream);
}
.coll-label { font-size: 10px; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-family: var(--sans); font-weight: 700; display: block; }
.coll-info h3 { font-family: var(--serif); font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.coll-cta { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); font-family: var(--sans); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: gap .3s; }
.coll-card:hover .coll-cta { gap: 14px; color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .items-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .gift-cards { grid-template-columns: repeat(2, 1fr); }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .announcement-inner { grid-template-columns: 1fr; }
  .announcement-inner .social-links, .announcement-inner .track-order { display: none; }
  .header-inner { padding: 0 20px; min-height: 80px; }
  .logo-img { height: 72px; }
  .header.shrink .logo-img { height: 54px; }
  .items-grid { grid-template-columns: 1fr; }
  .group-tabs { overflow-x: auto; }
  .group-tab { padding: 12px 20px; font-size: 10.5px; letter-spacing: .15em; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer { padding: 60px 24px 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .gift-cards { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 20px 50px; }
  .breadcrumb { padding: 14px 20px; }
}
