/* ============================================
   Éclat — Luxury Perfume — Black & Gold Theme
   Playfair Display + Poppins
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-lighter: #1a1a1a;
  --gold: #c9a962;
  --gold-light: #e5d4a1;
  --gold-dark: #9a7b3a;
  --gold-muted: rgba(201, 169, 98, 0.6);
  --white: #f5f5f5;
  --gray: #8a8a8a;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --radius-lg: 8px;
  --container: min(92%, 1200px);
  --glass: rgba(20, 20, 20, 0.6);
  --glass-border: rgba(201, 169, 98, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-inline: 1rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger::after {
  content: '';
  display: inline-block;
  margin-left: 0.35rem;
  border: 4px solid transparent;
  border-top-color: currentColor;
  vertical-align: middle;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--black-soft);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

/* Cart trigger */
.cart-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.cart-icon::before {
  content: '';
  display: block;
  width: 22px;
  height: 20px;
  background: linear-gradient(currentColor 2px, transparent 2px),
              linear-gradient(currentColor 2px, transparent 2px),
              currentColor;
  background-size: 14px 8px, 10px 6px, 100% 2px;
  background-position: 0 10px, 2px 12px, 0 0;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count[data-count="0"] {
  display: none !important;
}

/* Cart sidebar */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 200;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--black-soft);
  border-left: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 201;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.cart-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
  color: var(--gold);
}

.cart-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.cart-close:hover {
  opacity: 1;
  color: var(--gold);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
}

.cart-item-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  background: var(--black-lighter);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition-fast);
}

.cart-item-qty button:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.cart-item-qty span {
  min-width: 24px;
  text-align: center;
  font-size: 0.9rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.8rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--transition-fast);
}

.cart-item-remove:hover {
  color: #c55;
}

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.cart-total strong {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.btn-block {
  width: 100%;
  text-align: center;
}

.cart-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--gray);
  font-size: 0.95rem;
}

/* ----- Hero Slider (Fade) ----- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.6) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 18%;
  left: 10%;
  right: 10%;
  max-width: 560px;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.hero-content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 420px;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.35);
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot:hover,
.hero-dot.active {
  background: var(--gold);
}

/* ----- Sections ----- */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 300;
}

/* ----- Product Grid ----- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-grid-sellers {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  max-width: 960px;
  margin-inline: auto;
}

/* ----- Product Card + Hover Animation ----- */
.product-card {
  background: var(--black-lighter);
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-muted);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(201, 169, 98, 0.2);
}

.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  background: var(--black-soft);
  color: var(--gold);
  border: 1px solid var(--gold-muted);
}

.product-badge.gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.product-info {
  padding: 1.35rem 1.25rem;
}

