/* ─── ROOT VARIABLES ─────────────────────────────────────────────────────── */
:root {
  --primary: #e91e8c;
  --primary-light: #f472b6;
  --primary-dark: #be185d;
  --secondary: #7c3aed;
  --accent: #fbbf24;
  --bg: #fef0f7;
  --bg-light: #fff5fb;
  --white: #ffffff;
  --gray-100: #f8f8f8;
  --gray-200: #f0f0f0;
  --gray-400: #a0a0a0;
  --gray-600: #666666;
  --gray-800: #333333;
  --shadow-sm: 0 2px 8px rgba(233, 30, 140, 0.1);
  --shadow-md: 0 4px 20px rgba(233, 30, 140, 0.15);
  --shadow-lg: 0 8px 40px rgba(233, 30, 140, 0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ──────────────────────────────────────────────────────────  */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--gray-800);
  line-height: 1.6;
  min-height: 100vh;
}

/* ─── SCROLLBAR ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-weight: 700; color: var(--gray-800); line-height: 1.2; }
a { text-decoration: none; color: inherit; }

/* ─── NAVBAR ──────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233,30,140,0.12);
  padding: 0 2rem;
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.navbar-logo span {
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar-logo .logo-icon { font-size: 2rem; }
.navbar-nav {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.navbar-nav a {
  padding: 8px 18px; border-radius: 50px;
  font-weight: 500; font-size: 0.95rem;
  color: var(--gray-600); white-space: nowrap;
  transition: var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
}
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; border: none; cursor: pointer;
  padding: 10px 20px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.cart-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--accent); color: #333; border-radius: 50%;
  width: 20px; height: 20px; font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.burger { display: none; background: none; border: none; cursor: pointer; font-size: 1.5rem; }

/* ─── HERO ──────────────────────────────────────────────────────────────────  */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 40%, #e8eaf6 100%);
  padding: 100px 2rem;
  min-height: 600px;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(233,30,140,0.12), transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.1), transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(233,30,140,0.12); border: 1px solid rgba(233,30,140,0.25);
  color: var(--primary); font-weight: 600; font-size: 0.85rem;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.1rem; color: var(--gray-600);
  margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; border: none; cursor: pointer;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: var(--transition); box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: white; color: var(--primary);
  border: 2px solid var(--primary); cursor: pointer;
  padding: 12px 30px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--primary); color: white; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 40px;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat .label { font-size: 0.8rem; color: var(--gray-400); }
.hero-address {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; color: var(--gray-600); font-size: 0.9rem;
  background: rgba(233,30,140,0.07); border: 1px solid rgba(233,30,140,0.15);
  padding: 8px 16px; border-radius: 50px;
}
.hero-image-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  position: relative;
}
.hero-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  transition: var(--transition);
}
.hero-img-card:hover { transform: scale(1.03); }
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-card:nth-child(2) { margin-top: 40px; }

/* ─── SECTION COMMON ─────────────────────────────────────────────────────── */
.section { padding: 80px 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, var(--gray-800), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle { color: var(--gray-400); margin-top: 12px; font-size: 1rem; }

/* ─── CATEGORIES TABS ────────────────────────────────────────────────────── */
.categories-section { background: white; }
.cat-tabs {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 48px;
}
.cat-tab {
  padding: 10px 24px; border-radius: 50px;
  background: var(--gray-100); border: 2px solid transparent;
  font-weight: 600; cursor: pointer; transition: var(--transition);
  font-size: 0.95rem; color: var(--gray-600);
  display: flex; align-items: center; gap: 8px;
}
.cat-tab:hover { border-color: var(--primary); color: var(--primary); background: white; }
.cat-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; border-color: transparent;
  box-shadow: var(--shadow-sm);
}

