@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C8956C;
  --gold-light: #E8C9A8;
  --gold-dark: #A0724E;
  --rose: #D4918F;
  --rose-light: #F0D0CF;
  --rose-dark: #B87270;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE3;
  --chocolate: #3D2B1F;
  --chocolate-light: #5C4033;
  --text: #2C1810;
  --text-light: #6B5B50;
  --white: #FFFFFF;
  --border: #E8DDD3;
  --success: #6B8E6B;
  --danger: #C75050;
  --shadow: 0 4px 20px rgba(61,43,31,0.08);
  --shadow-lg: 0 8px 40px rgba(61,43,31,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

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

html, body { overflow-x: hidden; max-width: 100vw; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 15px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--chocolate);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ========== HEADER ========== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: linear-gradient(135deg, var(--chocolate) 0%, var(--chocolate-light) 100%);
  color: var(--gold-light);
  text-align: center;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--chocolate);
  letter-spacing: 1px;
}

.logo-text span { color: var(--gold); }

nav { display: flex; align-items: center; gap: 28px; }

nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

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

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

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

.header-actions { display: flex; align-items: center; gap: 18px; }

.header-actions a {
  font-size: 20px;
  color: var(--text-light);
  position: relative;
}

.header-actions a:hover { color: var(--gold-dark); }

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--rose);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--chocolate);
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, var(--rose-light) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
  color: var(--chocolate);
}

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

.hero p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.hero-image {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 90%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 80px;
  filter: brightness(1.02) saturate(1.05);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,149,108,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,149,108,0.45);
}

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

.btn-secondary:hover {
  background: var(--chocolate);
  color: var(--white);
}

.btn-rose {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,145,143,0.35);
}

.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,145,143,0.45);
}

.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 15px; }

/* ========== SECTIONS ========== */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 36px; margin-bottom: 12px; }
.section-header p { color: var(--text-light); font-size: 16px; max-width: 600px; margin: 0 auto; }

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  margin: 16px auto 0;
  border-radius: 3px;
}

/* ========== CATEGORIES ========== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img { transform: scale(1.08); }

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(44,24,16,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.category-card-overlay h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 4px;
}

.category-card-overlay p {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

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

.product-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--cream-dark);
}

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

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

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

.product-badge.new { background: var(--gold); }
.product-badge.sale { background: var(--danger); }

.product-quick-add {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card-info { padding: 18px; }

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

.product-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--chocolate);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card-price {
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-dark);
}

.product-card-price .original {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 400;
  margin-left: 8px;
}

.product-card-rating {
  color: var(--gold);
  font-size: 13px;
  margin-top: 6px;
}

/* ========== FEATURED BANNER ========== */
.featured-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--chocolate) 0%, var(--chocolate-light) 100%);
}

.featured-banner-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 500px;
}

.featured-banner-content h2 {
  color: var(--gold-light);
  font-size: 40px;
  margin-bottom: 16px;
}

.featured-banner-content p {
  color: var(--cream-dark);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.featured-banner img {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

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

.benefit-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--rose-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.benefit-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--gold-light);
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-top: 30px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--chocolate);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-light);
}

/* ========== NEWSLETTER ========== */
.newsletter {
  background: linear-gradient(135deg, var(--chocolate) 0%, var(--chocolate-light) 50%, #4A3228 100%);
  padding: 60px 0;
  text-align: center;
}

.newsletter h2 {
  color: var(--gold-light);
  font-size: 32px;
  margin-bottom: 10px;
}

.newsletter p {
  color: var(--cream-dark);
  margin-bottom: 28px;
  font-size: 15px;
}

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

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 14px;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }

/* ========== FOOTER ========== */
.footer {
  background: var(--chocolate);
  color: var(--cream-dark);
  padding: 60px 0 30px;
}

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

.footer-brand .logo-text { color: var(--gold-light); font-size: 20px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,248,240,0.6); max-width: 300px; }

.footer h4 {
  color: var(--gold-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer ul { list-style: none; }

.footer ul li { margin-bottom: 10px; }

.footer ul a {
  font-size: 13px;
  color: rgba(255,248,240,0.6);
}

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

.footer-social { display: flex; gap: 12px; margin-top: 16px; }

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold-light);
}

.footer-social a:hover { background: var(--gold); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,248,240,0.4);
}

.footer-payments { display: flex; gap: 10px; align-items: center; }
.footer-payments span { font-size: 22px; }

/* ========== PRODUCT DETAIL ========== */
.product-detail { padding: 40px 0; }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.product-info-section { padding: 20px 0; }