.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.product-desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.product-price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ----- Category page: glass-style product cards ----- */
.product-grid-category {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.product-card-category {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card-category:hover {
  transform: translateY(-8px);
  border-color: var(--gold-muted);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(201, 169, 98, 0.15);
}

.product-card-category .product-image {
  aspect-ratio: 3 / 4;
}

.product-card-category .product-image img {
  transition: transform 0.6s ease;
}

.product-card-category:hover .product-image img {
  transform: scale(1.06);
}

.product-card-category .product-info {
  padding: 1.5rem 1.25rem;
}

.product-card-category .product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.product-rating-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.product-rating-value {
  font-size: 0.8rem;
  color: var(--gray);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.product-actions .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.8rem;
  flex: 1;
  min-width: 0;
  text-align: center;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-muted);
}

.btn-outline:hover {
  background: rgba(201, 169, 98, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Page banner for category pages */
.page-banner {
  padding: 5rem 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
  border-bottom: 1px solid var(--glass-border);
}

.page-banner .section-tag {
  margin-bottom: 0.5rem;
}

.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.page-banner p {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 480px;
  margin-inline: auto;
}

/* Breadcrumb (category pages) */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  margin: 0 0.5rem;
  opacity: 0.6;
}

.breadcrumb .current {
  color: var(--gold);
}

/* Category toolbar (sort + count) */
.category-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.category-toolbar .product-count {
  font-size: 0.9rem;
  color: var(--gray);
}

.category-toolbar .sort-select {
  background: var(--black-lighter);
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 0.5rem 2rem 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
}

.category-toolbar .sort-select:focus {
  outline: none;
  border-color: var(--gold);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* About page */
.container-narrow {
  max-width: 720px;
  margin-inline: auto;
}

.section.about-content {
  padding: 3rem 0;
}

.about-block {
  margin-bottom: 2.5rem;
}

.about-block h2,
.about-values h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-block p,
.about-values p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-values {
  margin-bottom: 2.5rem;
}

.values-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.values-grid li {
  background: var(--black-lighter);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.values-grid li:hover {
  border-color: var(--gold-muted);
}

.value-icon {
  color: var(--gold);
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.values-grid strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.values-grid p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--gray);
}

.about-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.about-cta p {
  margin-bottom: 1rem;
  color: var(--gray);
}

/* Orders page */
.orders-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.orders-toolbar h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.track-order-box label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.track-order-form {
  display: flex;
  gap: 0.5rem;
}

.track-order-form input {
  width: 220px;
  padding: 0.6rem 1rem;
  background: var(--black-lighter);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.9rem;
}

.track-order-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.track-hint {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: var(--gray);
}

.track-success { color: var(--gold-light) !important; }
.track-error { color: #c55 !important; }

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.order-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.order-card:hover {
  border-color: var(--gold-muted);
}

.order-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.order-id {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--gold);
}

.order-date {
  font-size: 0.9rem;
  color: var(--gray);
}

.order-status {
  margin-left: auto;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
}

.status-delivered {
  background: rgba(80, 180, 120, 0.2);
  color: #7dd3a0;
}

.status-shipped {
  background: rgba(201, 169, 98, 0.2);
  color: var(--gold-light);
}

.status-confirmed {
  background: rgba(100, 150, 255, 0.2);
  color: #8ab4f8;
}

.order-card-body {
  padding: 1.25rem 1.5rem;
}

.order-summary {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.order-total {
  font-size: 0.95rem;
  color: var(--white);
}

.order-total strong {
  color: var(--gold);
}

.order-card-actions {
  display: flex;
  gap: 0.75rem;
  padding: 0 1.5rem 1.25rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* Checkout page */
.checkout-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 900px;
  margin-inline: auto;
}

.checkout-summary {
  flex: 1;
  min-width: 280px;
  background: var(--black-lighter);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: fit-content;
}

.checkout-summary h2,
.checkout-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.checkout-items {
  margin-bottom: 1rem;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.checkout-item-price {
  color: var(--gold);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  font-size: 1.1rem;
}

.checkout-total strong {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.checkout-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.35rem;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--black-lighter);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.checkout-form textarea {
  resize: vertical;
  min-height: 80px;
}

.checkout-empty {
  text-align: center;
  padding: 3rem 1rem;
}

.checkout-empty p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.order-success-banner {
  background: rgba(80, 180, 120, 0.15);
  border: 1px solid rgba(125, 211, 160, 0.4);
  color: #7dd3a0;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.order-success-banner strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* ----- Inner pages (no hero) ----- */
main.main-inner {
  padding-top: 100px;
}

/* ----- Home: preview link cards ----- */
.preview-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.preview-card {
  background: var(--black-lighter);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: block;
}

.preview-card:hover {
  border-color: var(--gold-muted);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.preview-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.preview-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.preview-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ----- Testimonials ----- */
.testimonials {
  background: var(--black-soft);
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin-inline: auto;
}

.testimonial-card {
  background: var(--black-lighter);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: var(--transition);
  margin: 0;
}

.testimonial-card:hover {
  border-color: var(--gold-muted);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* ----- CTA / Newsletter ----- */
.cta {
  background: var(--black-soft);
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.cta-content {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cta-content p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.9rem 1.25rem;
  background: var(--black);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder {
  color: var(--gray);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-extra {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  text-align: center;
}

.contact-heading {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-extra p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.contact-extra strong {
  color: var(--white);
  margin-right: 0.5rem;
}

/* ----- Footer ----- */
.footer {
  background: #000;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  color: gold;
  font-size: 26px;
}

.footer-col h3 {
  color: rgba(248, 217, 37, 0.678);
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: gold;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: gold;
  text-decoration: none;
}

.footer-col input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

.footer-col button {
  width: 100%;
  padding: 10px;
  background: gold;
  border: none;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #838282;
  padding-top: 15px;
  color: #aaa;
}

/* ✅ Tablet */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ✅ Mobile */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social a {
    display: inline-block;
    margin: 5px;
  }
}

/* ============================================
   Responsive
   ============================================ */

/* @media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-cards {
    grid-template-columns: repeat(2, 1fr);
  }
} */

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--black-soft);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-content {
    left: 1rem;
    right: 1rem;
    bottom: 22%;
  }

  .section {
    padding: 3.5rem 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .product-grid-sellers {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-inline: auto;
  }

  .cart-sidebar {
    max-width: 100%;
  }

  .product-grid-category {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .category-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .orders-toolbar {
    flex-direction: column;
  }

  .track-order-form {
    flex-wrap: wrap;
  }

  .track-order-form input {
    width: 100%;
    min-width: 0;
  }

  .checkout-wrap {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .preview-cards {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }

  .product-grid-category {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-inline: auto;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
  }
}

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
