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

:root {
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --bg-dark: #0a0a0a;
  --bg-section: #0f0f0f;
  --bg-card: #141414;
  --text: #e8e8e8;
  --text-muted: #888;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 35px;
  width: auto;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cart {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-cart:hover { color: var(--gold); }
.nav-cart svg { display: block; }
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.6rem;
  font-weight: 500;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-count:empty { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  margin: 6px 0;
  transition: 0.3s;
}

/* ── PAGE HEADER (subpages) ── */
.page-header {
  padding: 7rem 2rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
}
.page-header .section-label { margin-bottom: 1rem; }
.page-header .section-title { margin-bottom: 0; }
.page-header .divider { margin: 2rem auto; }

/* ── COMMON ── */
section { padding: 7rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ── HERO (video) ── */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, transparent 30%, transparent 60%, rgba(10,10,10,0.6) 85%, var(--bg-dark) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 0 2rem; }
.hero-badge {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}
.hero-cta:hover {
  background: var(--gold);
  color: var(--bg-dark);
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
  z-index: 2;
}
.scroll-indicator span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s infinite;
}

/* ── LANDING: COLLECTION SHOWCASE ── */
.collection { background: var(--bg-section); }
.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
.collection-card {
  border: 1px solid rgba(201, 169, 110, 0.08);
  background: var(--bg-card);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.4s, transform 0.4s;
}
.collection-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-4px);
}
.collection-card-img {
  aspect-ratio: 1/1;
  background: var(--bg-section);
  overflow: hidden;
}
.collection-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.collection-card:hover .collection-card-img img {
  transform: scale(1.03);
}
.collection-card-body {
  padding: 1.5rem;
}
.collection-card-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.collection-card-body .card-material {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.collection-card-body .card-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.collection-card-body .card-link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── LANDING: FEATURE CARDS ── */
.features { background: var(--bg-section); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.feature-card {
  border: 1px solid rgba(201, 169, 110, 0.08);
  background: var(--bg-card);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.4s, transform 0.4s;
}
.feature-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-4px);
}
.feature-card-img {
  aspect-ratio: 3/4;
  background: var(--bg-section);
  overflow: hidden;
}
.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-card-body {
  padding: 1.5rem;
}
.feature-card-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.feature-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.feature-card-link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── LANDING: BANNER SECTION ── */
.banner {
  padding: 7rem 2rem;
  text-align: center;
  background: var(--bg-dark);
}
.banner-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.4;
}
.banner p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ── LANDING: IMAGE + TEXT ROW ── */
.split { background: var(--bg-section); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-grid.reverse .split-image { order: 2; }
.split-grid.reverse .split-text { order: 1; }
.split-image {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  margin-top: 1rem;
}
.btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ── PRODUCT PAGE ── */
.product { background: var(--bg-section); }
.product + .product { background: var(--bg-dark); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-image {
  aspect-ratio: 1/1;
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info .price {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.product-info p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.badge {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── STRAP SELECTOR ── */
.strap-selector {
  margin-top: 1.5rem;
}
.strap-selector-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.strap-options {
  display: flex;
  gap: 0.75rem;
}
.strap-option {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s;
  position: relative;
}
.strap-option:hover,
.strap-option.selected {
  border-color: var(--gold);
}
.strap-option[data-strap="brown"] { background: #6b4226; }
.strap-option[data-strap="black"] { background: #1a1a1a; border: 2px solid #333; }
.strap-option[data-strap="black"].selected { border-color: var(--gold); }
.strap-option[data-strap="green"] { background: #2d4a2e; }

/* ── ADD TO CART ── */
.btn-add-cart {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--bg-dark);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-family: var(--sans);
  font-weight: 500;
  margin-top: 1.5rem;
}
.btn-add-cart:hover {
  background: transparent;
  color: var(--gold);
}

/* ── SPECS ── */
.specs { background: var(--bg-dark); }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.spec-card {
  padding: 2rem;
  border: 1px solid rgba(201, 169, 110, 0.08);
  background: var(--bg-card);
}
.spec-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
}
.spec-row .label { color: var(--text-muted); }
.spec-row .value { color: var(--text); }

/* ── STORY ── */
.story { background: var(--bg-section); }
.story-content { max-width: 700px; }
.story-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.story-quote {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  line-height: 1.4;
}
.founder-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.1);
}
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── CHARITY ── */
.charity { background: var(--bg-dark); }
.charity-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.charity-stat {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.charity-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.charity p { color: var(--text-muted); margin-bottom: 1rem; }

/* ── SERVICE ── */
.service { background: var(--bg-section); }
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-item {
  padding: 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.08);
  background: var(--bg-card);
}
.service-item h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.service-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── CONTACT / FORMS ── */
.contact { background: var(--bg-dark); }
.contact-form { max-width: 500px; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.15);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  padding: 0.9rem 2.5rem;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-family: var(--sans);
}
.form-submit:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ── CART PAGE ── */
.cart-section { background: var(--bg-section); }
.cart-empty {
  text-align: center;
  padding: 4rem 0;
}
.cart-empty p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.cart-items { margin-bottom: 3rem; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cart-item-img {
  width: 100px;
  height: 100px;
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  overflow: hidden;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-details h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.cart-item-details .cart-item-variant {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.cart-item-details .cart-item-price {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(201, 169, 110, 0.2);
}
.qty-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}
.qty-btn:hover { color: var(--gold); }
.qty-value {
  width: 32px;
  text-align: center;
  font-size: 0.85rem;
}
.cart-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.cart-remove:hover { color: #c44; }
.cart-summary {
  max-width: 400px;
  margin-left: auto;
  border: 1px solid rgba(201, 169, 110, 0.1);
  padding: 2rem;
  background: var(--bg-card);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.cart-summary-row.total {
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  margin-top: 0.75rem;
  padding-top: 1rem;
  font-size: 1.1rem;
  color: var(--text);
}
.cart-summary-row.total .cart-summary-amount {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.3rem;
}
.btn-checkout {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--bg-dark);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-family: var(--sans);
  font-weight: 500;
  text-align: center;
}
.btn-checkout:hover {
  background: transparent;
  color: var(--gold);
}

/* ── REVIEWS ── */
.reviews { background: var(--bg-section); }
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.reviews-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.reviews-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.review-card {
  padding: 2rem;
  border: 1px solid rgba(201, 169, 110, 0.08);
  background: var(--bg-card);
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.review-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-name {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 400;
}
.review-badge {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 0.2rem 0.6rem;
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ── NEWSLETTER ── */
.newsletter {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  padding: 6rem 2rem;
  background: var(--bg-dark);
  text-align: center !important;
}
.newsletter .container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center !important;
}
.newsletter .section-label {
  margin-bottom: 1rem;
}
.newsletter .section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.newsletter .newsletter-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.newsletter-form input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  text-align: center;
}
.newsletter-form input::placeholder { color: #555; }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}
.newsletter-form button {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--bg-dark);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}
.newsletter-form button:hover {
  background: transparent;
  color: var(--gold);
}
.newsletter-msg {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold);
  min-height: 1.2em;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding: 3rem 2rem;
  background: var(--bg-dark);
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  height: 120px;
  width: auto;
  display: block;
}
footer h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
footer ul a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: block; z-index: 101; }
  .product-grid,
  .split-grid,
  .charity-content { grid-template-columns: 1fr; gap: 2rem; }
  .split-grid.reverse .split-image { order: 1; }
  .split-grid.reverse .split-text { order: 2; }
  .collection-grid,
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  section { padding: 5rem 1.5rem; }
  .page-header { padding: 6rem 1.5rem 1.5rem; }
  .cart-item { grid-template-columns: 80px 1fr; gap: 1rem; }
  .cart-item-actions { grid-column: 1 / -1; justify-content: space-between; }
  .cart-summary { margin-left: 0; }
}
