/* ===================================================
   臻选LUXE — AI Smart Shopping Assistant
   Light Luxury E-Commerce
   Color Palette:
     Background:  #FDFBF7 (warm white)
     Cards:       #FFFFFF (pure white)
     Primary:     #B76E79 (rose gold)
     Secondary:   #D4A574 (soft gold)
     Bronze:      #C9956B (warm bronze)
     Text:        #2C2C2C / #666666 / #999999
     Highlight:   #FFF5F5 (subtle blush)
=================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background-color: #FDFBF7;
  color: #2C2C2C;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(183, 110, 121, 0.2);
  color: #2C2C2C;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #FDFBF7;
}

::-webkit-scrollbar-thumb {
  background: #D4A574;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #B76E79;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes breathe {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(183, 110, 121, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(183, 110, 121, 0.55);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Promo Bar ---- */
.promo-bar {
  background: linear-gradient(90deg, #2C2C2C 0%, #3a3a3a 100%);
  color: #F5E6D0;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.promo-bar span {
  color: #D4A574;
  font-weight: 500;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2C2C2C;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-accent {
  color: #B76E79;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #B76E79;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #B76E79;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-search {
  display: flex;
  align-items: center;
  background: #F8F5F0;
  border-radius: 24px;
  padding: 8px 16px;
  gap: 8px;
  flex: 0 1 220px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.header-search:focus-within {
  background: #fff;
  border-color: rgba(183, 110, 121, 0.3);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.08);
}

.header-search svg {
  flex-shrink: 0;
  color: #999;
}

.header-search input {
  border: none;
  background: none;
  outline: none;
  font-size: 0.85rem;
  color: #2C2C2C;
  width: 100%;
  font-family: inherit;
}

.header-search input::placeholder {
  color: #bbb;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-icon-btn {
  position: relative;
  color: #666;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.header-icon-btn:hover {
  color: #B76E79;
  background: rgba(183, 110, 121, 0.06);
}

.header-icon-btn .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #B76E79;
  color: #fff;
  font-size: 0.65rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

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

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #2C2C2C;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---- Hero Section ---- */
.hero {
  background: linear-gradient(165deg, #FDFBF7 0%, #F5EDE4 35%, #F0E4D8 65%, #EDE0D2 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #B76E79;
  background: rgba(183, 110, 121, 0.08);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: #2C2C2C;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #B76E79, #D4A574);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* AI Search Bar */
.ai-search-bar {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 32px;
  padding: 6px 6px 6px 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(212, 165, 116, 0.12);
  max-width: 580px;
  margin: 0 auto 48px;
  gap: 12px;
  transition: box-shadow 0.3s ease;
}

.ai-search-bar:focus-within {
  box-shadow: 0 4px 40px rgba(183, 110, 121, 0.15), 0 0 0 1px rgba(183, 110, 121, 0.2);
}

.ai-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #2C2C2C;
  background: none;
  font-family: inherit;
}

.ai-search-bar input::placeholder {
  color: #bbb;
}

.ai-search-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ai-search-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #999;
  transition: all 0.3s ease;
}

.ai-search-icon:hover {
  color: #B76E79;
  background: rgba(183, 110, 121, 0.06);
}

.ai-search-btn {
  background: linear-gradient(135deg, #B76E79, #C9956B);
  color: #fff;
  border-radius: 26px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.ai-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(183, 110, 121, 0.3);
}

/* AI Stats Bar */
.ai-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.ai-stat {
  text-align: center;
}

.ai-stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C2C2C;
  display: block;
}

.ai-stat-num .accent {
  color: #B76E79;
}

.ai-stat-label {
  font-size: 0.82rem;
  color: #999;
  margin-top: 2px;
}

/* ---- Section Common ---- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #FFFFFF;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B76E79;
  background: rgba(183, 110, 121, 0.07);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 12px;
  color: #2C2C2C;
}

.section-desc {
  font-size: 0.95rem;
  color: #888;
  max-width: 480px;
  margin: 0 auto;
}

/* ---- Product Cards Section ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
}

.product-img {
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* Gradient placeholders for product images */
.gradient-rose { background: linear-gradient(145deg, #E8B4B8 0%, #D4908E 50%, #C27B7B 100%); }
.gradient-peach { background: linear-gradient(145deg, #F0C8A8 0%, #E0A87C 50%, #D4966A 100%); }
.gradient-gold { background: linear-gradient(145deg, #E8D5A8 0%, #D4B87A 50%, #C9A864 100%); }
.gradient-blush { background: linear-gradient(145deg, #F2D4D4 0%, #E0B0B0 50%, #D49898 100%); }
.gradient-mauve { background: linear-gradient(145deg, #D4B0C8 0%, #C090A8 50%, #B07898 100%); }
.gradient-champagne { background: linear-gradient(145deg, #F0E0C8 0%, #E0C8A0 50%, #D4B888 100%); }

.product-brand {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #2C2C2C;
}

.product-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #999;
  transition: all 0.3s ease;
}

.product-wishlist-btn:hover {
  color: #B76E79;
  background: #fff;
}

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

.product-name {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #2C2C2C;
  line-height: 1.4;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.stars {
  color: #D4A574;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.rating-count {
  font-size: 0.78rem;
  color: #bbb;
}

.product-ai-reason {
  background: #FFF5F5;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.78rem;
  color: #B76E79;
  margin-bottom: 10px;
  line-height: 1.5;
  border-left: 2px solid rgba(183, 110, 121, 0.3);
}

.product-ai-reason svg {
  vertical-align: middle;
  margin-right: 4px;
}

.product-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.product-tag {
  font-size: 0.72rem;
  color: #999;
  background: #F8F5F0;
  padding: 3px 10px;
  border-radius: 12px;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #B76E79;
}

.product-price-original {
  font-size: 0.82rem;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.btn-add-cart {
  flex: 1;
  background: linear-gradient(135deg, #B76E79, #C9956B);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-add-cart:hover {
  box-shadow: 0 4px 16px rgba(183, 110, 121, 0.3);
  transform: translateY(-1px);
}

/* ---- Scene Shopping Section ---- */
.scenes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.scene-card {
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.scene-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scene-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.scene-card:hover::before {
  opacity: 1;
}

.scene-gradient-1 { background: linear-gradient(145deg, #F5E0E0, #E8C8C8); }
.scene-gradient-2 { background: linear-gradient(145deg, #E0E8F0, #C8D4E0); }
.scene-gradient-3 { background: linear-gradient(145deg, #E8F0E0, #D0DCC8); }
.scene-gradient-4 { background: linear-gradient(145deg, #F0E0F0, #DCC8DC); }
.scene-gradient-5 { background: linear-gradient(145deg, #F0E8D8, #E0D0B8); }
.scene-gradient-6 { background: linear-gradient(145deg, #F0D8D8, #E0C0B8); }

.scene-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.scene-name {
  font-size: 1rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 6px;
}

.scene-desc {
  font-size: 0.8rem;
  color: #888;
}

.scene-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #B76E79;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

.scene-card:hover .scene-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ---- AI Outfit Section ---- */
.outfits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.outfit-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.outfit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
}

.outfit-header {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}

.outfit-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #B76E79;
  background: rgba(183, 110, 121, 0.07);
  padding: 4px 12px;
  border-radius: 12px;
}

.outfit-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2C2C2C;
}

.outfit-items {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.outfit-item-img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  flex-shrink: 0;
}

.outfit-item-info {
  flex: 1;
  min-width: 0;
}

.outfit-item-name {
  font-size: 0.85rem;
  color: #2C2C2C;
  margin-bottom: 2px;
}

.outfit-item-brand {
  font-size: 0.72rem;
  color: #bbb;
  letter-spacing: 0.05em;
}

.outfit-item-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #B76E79;
  white-space: nowrap;
}

.outfit-footer {
  padding: 14px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.outfit-total {
  font-size: 0.85rem;
  color: #666;
}

.outfit-total strong {
  color: #B76E79;
  font-size: 1.1rem;
}

.btn-outfit-buy {
  background: linear-gradient(135deg, #B76E79, #C9956B);
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outfit-buy:hover {
  box-shadow: 0 4px 16px rgba(183, 110, 121, 0.3);
  transform: translateY(-1px);
}

/* ---- Brand Story Section ---- */
.brand-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  background: linear-gradient(145deg, rgba(183, 110, 121, 0.08), rgba(212, 165, 116, 0.08));
}

.pillar-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2C2C2C;
}

.pillar-desc {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.7;
}

/* ---- Reviews Section ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.avatar-gradient-1 { background: linear-gradient(135deg, #B76E79, #D4A574); }
.avatar-gradient-2 { background: linear-gradient(135deg, #C9956B, #D4A574); }
.avatar-gradient-3 { background: linear-gradient(135deg, #B76E79, #C990A0); }

.review-author {
  font-size: 0.92rem;
  font-weight: 600;
  color: #2C2C2C;
}

.review-date {
  font-size: 0.75rem;
  color: #bbb;
}

.review-stars {
  color: #D4A574;
  font-size: 0.82rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.75;
}

.review-product {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.78rem;
  color: #bbb;
}

/* ---- Trust Section ---- */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #F8F5F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.trust-badge:hover .trust-icon {
  background: rgba(183, 110, 121, 0.08);
  transform: translateY(-2px);
}

.trust-label {
  font-size: 0.78rem;
  color: #888;
  font-weight: 500;
}

/* ---- Footer ---- */
.site-footer {
  background: #2C2C2C;
  color: #ccc;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand .logo-accent {
  color: #D4A574;
}

.footer-desc {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.8;
  margin-top: 6px;
}

.footer-links h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #D4A574;
}

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

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: rgba(212, 165, 116, 0.2);
  color: #D4A574;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

.footer-bottom a {
  color: #888;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #D4A574;
}

/* ---- AI Chat Widget ---- */
.chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B76E79, #C9956B);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.3);
  z-index: 200;
  transition: all 0.3s ease;
  animation: breathe 3s ease-in-out infinite;
}

.chat-fab:hover {
  transform: scale(1.08);
}

.chat-fab.hidden {
  display: none;
}

.chat-panel {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 380px;
  max-height: 520px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  z-index: 200;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: fadeInUp 0.3s ease;
}

.chat-panel.open {
  display: flex;
}

.chat-panel-header {
  background: linear-gradient(135deg, #B76E79, #C9956B);
  color: #fff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-panel-title {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-panel-status {
  font-size: 0.72rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-panel-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #90EE90;
  display: inline-block;
}

.chat-panel-close {
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.chat-panel-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}

.chat-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  max-height: 340px;
}

.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.chat-msg.ai {
  background: #F8F5F0;
  color: #2C2C2C;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: linear-gradient(135deg, #B76E79, #C9956B);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-quick-cmds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chat-quick-cmd {
  font-size: 0.78rem;
  color: #B76E79;
  border: 1px solid rgba(183, 110, 121, 0.25);
  padding: 6px 14px;
  border-radius: 16px;
  background: #fff;
  transition: all 0.3s ease;
}

.chat-quick-cmd:hover {
  background: rgba(183, 110, 121, 0.06);
  border-color: #B76E79;
}

.chat-ai-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 12px;
  margin-top: 8px;
}

.chat-ai-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 6px;
}

.chat-ai-card-text {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.6;
}

.chat-panel-input {
  padding: 14px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-panel-input input {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 0.85rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.chat-panel-input input:focus {
  border-color: rgba(183, 110, 121, 0.3);
}

.chat-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B76E79, #C9956B);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.chat-send-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(183, 110, 121, 0.3);
}

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  z-index: 300;
  padding: 20px 0;
  animation: slideUp 0.5s ease;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-text {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

.cookie-banner-text a {
  color: #B76E79;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, #B76E79, #C9956B);
  color: #fff;
}

.btn-cookie-accept:hover {
  box-shadow: 0 4px 16px rgba(183, 110, 121, 0.3);
}

.btn-cookie-necessary {
  background: #F8F5F0;
  color: #666;
}

.btn-cookie-necessary:hover {
  background: #f0ebe3;
}

.btn-cookie-settings {
  background: none;
  color: #B76E79;
  border: 1px solid rgba(183, 110, 121, 0.3);
}

.btn-cookie-settings:hover {
  background: rgba(183, 110, 121, 0.04);
}

/* ---- Cookie Modal ---- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.cookie-modal-overlay.open {
  display: flex;
}

.cookie-modal {
  background: #FFFFFF;
  border-radius: 16px;
  width: 90%;
  max-width: 520px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.3s ease;
}

.cookie-modal-header {
  padding: 24px 28px 0;
}

.cookie-modal-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 8px;
}

.cookie-modal-header p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

.cookie-modal-body {
  padding: 20px 28px;
}

.cookie-toggle-group {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-toggle-group:last-child {
  border-bottom: none;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle-info h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 4px;
}

.cookie-toggle-info p {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.5;
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ddd;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, #B76E79, #C9956B);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 16px 28px 24px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.btn-modal-save {
  background: linear-gradient(135deg, #B76E79, #C9956B);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-modal-save:hover {
  box-shadow: 0 4px 16px rgba(183, 110, 121, 0.3);
}

.btn-modal-cancel {
  background: #F8F5F0;
  color: #666;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-modal-cancel:hover {
  background: #f0ebe3;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .header-search {
    flex: 0 1 180px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

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

  .header-search {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .ai-search-bar {
    flex-direction: column;
    border-radius: 16px;
    padding: 12px;
  }

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

  .ai-stats {
    gap: 24px;
  }

  .products-grid,
  .scenes-grid,
  .outfits-grid,
  .brand-pillars,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .chat-panel {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 80px;
  }

  .trust-badges {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .products-grid,
  .scenes-grid,
  .brand-pillars {
    grid-template-columns: 1fr;
  }

  .outfits-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 1.7rem;
  }

  .section {
    padding: 56px 0;
  }

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

  .ai-stats {
    flex-direction: column;
    gap: 16px;
  }

  .trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .promo-bar {
    font-size: 0.75rem;
    padding: 8px 16px;
  }
}

/* ---- Cookie Policy Page Styles ---- */
.policy-hero {
  padding: 48px 0 40px;
  background: linear-gradient(170deg, #FDFBF7 0%, #F5F0E8 100%);
  text-align: center;
  border-bottom: 1px solid rgba(212, 165, 116, 0.12);
}

.policy-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.policy-hero p {
  font-size: 0.9rem;
  color: #888;
}

.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.policy-section {
  margin-bottom: 48px;
}

.policy-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(183, 110, 121, 0.15);
  color: #2C2C2C;
}

.policy-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 24px 0 10px;
  color: #B76E79;
}

.policy-section p,
.policy-section li {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.85;
}

.policy-section ul {
  padding-left: 20px;
  margin: 12px 0;
}

.policy-section li {
  margin-bottom: 8px;
}

.cookie-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
  margin: 20px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.cookie-card h3 {
  margin-top: 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 0;
  font-size: 0.88rem;
}

.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.cookie-table th {
  background: #F8F5F0;
  font-weight: 600;
  color: #2C2C2C;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.cookie-table td {
  color: #555;
}

.cookie-table tr:hover td {
  background: rgba(245, 240, 232, 0.4);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #B76E79;
  margin-bottom: 8px;
  transition: opacity 0.3s;
}

.back-link:hover {
  opacity: 0.7;
}

.policy-updated {
  font-size: 0.82rem;
  color: #aaa;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 165, 116, 0.12);
}

.contact-card {
  background: linear-gradient(145deg, #FFF5F5, #FDFBF7);
  border-radius: 8px;
  padding: 28px;
  margin-top: 16px;
  border: 1px solid rgba(183, 110, 121, 0.1);
}

.contact-card ul {
  list-style: none;
  padding: 0;
}

.contact-card li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  font-size: 1.1rem;
}

/* ---- Utility ---- */
.btn-outline-sm {
  font-size: 0.82rem;
  color: #B76E79;
  border: 1px solid rgba(183, 110, 121, 0.3);
  padding: 7px 18px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-sm:hover {
  background: rgba(183, 110, 121, 0.06);
  border-color: #B76E79;
}
