/* ============================================
   PETAL & GLOW — DESIGN SYSTEM
   Palette: Blush Pink × Cream × Rose Gold
   Fonts: Cormorant Garamond + Plus Jakarta Sans
============================================ */

:root {
  --pink-50:  #fff5f7;
  --pink-100: #ffe4ec;
  --pink-200: #ffc2d4;
  --pink-300: #ff9ab8;
  --pink-400: #ff6b9d;
  --pink-500: #e8457a;
  --pink-600: #c73060;
  --rose:     #f4a0b5;
  --rose-dark:#d4607a;
  --gold:     #c9956b;
  --gold-light:#f0d5c0;
  --cream:    #fdf8f5;
  --cream-2:  #f9f0eb;
  --white:    #ffffff;
  --text-dark:#2c1a22;
  --text-mid: #6b4455;
  --text-soft:#9e7080;
  --border:   #f0dde5;
  --shadow-sm: 0 2px 12px rgba(200,80,120,0.08);
  --shadow-md: 0 8px 32px rgba(200,80,120,0.12);
  --shadow-lg: 0 20px 60px rgba(200,80,120,0.16);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }

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

/* ============================================
   ANNOUNCEMENT BAR
============================================ */
.announcement-bar {
  background: linear-gradient(90deg, var(--pink-500), var(--rose-dark), var(--pink-500));
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ============================================
   HEADER
============================================ */
.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 var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { font-size: 28px; line-height: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pink-600);
  letter-spacing: -0.3px;
}
.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Search */
.search-wrap {
  flex: 1;
  max-width: 520px;
  position: relative;
}
.search-bar {
  display: flex;
  align-items: center;
  background: var(--pink-50);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0 16px;
  gap: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-bar:focus-within {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 3px rgba(232,69,122,0.1);
  background: white;
}
.search-icon { width: 18px; height: 18px; color: var(--text-soft); flex-shrink: 0; }
.search-bar input {
  flex: 1;
  border: none;
  background: none;
  padding: 11px 0;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
}
.search-bar input::placeholder { color: var(--text-soft); }
.search-clear {
  color: var(--text-soft);
  font-size: 12px;
  padding: 4px;
  border-radius: 50%;
  display: none;
  transition: color var(--transition);
}
.search-clear:hover { color: var(--pink-500); }
.search-clear.visible { display: block; }

.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 360px;
  overflow-y: auto;
  display: none;
  z-index: 200;
}
.search-dropdown.open { display: block; }
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid var(--pink-50);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--pink-50); }
.search-result-emoji { font-size: 24px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--pink-50); border-radius: 10px; }
.search-result-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); }
.search-result-info span { font-size: 12px; color: var(--text-soft); }
.search-result-price { margin-left: auto; font-weight: 700; color: var(--pink-500); font-size: 14px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.action-btn {
  position: relative;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--pink-50);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  color: var(--text-mid);
}
.action-btn svg { width: 20px; height: 20px; }
.action-btn:hover { background: var(--pink-100); border-color: var(--pink-300); color: var(--pink-600); transform: translateY(-1px); }
.action-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--pink-500);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
  transition: transform var(--transition);
}
.action-badge.bump { animation: badgeBump 0.3s ease; }
@keyframes badgeBump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.4)} }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  background: var(--pink-50);
  border: 1.5px solid var(--border);
}
.mobile-menu-btn span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Navigation */
.nav {
  border-top: 1px solid var(--border);
  background: white;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--pink-500);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--pink-600); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* ============================================
   CART SIDEBAR
============================================ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(44,26,34,0.4);
  backdrop-filter: blur(4px);
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  background: white;
  z-index: 400;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(200,80,120,0.15);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--pink-50);
}
.cart-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
}
.cart-header h3 span { font-size: 14px; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-soft); font-weight: 400; }
.cart-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.cart-close:hover { background: var(--pink-100); color: var(--pink-600); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 12px; text-align: center; padding: 40px;
}
.cart-empty-icon { font-size: 56px; }
.cart-empty p { font-size: 18px; font-weight: 600; color: var(--text-dark); }
.cart-empty span { font-size: 14px; color: var(--text-soft); }

.cart-item {
  display: flex; gap: 12px;
  padding: 14px;
  background: var(--pink-50);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  border: 1px solid var(--border);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }
