/* =============================================
   Lux Elegans — Storefront Styles
   Dark luxury theme with gold accents
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --gold-dark: #A88B4A;
  --cream: #FAF7F2;
  --dark: #1A1814;
  --dark-warm: #2A2520;
  --dark-card: #221F1A;
  --text-muted: #8A8279;
  --text-light: #B8AFA5;
  --border: rgba(196,162,101,0.12);
  --border-hover: rgba(196,162,101,0.35);
  --radius: 2px;
  --transition: 0.3s ease;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

/* --- NAVIGATION --- */
.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(26,24,20,0.97), rgba(26,24,20,0.85));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,162,101,0.06);
}

.nav-left { display: flex; align-items: center; gap: 2rem; }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

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

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  cursor: pointer;
}

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

.cart-icon {
  width: 20px;
  height: 20px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(26,24,20,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.1em;
  transition: color var(--transition);
}

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

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
}

/* --- PAGE CONTAINER --- */
.page { padding-top: 80px; min-height: 100vh; }

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

/* --- BREADCRUMB --- */
.breadcrumb {
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 0.5rem; opacity: 0.5; }

/* --- PAGE HEADER --- */
.page-header {
  text-align: center;
  padding: 4rem 0 3rem;
}

.page-header .overline {
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
}

.page-header p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* --- CATEGORY TABS --- */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cat-tab {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Outfit', sans-serif;
}

.cat-tab:hover {
  border-color: var(--border-hover);
  color: var(--cream);
}

.cat-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,162,101,0.08);
}

/* --- PRODUCT GRID --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 6rem;
}

/* --- PRODUCT CARD --- */
.product-card {
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  background: var(--dark);
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-warm) 0%, var(--dark) 100%);
  position: relative;
}

.product-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 1px solid rgba(196,162,101,0.08);
  border-radius: 50%;
}

.product-placeholder .icon {
  font-size: 2.5rem;
  opacity: 0.25;
  margin-bottom: 0.5rem;
}

.product-placeholder .cat-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
}

/* Category-specific gradients */
.cat-mens .product-placeholder,
.product-placeholder.cat-mens {
  background: linear-gradient(135deg, #1e1c18 0%, #2a2520 50%, #1a1814 100%);
}

.cat-womens .product-placeholder,
.product-placeholder.cat-womens {
  background: linear-gradient(135deg, #1e1a1c 0%, #2a2025 50%, #1a1418 100%);
}

.cat-children .product-placeholder,
.product-placeholder.cat-children {
  background: linear-gradient(135deg, #1a1c1e 0%, #202528 50%, #141618 100%);
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
}

.product-card-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-category {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: var(--cream);
}

.product-card-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
}

.product-card-compare {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
  font-weight: 300;
}

.product-card-action {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity var(--transition);
}

.product-card:hover .product-card-action { opacity: 0.7; }

/* --- PRODUCT DETAIL --- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 2rem 0 6rem;
  align-items: start;
}

.product-detail-image {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  position: relative;
}

.product-detail-image .product-placeholder {
  width: 100%;
  height: 100%;
}

.product-detail-image .product-placeholder .icon {
  font-size: 4rem;
}

.product-detail-info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.product-detail-category {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.product-detail-price .current {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
}

.product-detail-price .compare {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 300;
}

.product-detail-price .save {
  font-size: 0.75rem;
  color: #7a9e7a;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.product-detail-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-detail-specs {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--dark-warm);
}

.product-detail-specs h3 {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(196,162,101,0.06);
  font-size: 0.85rem;
}

.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--text-muted); font-weight: 300; }
.spec-value { color: var(--cream); font-weight: 400; }

.product-detail-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-detail-trust {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

.trust-item svg { flex-shrink: 0; opacity: 0.6; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

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

.btn-full { width: 100%; text-align: center; }

/* --- CART PAGE --- */
.cart-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  padding-bottom: 6rem;
}

.cart-items-header {
  display: grid;
  grid-template-columns: 80px 1fr 120px 100px 40px;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr 120px 100px 40px;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item-image { width: 80px; height: 80px; }

.product-placeholder-sm {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-warm);
  border: 1px solid var(--border);
}

.product-placeholder-sm span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
}

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
  transition: color var(--transition);
}

