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

:root {
  --gold: #A68A2E;
  --gold-light: #C9A84C;
  --gold-pale: #F5EDD4;
  --gold-dark: #7A6420;
  --emerald: #1A4D3A;
  --emerald-mid: #2D6E52;
  --emerald-light: #EAF3EC;
  --burgundy: #6B2737;
  --burgundy-light: #F5ECE9;
  --teal: #1C4A52;
  --cream: #FAF7F0;
  --ivory: #F5F0E8;
  --text-dark: #1C1A14;
  --text-mid: #4A4535;
  --text-light: #8A8270;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,247,240,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--gold-light);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-mid);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-actions a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.cart-btn {
  background: var(--gold);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 1px;
  transition: background 0.2s !important;
}

.cart-btn:hover { background: var(--gold-dark) !important; }

/* MARQUEE */
.marquee-strip {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: uppercase;
  padding: 0 2rem;
}

.marquee-dot { color: rgba(255,255,255,0.4); margin: 0 0.5rem; }

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

/* BUTTONS */
.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold-dark); }

.btn-outline {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-dark);
  padding: 13px 32px;
  border: 1px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover { background: var(--gold); color: #fff; }

/* SECTION COMMON */
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--gold); }

/* FOOTER */
footer {
  background: var(--text-dark);
  padding: 4rem 5rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(245,240,232,0.1);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,232,0.45);
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 240px;
  letter-spacing: 0.03em;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245,240,232,0.25);
  letter-spacing: 0.05em;
}

/* CART SIDEBAR */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: -480px;
  width: 480px;
  height: 100vh;
  background: var(--ivory);
  z-index: 201;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,0.15);
}

.cart-sidebar.open { right: 0; }

.cart-header {
  padding: 2rem;
  border-bottom: 0.5px solid rgba(166,138,46,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  text-transform: uppercase;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-mid);
  line-height: 1;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 0.5px solid rgba(166,138,46,0.15);
  align-items: center;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.cart-item-size {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--gold-dark);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.cart-item-remove:hover { color: var(--burgundy); }

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-light);
}

.cart-footer {
  padding: 2rem;
  border-top: 0.5px solid rgba(166,138,46,0.2);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cart-total span:first-child {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.cart-total span:last-child {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--gold-dark);
  font-weight: 500;
}

.cart-checkout-btn {
  width: 100%;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--emerald);
  color: #fff;
  border: none;
  padding: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

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

/* BREADCRUMB */
.breadcrumb {
  padding: 1rem 5rem;
  margin-top: 72px;
  background: var(--ivory);
  border-bottom: 0.5px solid rgba(166,138,46,0.15);
}

.breadcrumb a, .breadcrumb span {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 0.75rem; }
.breadcrumb .current { color: var(--text-mid); }

/* PRODUCT PAGE */
.product-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.product-image-main {
  position: sticky;
  top: 100px;
}

.product-image-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-style-tag {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-name em { font-style: italic; color: var(--gold); }

.product-price {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold-dark);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.product-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
}

.product-details-list {
  list-style: none;
  margin-bottom: 2rem;
}

.product-details-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  padding: 0.6rem 0;
  border-bottom: 0.5px solid rgba(166,138,46,0.12);
  letter-spacing: 0.03em;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.product-details-list li::before {
  content: '–';
  color: var(--gold);
  flex-shrink: 0;
}

.add-to-cart-btn {
  width: 100%;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--emerald);
  color: #fff;
  border: none;
  padding: 18px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 1rem;
}

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

.product-section-title {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 1rem;
  padding-top: 2rem;
  border-top: 0.5px solid rgba(166,138,46,0.2);
}

.care-list, .shipping-list {
  list-style: none;
}

.care-list li, .shipping-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  padding: 0.5rem 0;
  letter-spacing: 0.03em;
  line-height: 1.7;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.care-list li::before { content: '·'; color: var(--gold); font-size: 1.2rem; line-height: 1.2; }
.shipping-list li::before { content: '·'; color: var(--gold); font-size: 1.2rem; line-height: 1.2; }

/* COLLECTION PAGE */
.collection-hero {
  margin-top: 72px;
  background: var(--emerald);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.collection-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(166,138,46,0.2);
}

.collection-hero .section-label { color: var(--gold-light); }

.collection-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.collection-hero h1 em { font-style: italic; color: var(--gold-light); }

.collection-hero p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,240,232,0.65);
  max-width: 500px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.collection-grid {
  padding: 4rem 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: #fff;
  border: 0.5px solid rgba(166,138,46,0.2);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28,26,20,0.08);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.product-card-info {
  padding: 1.25rem;
}

.product-card-style {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.product-card-size {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.product-card-price {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--gold-dark);
}

/* NEWSLETTER */
.newsletter-section {
  background: var(--teal);
  text-align: center;
  padding: 5rem;
}

.newsletter-section .section-label { color: var(--gold-light); }
.newsletter-section .section-title { color: var(--ivory); margin: 0 auto 0.75rem; }
.newsletter-section .section-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,240,232,0.6);
  margin: 0 auto 2.5rem;
  text-align: center;
  max-width: 400px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

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

.email-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(245,240,232,0.3);
  background: rgba(245,240,232,0.08);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  outline: none;
  border-right: none;
}

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

.email-form button {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.email-form button:hover { background: var(--gold-dark); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease both; }