.cart-item-emoji {
  width: 56px; height: 56px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-brand { font-size: 12px; color: var(--text-soft); margin-bottom: 8px; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.qty-btn:hover { background: var(--pink-100); border-color: var(--pink-300); color: var(--pink-600); }
.qty-value { font-size: 14px; font-weight: 700; color: var(--text-dark); min-width: 20px; text-align: center; }
.cart-item-price { font-size: 15px; font-weight: 700; color: var(--pink-600); align-self: center; flex-shrink: 0; }
.cart-item-remove {
  align-self: flex-start;
  color: var(--text-soft);
  font-size: 12px;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: var(--pink-500); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--pink-50);
}
.cart-subtotal, .cart-shipping, .cart-total {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-mid);
}
.cart-total {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
}
.btn-checkout {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-dark));
  color: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(232,69,122,0.35);
}
.btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,69,122,0.45); }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--cream-2) 50%, var(--gold-light) 100%);
  padding: 80px 24px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.blob-1 { width: 500px; height: 500px; background: var(--pink-200); top: -100px; right: -100px; animation: blobFloat 8s ease-in-out infinite; }
.blob-2 { width: 300px; height: 300px; background: var(--gold-light); bottom: -50px; left: 20%; animation: blobFloat 10s ease-in-out infinite reverse; }
.blob-3 { width: 200px; height: 200px; background: var(--rose); top: 50%; left: 10%; animation: blobFloat 6s ease-in-out infinite 2s; }
@keyframes blobFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(20px,-20px) scale(1.05)} 66%{transform:translate(-10px,15px) scale(0.95)} }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  flex: 1;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1.5px solid var(--pink-200);
  color: var(--pink-600);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title em {
  font-style: italic;
  color: var(--pink-500);
  background: linear-gradient(135deg, var(--pink-500), var(--rose-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-dark));
  color: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(232,69,122,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,69,122,0.45); }
.btn-ghost {
  padding: 14px 28px;
  background: white;
  color: var(--pink-600);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--pink-200);
  transition: all var(--transition);
}
.btn-ghost:hover { background: var(--pink-50); border-color: var(--pink-400); transform: translateY(-2px); }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 24px; font-weight: 700; color: var(--text-dark); font-family: 'Cormorant Garamond', serif; }
.stat span { font-size: 12px; color: var(--text-soft); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-visual {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.hero-circle {
  width: 280px; height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-100), var(--gold-light));
  border: 3px solid var(--pink-200);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: heroCircle 6s ease-in-out infinite;
}
@keyframes heroCircle { 0%,100%{transform:scale(1) rotate(0deg)} 50%{transform:scale(1.03) rotate(3deg)} }
.hero-circle-inner { text-align: center; }
.hero-emoji { font-size: 64px; display: block; margin-bottom: 8px; }
.hero-circle-inner p { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--text-dark); line-height: 1.2; }

