/* ============================================
   Mama With Her Little Dupes - Storefront Styles
   Luxury-inspired design with warm mama energy
   ============================================ */

/* CSS Variables */
:root {
  --color-bg: #FFFBF5;
  --color-bg-alt: #FFF5EB;
  --color-gold: #C5A572;
  --color-gold-light: #E8D5B5;
  --color-gold-dark: #A8884E;
  --color-text: #2C2418;
  --color-text-light: #6B5E4F;
  --color-text-muted: #9B8E7E;
  --color-white: #FFFFFF;
  --color-border: #E8DFD3;
  --color-border-light: #F0EBE3;
  --color-success: #4A7C59;
  --color-error: #C44536;
  --color-overlay: rgba(44, 36, 24, 0.5);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(44,36,24,0.06);
  --shadow-md: 0 4px 12px rgba(44,36,24,0.08);
  --shadow-lg: 0 8px 30px rgba(44,36,24,0.12);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.page-hidden {
  display: none !important;
}

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

/* ============================================
   Announcement Bar
   ============================================ */
.announcement-bar {
  background: var(--color-text);
  color: var(--color-gold-light);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.logo-accent {
  color: var(--color-gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.3px;
  position: relative;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold-dark);
}

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

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

.cart-btn {
  position: relative;
  color: var(--color-text);
  padding: 8px;
  transition: color var(--transition);
}

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

.cart-count {
  position: absolute;
  top: 0;
  right: -2px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition);
}

.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background: linear-gradient(135deg, #FFF5EB 0%, #F5E6D3 30%, #E8D5B5 70%, #D4C4A8 100%);
  padding: 80px 24px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-location {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--color-text);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.hero-visual {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 1;
}

.hero-badge {
  background: var(--color-text);
  color: var(--color-gold-light);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: 0.5px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-text);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #1a1610;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-white);
}

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

.btn-gold:hover {
  background: var(--color-gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================
   Section Titles
   ============================================ */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   Categories Section
   ============================================ */
.categories-section {
  padding: 80px 0;
  background: var(--color-white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold-light);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.category-card p {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ============================================
   Featured Products Section
   ============================================ */
.featured-section {
  padding: 80px 0;
  background: var(--color-bg);
}

/* ============================================
   Products Grid
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid var(--color-border-light);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--color-bg-alt);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border-light) 100%);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-info {
  padding: 20px;
}

.product-category-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.product-price .current {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

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

.product-price .savings {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-success);
  background: #E8F5E8;
  padding: 2px 8px;
  border-radius: 50px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 10px;
  background: var(--color-text);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  cursor: pointer;
}

.add-to-cart-btn:hover {
  background: var(--color-gold-dark);
}

.add-to-cart-btn.added {
  background: var(--color-success);
}

/* ============================================
   Trust Section
   ============================================ */
.trust-section {
  padding: 60px 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

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

.trust-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.trust-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.about-content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

/* ============================================
   Shop Page
   ============================================ */
.shop-hero {
  background: linear-gradient(135deg, #FFF5EB 0%, #E8D5B5 100%);
  padding: 48px 0;
  text-align: center;
}

.shop-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.shop-subtitle {
  color: var(--color-text-light);
  font-size: 15px;
}

.shop-section {
  padding: 40px 0 80px;
}

.shop-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--color-border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  background: var(--color-white);
  transition: all var(--transition);
}

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

.filter-btn.active {
  background: var(--color-text);
  color: var(--color-white);
  border-color: var(--color-text);
}

/* ============================================
   Product Detail
   ============================================ */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--color-text-light);
  padding: 20px 0;
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.back-btn:hover {
  color: var(--color-gold-dark);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
}

.product-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-bg-alt);
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border-light) 100%);
}

.product-detail-info {
  padding-top: 20px;
}

.product-detail-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.product-detail-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.product-detail-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.product-detail-price .current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

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

.product-detail-price .savings {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-success);
  background: #E8F5E8;
  padding: 4px 12px;
  border-radius: 50px;
}

.product-detail-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.product-detail-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.quantity-selector button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-text);
  transition: background var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}

.quantity-selector button:hover {
  background: var(--color-bg-alt);
}

.quantity-selector span {
  width: 44px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}

