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

:root {
  --gold: #A68A2E;
  --gold-light: #C9A84C;
  --emerald: #1A4D3A;
  --burgundy: #6B2737;
  --teal: #1C4A52;
  --cream: #FAF7F0;
  --ivory: #F5F0E8;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --border: #E8E0D0;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  min-height: 100vh;
}

/* NAV */
nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-links > li > a:hover { color: var(--gold); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--border);
  min-width: 200px;
  z-index: 200;
  padding: 8px 0;
}

.nav-links > li:hover .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  text-decoration: none;
  text-transform: uppercase;
}

.dropdown a:hover { color: var(--gold); background: var(--ivory); }

.dropdown .coming-soon {
  color: var(--text-light);
  cursor: default;
  font-style: italic;
}

.dropdown .coming-soon:hover { color: var(--text-light); background: none; }

.nav-cart {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  cursor: pointer;
  text-transform: uppercase;
}

/* BREADCRUMB */
.breadcrumb {
  padding: 16px 40px;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* PRODUCT LAYOUT */
.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* GALLERY */
.gallery { position: sticky; top: 90px; }

.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ivory);
  margin-bottom: 12px;
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ivory);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.thumb-placeholder {
  flex-direction: column;
  gap: 3px;
  padding: 4px;
  text-align: center;
}

.thumb-placeholder span {
  font-family: 'Cinzel', serif;
  font-size: 0.42rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1.2;
}

/* PRODUCT INFO */
.product-info { padding-top: 8px; }

.product-category {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.product-description {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

/* BUTTONS */
.btn-cart {
  width: 100%;
  padding: 16px;
  background: var(--teal);
  color: var(--cream);
  border: none;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 12px;
}

.btn-cart:hover { background: var(--emerald); }

/* TRUST BADGES */
.trust-badges {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-mid);
}

.badge svg { color: var(--gold); flex-shrink: 0; }

/* ACCORDION */
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  user-select: none;
}

.accordion-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 400;
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s;
  line-height: 1;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.open .accordion-body { max-height: 800px; }

.accordion-body-inner {
  padding-bottom: 20px;
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--text-mid);
}

.accordion-body-inner ul { padding-left: 16px; margin-top: 8px; }
.accordion-body-inner li { margin-bottom: 4px; }
.accordion-body-inner p { margin-bottom: 12px; }
.accordion-body-inner strong { color: var(--text-dark); }

/* HOW IT'S MADE */
.how-made {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.how-made-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.how-made-text p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.how-made-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.infographic-card {
  background: var(--ivory);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
}

.infographic-card svg { color: var(--gold); margin-bottom: 14px; }

.infographic-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.infographic-card p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* FOOTER */
footer {
  background: #1C4A52;
  padding: 4rem 3rem 2rem;
}

footer a { color: #C9A84C; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-container { grid-template-columns: 1fr; gap: 32px; padding: 0 20px 60px; }
  .gallery { position: static; }
  .how-made { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .breadcrumb { padding: 12px 20px; }
  .trust-badges { gap: 12px; }
}