/* ─── PRODUCT CARDS ──────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}
.product-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-img-wrap {
  position: relative; aspect-ratio: 1;
  overflow: hidden; background: var(--gray-100);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
}
.product-actions-hover {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  padding: 40px 16px 16px;
  opacity: 0; transition: var(--transition);
  display: flex; gap: 8px;
}
.product-card:hover .product-actions-hover { opacity: 1; }
.btn-add-cart {
  flex: 1; background: white; color: var(--primary);
  border: none; border-radius: 50px; padding: 10px;
  font-weight: 700; cursor: pointer; transition: var(--transition);
  font-size: 0.85rem;
}
.btn-add-cart:hover { background: var(--primary); color: white; }
.product-info { padding: 20px; }
.product-name {
  font-size: 1rem; font-weight: 700; margin-bottom: 8px;
  color: var(--gray-800); line-height: 1.4;
}
.product-desc {
  font-size: 0.85rem; color: var(--gray-400);
  margin-bottom: 16px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-size: 1.3rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-cart-small {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-cart-small:hover { transform: scale(1.15); box-shadow: var(--shadow-md); }

/* ─── FEATURES SECTION ──────────────────────────────────────────────────── */
.features-section {
  background: linear-gradient(135deg, #fce4ec, #f3e5f5);
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px;
}
.feature-card {
  background: white; border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 72px; height: 72px; margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(233,30,140,0.12), rgba(124,58,237,0.12));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-400); }