.product-info-section .brand {
  font-size: 12px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.product-info-section h1 {
  font-size: 32px;
  margin: 10px 0 16px;
}

.product-info-section .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.product-info-section .description {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.product-options { margin-bottom: 28px; }

.option-label {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.size-options { display: flex; gap: 10px; flex-wrap: wrap; }

.size-btn {
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  transition: var(--transition);
}

.size-btn:hover, .size-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover { background: var(--cream-dark); }
.qty-btn:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.qty-btn:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.qty-input {
  width: 60px;
  height: 44px;
  border: 2px solid var(--border);
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  background: var(--white);
}

.add-to-cart-actions { display: flex; gap: 12px; }

.product-features {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

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

/* ========== CART ========== */
.cart-page { padding: 40px 0 80px; }
.cart-page h1 { font-size: 32px; margin-bottom: 30px; }

.cart-items { margin-bottom: 30px; }

.cart-item {
  display: grid;
  grid-template-columns: 100px 2fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

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

.cart-item-name { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 15px; }
.cart-item-brand { font-size: 11px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1px; }
.cart-item-price { font-weight: 600; color: var(--gold-dark); font-size: 16px; }

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

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

.cart-summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  max-width: 400px;
  margin-left: auto;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}

.cart-summary-row.total {
  border-top: 2px solid var(--border);
  margin-top: 10px;
  padding-top: 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--chocolate);
}

.free-shipping-msg {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--rose-light) 100%);
  color: var(--chocolate);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 500;
}

/* ========== CHECKOUT ========== */
.checkout-page { padding: 40px 0 80px; }
.checkout-page h1 { font-size: 32px; margin-bottom: 30px; }

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.form-section { margin-bottom: 32px; }
.form-section h3 { font-size: 18px; margin-bottom: 16px; color: var(--chocolate); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.form-group input:focus, .form-group select:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200,149,108,0.15);
}

.order-summary-checkout {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 120px;
}

.order-summary-checkout h3 { font-size: 18px; margin-bottom: 20px; }

#payment-element { margin: 16px 0 24px; }

/* ========== FILTER SIDEBAR ========== */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.filter-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 120px;
}

.filter-group { margin-bottom: 24px; }

.filter-group h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--chocolate);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
  padding: 5px 0;
}

.filter-group input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

.filter-group select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--white);
}

.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.sort-bar span { font-size: 14px; color: var(--text-light); }

.sort-bar select {
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--white);
}

/* ========== INFO PAGES ========== */
.info-page { padding: 60px 0 80px; }
.info-page h1 { font-size: 36px; margin-bottom: 16px; text-align: center; }
.info-page .subtitle { text-align: center; color: var(--text-light); font-size: 16px; margin-bottom: 40px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

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

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--rose-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-text h4 { font-size: 14px; margin-bottom: 4px; }
.contact-info-text p { font-size: 13px; color: var(--text-light); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  resize: vertical;
  min-height: 140px;
  transition: var(--transition);
}

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

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-light);
}

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

/* ========== CONFIRMATION ========== */
.confirmation-page { padding: 80px 0; text-align: center; }

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
}

.confirmation-page h1 { font-size: 32px; margin-bottom: 12px; }
.confirmation-page p { color: var(--text-light); font-size: 15px; max-width: 500px; margin: 0 auto 32px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 40px; }
  .hero-image { width: 50%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .header-main { padding: 12px 16px; }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow); gap: 16px; }
  nav.active { display: flex; }
  .mobile-menu-btn { display: block; }

  .hero { min-height: auto; padding: 40px 0; }
  .hero-content { max-width: 100%; padding: 20px 0; }
  .hero h1 { font-size: 32px; }
  .hero-image { display: none; }
  .hero-buttons { flex-direction: column; }

  .categories-grid { grid-template-columns: 1fr; }
  .category-card { height: 220px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }

  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }

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

  .cart-item { grid-template-columns: 80px 1fr auto; gap: 12px; }
  .cart-item-qty, .cart-item-total { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .newsletter-form { flex-direction: column; }

  .section { padding: 50px 0; }
  .section-header h2 { font-size: 28px; }
  .featured-banner { min-height: auto; }
  .featured-banner-content { padding: 32px; }
  .featured-banner img { position: relative; width: 100%; height: 240px; }

  .btn-lg { padding: 14px 28px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card-image { height: 240px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .container { padding: 0 16px; }
}

/* ========== UTILITY ========== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none; }

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart h2 { font-size: 28px; margin-bottom: 12px; }
.empty-cart p { color: var(--text-light); margin-bottom: 24px; }

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}

@keyframes spin { to { transform: rotate(360deg); } }