.product-detail-features {
  border-top: 1px solid var(--color-border-light);
  padding-top: 24px;
}

.product-detail-features h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-detail-features ul {
  list-style: none;
  padding: 0;
}

.product-detail-features li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-detail-features li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: 700;
}

/* ============================================
   Cart Sidebar
   ============================================ */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--color-white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: right var(--transition);
}

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

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--color-border-light);
}

.cart-header h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}

.cart-close {
  font-size: 20px;
  color: var(--color-text-light);
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}

.cart-close:hover {
  color: var(--color-text);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--color-text-muted);
}

.cart-empty p {
  margin-bottom: 16px;
  font-size: 15px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-bg-alt);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border-light) 100%);
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  background: none;
  transition: all var(--transition);
}

.cart-item-qty button:hover {
  border-color: var(--color-gold);
  background: var(--color-bg-alt);
}

.cart-item-qty span {
  font-weight: 600;
  font-size: 14px;
  width: 20px;
  text-align: center;
}

.cart-item-remove {
  font-size: 12px;
  color: var(--color-text-muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color var(--transition);
}

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

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--color-border-light);
  background: var(--color-bg);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.cart-shipping-note {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

/* ============================================
   Checkout
   ============================================ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  padding: 40px 0 80px;
}

.checkout-form-container h2,
.checkout-summary h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row-2 {
  grid-template-columns: 1fr 1fr;
}

.form-row-3 {
  grid-template-columns: 1fr 80px 120px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.checkout-summary {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 14px;
}

.checkout-item-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-item-qty {
  color: var(--color-text-muted);
  font-size: 13px;
}

.checkout-totals {
  padding-top: 16px;
}

.checkout-totals .total-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--color-text-light);
}

.checkout-totals .total-line.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  border-top: 2px solid var(--color-text);
  margin-top: 8px;
  padding-top: 16px;
}

/* ============================================
   Order Confirmation
   ============================================ */
.confirmation-content {
  text-align: center;
  padding: 80px 0;
  max-width: 600px;
  margin: 0 auto;
}

.confirmation-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.confirmation-content h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.confirmation-order-number {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 16px;
}

.confirmation-content > p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.confirmation-details {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 32px;
  text-align: left;
}

.confirmation-details h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.confirmation-details .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--color-text-light);
}

.confirmation-details .detail-row.total {
  font-weight: 700;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
  margin-top: 8px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-text);
  color: var(--color-gold-light);
  padding: 60px 0 30px;
}

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

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(232, 213, 181, 0.7);
  line-height: 1.7;
}

.footer-location {
  margin-top: 8px;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(232, 213, 181, 0.7);
  padding: 4px 0;
  transition: color var(--transition);
}

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

.footer-email {
  font-size: 14px;
  color: rgba(232, 213, 181, 0.7);
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 213, 181, 0.15);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(232, 213, 181, 0.5);
}

.footer-disclaimer {
  margin-top: 8px;
  font-style: italic;
}

/* ============================================
   Loading Spinner
   ============================================ */
.loading-spinner {
  text-align: center;
  padding: 60px;
  color: var(--color-text-muted);
  font-size: 15px;
  grid-column: 1 / -1;
}

/* ============================================
   Toast Notification
   ============================================ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--color-text);
  color: var(--color-white);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
}

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

.toast.success {
  background: var(--color-success);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-detail {
    gap: 40px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
  }

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

  .mobile-menu-btn {
    display: flex;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .hero {
    padding: 48px 24px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-visual {
    display: none;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid > :last-child {
    grid-column: 1 / -1;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-detail-name {
    font-size: 1.6rem;
  }

  .product-detail-actions {
    flex-direction: column;
  }

  .checkout-layout {
    gap: 32px;
  }

  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .shop-title {
    font-size: 2rem;
  }

  .shop-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product-info {
    padding: 12px;
  }

  .product-name {
    font-size: 0.95rem;
  }

  .product-price .savings {
    display: none;
  }

  .announcement-bar {
    font-size: 11px;
    padding: 8px 12px;
  }

  .nav-container {
    height: 60px;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .category-card {
    padding: 20px 12px;
  }

  .category-icon {
    font-size: 2rem;
  }

  .category-card h3 {
    font-size: 1rem;
  }
}