/* ─── BANNER ─────────────────────────────────────────────────────────────── */
.banner-section {
  padding: 80px 2rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
  text-align: center; color: white;
}
.banner-section h2 { font-size: 2.2rem; color: white; margin-bottom: 16px; }
.banner-section p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; }
.btn-white {
  background: white; color: var(--primary);
  border: none; cursor: pointer;
  padding: 14px 36px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

/* ─── CART PANEL ─────────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: var(--transition); backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-panel {
  position: fixed; right: -440px; top: 0; bottom: 0; width: 440px;
  background: white; z-index: 2001;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.cart-panel.open { right: 0; }
.cart-panel-header {
  padding: 24px; border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}
.cart-panel-header h3 { color: white; font-size: 1.2rem; }
.cart-close {
  background: rgba(255,255,255,0.2); border: none; color: white;
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-close:hover { background: rgba(255,255,255,0.35); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--gray-200); align-items: center;
}
.cart-item-img {
  width: 70px; height: 70px; border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.cart-item-price { color: var(--primary); font-weight: 700; font-size: 1rem; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-200); border: none; cursor: pointer;
  font-weight: 700; font-size: 1rem; transition: var(--transition);
}
.qty-btn:hover { background: var(--primary); color: white; }
.qty-num { font-weight: 700; min-width: 20px; text-align: center; }
.remove-btn {
  background: none; border: none; color: var(--gray-400);
  cursor: pointer; font-size: 1.1rem; margin-left: auto;
  transition: var(--transition);
}
.remove-btn:hover { color: var(--primary); }
.cart-empty {
  text-align: center; padding: 60px 20px; color: var(--gray-400);
}
.cart-empty .empty-icon { margin: 0 auto 16px; display: flex; justify-content: center; }
/* Delivery tabs */
.delivery-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.delivery-tab {
  flex: 1; min-width: 180px; display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200); cursor: pointer;
  font-weight: 600; font-size: 0.9rem; color: var(--gray-600);
  transition: var(--transition); background: var(--gray-100);
}
.delivery-tab.active {
  border-color: var(--primary); color: var(--primary); background: rgba(233,30,140,0.06);
}
.cart-footer {
  padding: 20px; border-top: 1px solid var(--gray-200);
  background: var(--gray-100);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.cart-total-label { font-size: 1rem; color: var(--gray-600); }
.cart-total-value {
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-checkout {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; border: none; border-radius: 50px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: var(--transition); box-shadow: var(--shadow-md);
}
.btn-checkout:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ─── CHECKOUT PAGE ──────────────────────────────────────────────────────── */
.checkout-wrap {
  max-width: 900px; margin: 60px auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 380px; gap: 32px;
}
.checkout-form-wrap {
  background: white; border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-sm);
}
.checkout-form-wrap h2 { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: inherit; transition: var(--transition);
  background: var(--gray-100);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--primary);
  background: white; box-shadow: 0 0 0 4px rgba(233,30,140,0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.order-summary {
  background: white; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  height: fit-content;
}
.order-summary h3 { margin-bottom: 20px; }
.summary-item {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}
.summary-total {
  display: flex; justify-content: space-between;
  padding: 16px 0 0; font-size: 1.2rem; font-weight: 800;
}
.summary-total span:last-child {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SUCCESS PAGE ───────────────────────────────────────────────────────── */
.success-wrap {
  max-width: 600px; margin: 100px auto; padding: 0 2rem; text-align: center;
}
.success-icon {
  width: 100px; height: 100px; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: white;
}
.success-wrap h1 { margin-bottom: 16px; }
.success-wrap p { color: var(--gray-600); margin-bottom: 32px; }

/* ─── CONTACTS ───────────────────────────────────────────────────────────── */
.contacts-wrap { max-width: 1100px; margin: 0 auto; padding: 60px 2rem; }
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card {
  background: white; border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-sm);
}
.contact-card h2 { margin-bottom: 28px; }
.contact-item {
  display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(233,30,140,0.12), rgba(124,58,237,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}

/* ─── CATALOG PAGE ───────────────────────────────────────────────────────── */
.catalog-wrap { max-width: 1200px; margin: 0 auto; padding: 60px 2rem; }
.catalog-filters {
  background: white; border-radius: var(--radius); padding: 24px;
  margin-bottom: 32px; display: flex; gap: 12px; flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.page-hero {
  background: linear-gradient(135deg, #fce4ec, #f3e5f5);
  padding: 60px 2rem;
  text-align: center;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero h1 { font-size: 2.5rem; margin-bottom: 12px; }
.page-hero p { color: var(--gray-600); }

/* ─── PRODUCT DETAIL ────────────────────────────────────────────────────── */
.product-detail-wrap { max-width: 1100px; margin: 0 auto; padding: 60px 2rem; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.product-detail-img {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; box-shadow: var(--shadow-lg);
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info { padding: 20px 0; }
.product-detail-price {
  font-size: 2.5rem; font-weight: 800; margin: 20px 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-detail-desc { color: var(--gray-600); margin-bottom: 32px; line-height: 1.8; }
.btn-add-big {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; border: none; border-radius: 50px;
  font-size: 1.1rem; font-weight: 700; cursor: pointer;
  transition: var(--transition); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-add-big:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--gray-800); color: white;
  padding: 60px 2rem 30px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), #c4b5fd);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition); cursor: pointer;
}
.social-btn:hover { background: var(--primary); transform: translateY(-2px); }
.footer-col h4 { color: white; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.4); font-size: 0.85rem;
}

/* ─── TOAST ──────────────────────────────────────────────────────────────── */
.toast-container {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 9999; display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: white; border-radius: var(--radius-sm);
  padding: 14px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  border-left: 4px solid var(--primary);
  min-width: 260px; animation: slideIn 0.3s ease;
  font-size: 0.9rem; font-weight: 600;
}
.toast.success { border-color: #10b981; }
.toast.error { border-color: #ef4444; }
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}
.toast.hide { animation: slideOut 0.3s ease forwards; }

/* ─── FLOATING BALLOONS ─────────────────────────────────────────────────── */
.floating-balloon {
  position: absolute; font-size: 2rem;
  animation: floatUp 6s ease-in-out infinite;
  opacity: 0.6; pointer-events: none;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { max-width: 400px; margin: 0 auto; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .checkout-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 20px; box-shadow: var(--shadow-md); }
  .navbar-nav.mobile-open { display: flex; }
  .burger { display: block; }
  .hero { padding: 60px 1rem; }
  .section { padding: 50px 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .cart-panel { width: 100%; right: -100%; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