.cart-item-name:hover { color: var(--gold); }

.cart-item-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Outfit', sans-serif;
}

.qty-btn:hover { border-color: var(--gold); color: var(--gold); }

.qty-val {
  font-size: 0.9rem;
  min-width: 1.5rem;
  text-align: center;
}

.cart-item-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color var(--transition);
  padding: 4px;
}

.cart-item-remove:hover { color: #c46565; }

/* Cart Summary */
.cart-summary-box {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--dark-warm);
  position: sticky;
  top: 100px;
}

.cart-summary-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
}

.summary-total {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
}

.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0;
}

.cart-summary-box .btn-primary { margin-top: 1.5rem; }
.cart-summary-box .btn-secondary { margin-top: 0.75rem; }

/* Empty Cart */
.cart-empty {
  text-align: center;
  padding: 6rem 2rem;
}

.cart-empty h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.cart-empty p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
}

/* --- CHECKOUT PAGE --- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  padding-bottom: 6rem;
}

.checkout-section {
  margin-bottom: 2rem;
}

.checkout-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--cream);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--cream);
  transition: border-color var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
}

.form-input::placeholder { color: var(--text-muted); opacity: 0.5; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkout-order-summary {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--dark-warm);
  position: sticky;
  top: 100px;
}

.checkout-order-summary h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 300;
}

.checkout-item-name { color: var(--text-light); }
.checkout-item-price { color: var(--cream); }

#checkout-total { margin-top: 1rem; }

/* --- ORDER CONFIRMATION --- */
.confirmation-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem 6rem;
}

.confirmation-check {
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.confirmation-check svg { color: var(--gold); }

.confirmation-box h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.confirmation-box .order-number {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.confirmation-box p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* --- ABOUT PAGE --- */
.about-hero {
  text-align: center;
  padding: 5rem 0 4rem;
  background: radial-gradient(ellipse at 50% 30%, rgba(196,162,101,0.06) 0%, transparent 60%);
}

.about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

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

.about-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-section {
  padding: 5rem 0;
}

.about-section + .about-section {
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }

.about-text .label {
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-text p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-warm) 0%, var(--dark) 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border: 1px solid rgba(196,162,101,0.06);
  border-radius: 50%;
}

.about-image-placeholder .text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.5;
}

.about-values {
  padding: 5rem 0;
  background: var(--dark-warm);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-value {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: var(--dark);
  text-align: center;
}

.about-value-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.about-value h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.about-value p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- FOOTER --- */
.site-footer {
  padding: 4rem 2rem 3rem;
  border-top: 1px solid rgba(196,162,101,0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(196,162,101,0.06);
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

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

.footer-col p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* --- TOAST NOTIFICATION --- */
.le-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--dark-warm);
  border: 1px solid var(--gold);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 400;
  z-index: 200;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.le-toast.show { opacity: 1; transform: translateY(0); }

/* --- FEATURED BANNER --- */
.featured-banner {
  background: var(--dark-warm);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.featured-banner .overline {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.featured-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.featured-banner p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { gap: 2rem; }
  .checkout-grid { grid-template-columns: 1fr 340px; }
}

@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .product-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
  .product-detail { grid-template-columns: 1fr; gap: 2rem; }

  .cart-content { grid-template-columns: 1fr; }
  .cart-items-header { display: none; }
  .cart-item {
    grid-template-columns: 60px 1fr auto;
    grid-template-rows: auto auto;
  }
  .cart-item-image { width: 60px; height: 60px; grid-row: 1 / 3; }
  .cart-item-total { display: none; }
  .cart-item-remove { grid-row: 1; grid-column: 3; }
  .cart-item-qty { grid-column: 2; }

  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-order-summary { position: static; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid.reverse { direction: ltr; }
  .about-values-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .page-header h1 { font-size: 2rem; }
  .page-header { padding: 3rem 0 2rem; }
  .category-tabs { gap: 0.3rem; }
  .cat-tab { padding: 0.5rem 1rem; font-size: 0.7rem; }

  .form-row { grid-template-columns: 1fr; }
  .form-input { font-size: 16px; } /* iOS zoom prevention */
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .btn-primary, .btn-secondary { padding: 0.85rem 1.5rem; font-size: 0.75rem; }
  .product-card-info { padding: 1rem; }
}