.hero-card-float {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  white-space: nowrap;
}
.hero-card-float span { font-size: 24px; }
.hero-card-float strong { display: block; font-weight: 700; color: var(--text-dark); }
.hero-card-float small { color: var(--text-soft); font-size: 11px; }
.card-float-1 { top: 10%; left: 5%; animation: floatCard 4s ease-in-out infinite; }
.card-float-2 { bottom: 20%; left: 0%; animation: floatCard 5s ease-in-out infinite 1s; }
.card-float-3 { top: 15%; right: 5%; animation: floatCard 4.5s ease-in-out infinite 0.5s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ============================================
   OFFER BANNERS
============================================ */
.offer-banners { padding: 48px 0; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offer-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer-pink { background: linear-gradient(135deg, #fce4ec, #f8bbd0); border: 1px solid #f48fb1; }
.offer-rose { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); border: 1px solid #a5d6a7; }
.offer-gold { background: linear-gradient(135deg, #fff8e1, #ffecb3); border: 1px solid #ffe082; }
.offer-tag {
  display: inline-block;
  background: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.offer-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.offer-content p { font-size: 13px; color: var(--text-mid); margin-bottom: 16px; }
.offer-btn {
  padding: 9px 20px;
  background: var(--text-dark);
  color: white;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}
.offer-btn:hover { background: var(--pink-600); transform: translateY(-1px); }
.offer-emoji { font-size: 56px; opacity: 0.8; }

/* ============================================
   SECTION HEADERS
============================================ */
.section-header { text-align: center; margin-bottom: 40px; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.section-sub { font-size: 15px; color: var(--text-soft); }

/* ============================================
   CATEGORIES
============================================ */
.categories-section { padding: 60px 0; background: white; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.category-card {
  background: var(--pink-50);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-100), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.category-card:hover, .category-card.active {
  border-color: var(--pink-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.category-card:hover::before, .category-card.active::before { opacity: 1; }
.cat-icon {
  font-size: 36px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: transform var(--transition);
}
.category-card:hover .cat-icon { transform: scale(1.15) rotate(-5deg); }
.category-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  position: relative; z-index: 1;
}
.category-card span {
  font-size: 12px;
  color: var(--text-soft);
  position: relative; z-index: 1;
}

/* ============================================
   PRODUCTS
============================================ */
.products-section { padding: 60px 0; }
.products-header { margin-bottom: 32px; }
.products-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  background: white;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--pink-300); color: var(--pink-600); }
.filter-tab.active {
  background: linear-gradient(135deg, var(--pink-500), var(--rose-dark));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(232,69,122,0.3);
}
.sort-select {
  padding: 9px 16px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  background: white;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.sort-select:focus { border-color: var(--pink-400); }

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

/* Product Card */
.product-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  animation: cardReveal 0.4s ease both;
}
@keyframes cardReveal { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-200);
}

.product-image-wrap {
  position: relative;
  background: linear-gradient(135deg, var(--pink-50), var(--cream-2));
  padding: 32px 24px;
  text-align: center;
  overflow: hidden;
}
.product-emoji {
  font-size: 64px;
  display: block;
  transition: transform var(--transition);
  line-height: 1;
}
.product-card:hover .product-emoji { transform: scale(1.1) rotate(-5deg); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-dark));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.product-badge.new { background: linear-gradient(135deg, #4caf50, #2e7d32); }
.product-badge.hot { background: linear-gradient(135deg, #ff6b35, #d84315); }

.product-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: white;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  opacity: 0;
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { background: var(--pink-50); transform: scale(1.1); }
.product-wishlist.active { opacity: 1; }

.product-info { padding: 16px; }
.product-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pink-500);
  margin-bottom: 4px;
}
.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.rating-count { font-size: 12px; color: var(--text-soft); }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.price-group { display: flex; align-items: baseline; gap: 6px; }
.price-current {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
}
.price-original {
  font-size: 13px;
  color: var(--text-soft);
  text-decoration: line-through;
}
.price-discount {
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 2px 7px;
  border-radius: 50px;
}

.btn-add-cart {
  padding: 9px 16px;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-dark));
  color: white;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(232,69,122,0.25);
}
.btn-add-cart:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,69,122,0.4); }
.btn-add-cart.added {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 2px 10px rgba(22,163,74,0.25);
}

.no-results {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-soft);
}
.no-results-icon { font-size: 56px; margin-bottom: 16px; }
.no-results h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }

/* ============================================
   BRANDS
============================================ */
.brands-section { padding: 60px 0; background: white; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brand-card {
  background: var(--pink-50);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.brand-card:hover {
  border-color: var(--pink-300);
  background: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.brand-logo { font-size: 40px; margin-bottom: 12px; }
.brand-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: 'Cormorant Garamond', serif;
}
.brand-card span { font-size: 12px; color: var(--text-soft); }

/* ============================================
   NEWSLETTER
============================================ */
.newsletter-section { padding: 60px 0; }
.newsletter-card {
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--rose-dark) 50%, var(--pink-600) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.newsletter-blob {
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -100px; right: -100px;
  pointer-events: none;
}
.newsletter-content { flex: 1; position: relative; z-index: 1; }
.newsletter-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.newsletter-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
  line-height: 1.2;
}
.newsletter-content p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 24px; max-width: 440px; }
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  outline: none;
  background: rgba(255,255,255,0.95);
  color: var(--text-dark);
}
.newsletter-form input::placeholder { color: var(--text-soft); }
.newsletter-form button {
  padding: 14px 24px;
  background: var(--text-dark);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--transition);
}
.newsletter-form button:hover { background: #1a0a12; transform: translateY(-1px); }
.newsletter-visual {
  font-size: 40px;
  letter-spacing: 8px;
  position: relative; z-index: 1;
  animation: floatCard 4s ease-in-out infinite;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 24px;
}
.footer-logo strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: white;
}
.footer-logo small { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rose); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  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;
  transition: background var(--transition);
}
.social-link:hover { background: var(--pink-500); }
.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.payment-icons { display: flex; gap: 8px; font-size: 20px; }

/* ============================================
   TOAST
============================================ */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text-dark);
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   BACK TO TOP
============================================ */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-dark));
  color: white;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  z-index: 50;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding: 60px 24px; }
  .hero-content { max-width: 100%; }
  .hero-desc { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { min-height: 280px; }
  .hero-circle { width: 200px; height: 200px; }
  .hero-emoji { font-size: 48px; }
  .offer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .newsletter-card { flex-direction: column; padding: 40px 28px; }
  .newsletter-visual { display: none; }
}

@media (max-width: 768px) {
  .header-inner { padding: 12px 16px; gap: 12px; }
  .search-wrap { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav { display: none; }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; padding: 8px 0; }
  .nav-link { padding: 12px 20px; border-bottom: 1px solid var(--border); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cart-sidebar { width: 100%; }
  .products-controls { flex-direction: column; align-items: flex-start; }
  .filter-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; width: 100%; }
  .hero-card-float { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 12px; }
  .product-emoji { font-size: 48px; }
  .product-name { font-size: 13px; }
  .price-current { font-size: 15px; }
  .btn-add-cart { padding: 8px 12px; font-size: 11px; }
  .hero-title { font-size: 38px; }
  .section-title { font-size: 28px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}