/* LAYLA'S MOSAIC — Option A: "Zellige" — Rich & Ornate */
/* Heavy mosaic patterns throughout. Feels like walking into a Moroccan riad. */

/* ═══════════════════════════════════════════
   CSS MOSAIC PATTERNS (SVG Data URIs)
   ═══════════════════════════════════════════ */

:root {
  --navy: #1D3565;
  --cobalt: #2B5DA7;
  --sky: #6AADD8;
  --cream: #F5F0E8;
  --dark: #2C2825;
  --gold: #C8963E;
  --gold-light: #d4a94f;
  --terracotta: #C2654A;
  --white: #FFFFFF;
  --light-gray: #6B6560;

  /* Mosaic SVG Patterns */
  --pattern-star: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C8963E' stroke-width='0.5' opacity='0.15'%3E%3Cpath d='M30 0L35 15L50 10L40 25L55 30L40 35L50 50L35 45L30 60L25 45L10 50L20 35L5 30L20 25L10 10L25 15Z'/%3E%3C/g%3E%3C/svg%3E");

  --pattern-diamond: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C8963E' stroke-width='0.5' opacity='0.12'%3E%3Cpath d='M20 0L40 20L20 40L0 20Z'/%3E%3Cpath d='M20 5L35 20L20 35L5 20Z'/%3E%3C/g%3E%3C/svg%3E");

  --pattern-hex: url("data:image/svg+xml,%3Csvg width='56' height='48' viewBox='0 0 56 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%236AADD8' stroke-width='0.4' opacity='0.1'%3E%3Cpath d='M14 0L28 8L28 24L14 32L0 24L0 8Z'/%3E%3Cpath d='M42 0L56 8L56 24L42 32L28 24L28 8Z'/%3E%3Cpath d='M28 16L42 24L42 40L28 48L14 40L14 24Z'/%3E%3C/g%3E%3C/svg%3E");

  --pattern-zellige: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' opacity='0.12'%3E%3Cpath stroke='%23C8963E' stroke-width='0.6' d='M0 40L20 20L40 40L20 60Z'/%3E%3Cpath stroke='%236AADD8' stroke-width='0.6' d='M40 40L60 20L80 40L60 60Z'/%3E%3Cpath stroke='%23C8963E' stroke-width='0.6' d='M20 20L40 0L60 20L40 40Z'/%3E%3Cpath stroke='%236AADD8' stroke-width='0.6' d='M20 60L40 40L60 60L40 80Z'/%3E%3Ccircle cx='40' cy='40' r='4' stroke='%23C8963E' stroke-width='0.4'/%3E%3Ccircle cx='0' cy='0' r='3' stroke='%236AADD8' stroke-width='0.4'/%3E%3Ccircle cx='80' cy='0' r='3' stroke='%236AADD8' stroke-width='0.4'/%3E%3Ccircle cx='0' cy='80' r='3' stroke='%236AADD8' stroke-width='0.4'/%3E%3Ccircle cx='80' cy='80' r='3' stroke='%236AADD8' stroke-width='0.4'/%3E%3C/g%3E%3C/svg%3E");

  --divider-mosaic: url("data:image/svg+xml,%3Csvg width='48' height='12' viewBox='0 0 48 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cpath d='M6 0L12 6L6 12L0 6Z' fill='%23C8963E' opacity='0.25'/%3E%3Cpath d='M18 0L24 6L18 12L12 6Z' fill='%232B5DA7' opacity='0.2'/%3E%3Cpath d='M30 0L36 6L30 12L24 6Z' fill='%23C8963E' opacity='0.25'/%3E%3Cpath d='M42 0L48 6L42 12L36 6Z' fill='%232B5DA7' opacity='0.2'/%3E%3C/g%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--cream);
  background: var(--navy);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  line-height: 1.2;
}

h1 { font-size: 52px; font-weight: 700; }
h2 { font-size: 36px; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 24px; font-weight: 400; }

p { margin-bottom: 16px; }

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Gold accent for key words */
.gold { color: var(--gold); }

/* ═══════════════════════════════════════════
   SCROLL FADE-IN ANIMATIONS
   ═══════════════════════════════════════════ */

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-section {
  animation: fadeInUp 0.8s ease-out both;
}

/* ═══════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════ */

.announcement {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════ */

header {
  background: rgba(29, 53, 101, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 150, 62, 0.2);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(1.2);
}

nav { display: flex; gap: 32px; align-items: center; }

nav a {
  color: var(--cream);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

nav a:hover { color: var(--gold); }
nav a:hover::after { width: 100%; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

#nav-toggle { display: none; }

/* Dropdown */
nav .shop-dropdown { position: relative; cursor: pointer; }
nav .shop-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(200, 150, 62, 0.3);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--cream);
}

.dropdown-menu a:hover {
  background: rgba(200, 150, 62, 0.1);
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   MOSAIC DIVIDER STRIP
   ═══════════════════════════════════════════ */

.mosaic-divider {
  height: 12px;
  background-image: var(--divider-mosaic);
  background-repeat: repeat-x;
  background-size: 48px 12px;
}

.mosaic-divider-thick {
  height: 24px;
  background-image: var(--divider-mosaic);
  background-repeat: repeat;
  background-size: 48px 12px;
  opacity: 0.8;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  background: linear-gradient(135deg, #0d1f3c 0%, var(--navy) 40%, #1a2d5a 100%);
  background-image: linear-gradient(135deg, #0d1f3c 0%, var(--navy) 40%, #1a2d5a 100%), var(--pattern-star);
  color: var(--cream);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--pattern-star);
  background-size: 60px 60px;
  opacity: 1;
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
  color: var(--cream);
  font-size: 60px;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 .gold {
  color: var(--gold);
}

.hero p {
  font-size: 20px;
  max-width: 640px;
  margin: 0 auto 36px;
  opacity: 0.85;
  line-height: 1.6;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: linear-gradient(90deg, var(--gold), #d4a94f, var(--gold));
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(200, 150, 62, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(200, 150, 62, 0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(200, 150, 62, 0.1);
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   VALUE STRIP
   ═══════════════════════════════════════════ */

.value-strip {
  background: rgba(43, 93, 167, 0.2);
  padding: 48px 0;
  border-top: 1px solid rgba(200, 150, 62, 0.15);
  border-bottom: 1px solid rgba(200, 150, 62, 0.15);
  background-image: var(--pattern-diamond);
  background-size: 40px 40px;
}

.value-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.value-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-top: 12px;
}

.value-icon {
  font-size: 28px;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */

section {
  padding: 80px 0;
  background-image: var(--pattern-zellige);
  background-size: 80px 80px;
}

section.alt-bg {
  background-color: rgba(43, 93, 167, 0.15);
  background-image: var(--pattern-hex);
  background-size: 56px 48px;
}

section.cream-bg {
  background: var(--cream);
  background-image: var(--pattern-diamond);
  background-size: 40px 40px;
  color: var(--dark);
}

section.cream-bg h2,
section.cream-bg h3 { color: var(--navy); }

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

.section-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--sky);
  max-width: 540px;
  margin: 12px auto 0;
}

/* ═══════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: rgba(13, 31, 60, 0.8);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(200, 150, 62, 0.15);
  transition: all 0.4s;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: border-color 0.4s;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.product-card:hover::before {
  border-color: var(--gold);
}

.product-image {
  background: linear-gradient(135deg, #0d1f3c, #1a2d5a);
  background-image: linear-gradient(135deg, #0d1f3c, #1a2d5a), var(--pattern-diamond);
  background-size: auto, 40px 40px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  font-size: 14px;
  position: relative;
}

.product-image .placeholder-text {
  text-align: center;
  padding: 20px;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 8px;
}

.product-info .price {
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.product-info .desc {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   COLLECTION CARDS
   ═══════════════════════════════════════════ */

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.collection-card {
  background: rgba(43, 93, 167, 0.3);
  border: 1px solid rgba(200, 150, 62, 0.2);
  border-radius: 4px;
  padding: 48px 32px;
  text-align: center;
  color: var(--cream);
  transition: all 0.3s;
  background-image: var(--pattern-diamond);
  background-size: 40px 40px;
}

.collection-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(200, 150, 62, 0.15);
}

.collection-card h3 { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 12px; }
.collection-card p { opacity: 0.8; font-size: 15px; margin-bottom: 20px; }
.collection-card .btn { font-size: 13px; padding: 10px 24px; }

/* ═══════════════════════════════════════════
   BRAND STORY
   ═══════════════════════════════════════════ */

.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.brand-story-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 24px 0;
  line-height: 1.5;
}

.brand-story-image {
  background: linear-gradient(135deg, #0d1f3c, #1a2d5a);
  background-image: var(--pattern-star);
  background-size: 60px 60px;
  border-radius: 4px;
  border: 1px solid rgba(200, 150, 62, 0.2);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
}

/* ═══════════════════════════════════════════
   CRAFT STEPS
   ═══════════════════════════════════════════ */

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.craft-step { padding: 32px 16px; }

.craft-step .step-number {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}

.craft-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 8px;
}

.craft-step p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  background: rgba(13, 31, 60, 0.6);
  border-radius: 4px;
  padding: 32px;
  border: 1px solid rgba(200, 150, 62, 0.15);
}

.testimonial .stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial .author {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   EMAIL SIGNUP
   ═══════════════════════════════════════════ */

.email-signup {
  background: linear-gradient(135deg, #0d1f3c 0%, var(--cobalt) 100%);
  background-image: var(--pattern-star);
  background-size: 60px 60px;
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.email-signup h2 { color: var(--gold); margin-bottom: 12px; }
.email-signup p { opacity: 0.85; max-width: 480px; margin: 0 auto 32px; }

.email-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 8px;
}

.email-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(200, 150, 62, 0.3);
  border-radius: 3px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: rgba(13, 31, 60, 0.8);
  color: var(--cream);
}

.email-form input::placeholder { color: rgba(245, 240, 232, 0.4); }

.email-form .btn { white-space: nowrap; }

.email-fine-print {
  font-size: 13px;
  opacity: 0.5;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

footer {
  background: #0a1428;
  color: var(--cream);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(200, 150, 62, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  opacity: 0.6;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
}

.footer-col h4 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(245, 240, 232, 0.6);
  font-size: 14px;
  margin-bottom: 10px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(200, 150, 62, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.4;
}

/* ═══════════════════════════════════════════
   PAGE HERO (Inner pages)
   ═══════════════════════════════════════════ */

.page-hero {
  background: linear-gradient(135deg, #0d1f3c 0%, var(--navy) 70%);
  background-image: var(--pattern-star);
  background-size: 60px 60px;
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.page-hero h1 { color: var(--cream); margin-bottom: 12px; }
.page-hero p { font-size: 18px; opacity: 0.8; max-width: 560px; margin: 0 auto; font-family: 'Cormorant Garamond', serif; font-style: italic; }

/* ═══════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════ */

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

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-main {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0d1f3c, #1a2d5a);
  background-image: var(--pattern-diamond);
  background-size: 40px 40px;
  border-radius: 4px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 150, 62, 0.15);
}

.gallery-thumb {
  background: linear-gradient(135deg, #0d1f3c, #1a2d5a);
  border-radius: 4px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 150, 62, 0.1);
  transition: border-color 0.3s;
  cursor: pointer;
  font-size: 12px;
  color: var(--sky);
}

.gallery-thumb:hover {
  border-color: var(--gold);
}

.product-detail-info h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

.product-detail-info .price {
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}

.product-detail-info .description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 32px;
}

.btn-add-cart {
  display: block;
  width: 100%;
  padding: 18px 36px;
  background: var(--gold);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.btn-add-cart:hover {
  background: linear-gradient(90deg, var(--gold), #d4a94f, var(--gold));
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(200, 150, 62, 0.4);
  color: var(--navy);
}

/* Specs Table */
.specs-table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
}

.specs-table th,
.specs-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(200, 150, 62, 0.1);
  font-size: 14px;
}

.specs-table th {
  color: var(--gold);
  font-weight: 600;
  width: 40%;
}

.specs-table td {
  color: rgba(245, 240, 232, 0.7);
}

/* You May Also Like */
.also-like {
  padding: 80px 0;
}

.also-like .product-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   FAQ STYLES
   ═══════════════════════════════════════════ */

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px;
}

.page-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--gold);
}

.page-content p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.8);
}

.faq-item {
  border-bottom: 1px solid rgba(200, 150, 62, 0.15);
  padding: 24px 0;
}

.faq-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.7);
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--cream);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(200, 150, 62, 0.2);
  border-radius: 3px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
  background: rgba(13, 31, 60, 0.6);
  color: var(--cream);
}

.contact-form textarea { height: 140px; resize: vertical; }

.contact-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gold);
}

.contact-info p {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════
   SPECS SECTION (Products page)
   ═══════════════════════════════════════════ */

.specs-box {
  background: rgba(13, 31, 60, 0.6);
  border: 1px solid rgba(200, 150, 62, 0.15);
  border-radius: 4px;
  padding: 32px;
  margin-top: 24px;
}

.specs-box h3 {
  color: var(--gold);
  margin-bottom: 16px;
}

.specs-box ul {
  list-style: none;
  padding: 0;
  color: rgba(245, 240, 232, 0.7);
  font-size: 15px;
  line-height: 2;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 18px; }
  h2 { font-size: 28px; }

  nav { display: none; }

  #nav-toggle:checked ~ nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px;
    border-bottom: 1px solid rgba(200, 150, 62, 0.2);
    gap: 16px;
  }

  .hamburger { display: flex; }

  .value-strip .container,
  .product-grid,
  .collection-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { grid-template-columns: 1fr 1fr; }
  .gallery-main { height: 280px; }

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

  .email-form { flex-direction: column; }
}
