/* ===== DOA KOZMETİK - SHOPICA STYLE E-COMMERCE ===== */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  --primary: #1B3A5C;
  --primary-light: #2A5580;
  --accent: #D4A853;
  --accent-light: #E8C97A;
  --cta: #1B3A5C;
  --cta-hover: #122740;
  --bg-main: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-warm: #FFF9F0;
  --text-primary: #1A1A2E;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Card backgrounds */
  --card-pink: #FFF0F3;
  --card-blue: #EFF6FF;
  --card-mint: #ECFDF5;
  --card-peach: #FFF7ED;
  --card-lavender: #F3F0FF;
  --card-yellow: #FEFCE8;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  color: #fff;
  padding: 8px 0;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-left a {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
}

.top-bar-left a:hover {
  color: var(--accent);
}

.top-bar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-bar-right a {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-right a:hover {
  color: var(--accent);
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

/* ===== HEADER ===== */
.header {
  background: var(--bg-main);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.95);
}

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

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

.logo img {
  height: 42px;
  width: auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

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

/* Search Bar */
.search-bar {
  flex: 1;
  max-width: 560px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 12px 48px 12px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-light);
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.search-bar input::placeholder {
  color: var(--text-light);
}

.search-bar input:focus {
  border-color: var(--cta);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  outline: none;
}

.search-bar button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--cta);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.search-bar button:hover {
  background: var(--cta-hover);
  transform: translateY(-50%) scale(1.05);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  position: relative;
  background: transparent;
}

.header-action:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.header-action .icon {
  font-size: 1.35rem;
}

.header-action .label {
  font-size: 0.68rem;
  font-weight: 500;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== NAVIGATION ===== */
.nav {
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 74px;
  z-index: 99;
}

.nav .container {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  position: relative;
}

.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-item:hover > a::after {
  transform: scaleX(1);
}

.nav-item:hover > a {
  color: var(--primary);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 50;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.nav-dropdown a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 26px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #FFF5E1 50%, #FDE8D0 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  flex: 1;
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(212, 168, 83, 0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge::before {
  content: '✨';
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 span {
  color: var(--accent);
  position: relative;
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  max-width: 560px;
  position: relative;
  animation: fadeInRight 0.8s ease;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 20px;
  right: -30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-float-card.card-2 {
  bottom: 40px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-float-card .float-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-float-card .float-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.hero-float-card .float-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Decorative shapes */
.hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.08);
  top: -100px;
  right: -50px;
}

.hero::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.06);
  bottom: -80px;
  left: 10%;
}

/* ===== SECTION TITLES ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cta);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

/* ===== CATEGORIES SECTION ===== */
.categories {
  padding: 80px 0;
  background: var(--bg-main);
}

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

.category-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212,168,83,0.1), rgba(37,99,235,0.05));
  opacity: 0;
  transition: var(--transition);
}

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

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

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.category-card:nth-child(1) .category-icon { background: var(--card-pink); }
.category-card:nth-child(2) .category-icon { background: var(--card-blue); }
.category-card:nth-child(3) .category-icon { background: var(--card-lavender); }
.category-card:nth-child(4) .category-icon { background: var(--card-mint); }
.category-card:nth-child(5) .category-icon { background: var(--card-peach); }
.category-card:nth-child(6) .category-icon { background: var(--card-yellow); }

.category-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.category-count {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== PRODUCTS SECTION ===== */
.products {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 168, 83, 0.2);
}

.product-image {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
}

.product-card:nth-child(1) .product-image { background: var(--card-lavender); }
.product-card:nth-child(2) .product-image { background: var(--card-pink); }
.product-card:nth-child(3) .product-image { background: var(--card-blue); }
.product-card:nth-child(4) .product-image { background: var(--card-mint); }
.product-card:nth-child(5) .product-image { background: var(--card-peach); }
.product-card:nth-child(6) .product-image { background: var(--card-yellow); }
.product-card:nth-child(7) .product-image { background: var(--card-pink); }
.product-card:nth-child(8) .product-image { background: var(--card-lavender); }

.product-image img {
  width: 85%;
  height: 200px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.product-action-btn:hover {
  background: var(--primary);
  color: #fff;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new {
  background: var(--cta);
  color: #fff;
}

.badge-sale {
  background: #EF4444;
  color: #fff;
}

.badge-hot {
  background: var(--accent);
  color: #fff;
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
  margin-bottom: 6px;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-name:hover {
  color: var(--cta);
}

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

.product-rating .stars {
  color: #FCD34D;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

.product-rating .count {
  font-size: 0.75rem;
  color: var(--text-light);
}

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

.price-current {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.price-old {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.btn-add-cart {
  width: 100%;
  padding: 11px;
  border-radius: 50px;
  background: var(--bg-light);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-add-cart:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== PROMO BANNER ===== */
.promo {
  padding: 80px 0;
  background: var(--bg-main);
}

.promo-card {
  background: linear-gradient(135deg, var(--primary) 0%, #0F2B47 100%);
  border-radius: var(--radius-xl);
  padding: 60px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.1);
  top: -150px;
  right: -100px;
}

.promo-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  bottom: -80px;
  left: 20%;
}

.promo-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(212, 168, 83, 0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.promo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.promo h2 span {
  color: var(--accent);
}

.promo p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  line-height: 1.6;
}

.promo .btn-primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}

.promo .btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.5);
}

.promo-visual {
  position: relative;
  z-index: 2;
  font-size: 8rem;
  opacity: 0.15;
  color: var(--accent);
}

/* ===== BESTSELLERS ===== */
.bestsellers {
  padding: 80px 0;
  background: var(--bg-main);
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 60px 0;
  background: var(--bg-light);
}

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

.feature-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: #fff;
  transition: var(--transition);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(212,168,83,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== CTA NEWSLETTER ===== */
.newsletter {
  padding: 80px 0;
  background: var(--bg-warm);
}

.newsletter-card {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.newsletter p {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

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

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  background: #fff;
  font-family: 'Inter', sans-serif;
}

.newsletter-form input:focus {
  border-color: var(--cta);
  outline: none;
}

.newsletter-form button {
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--cta);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--cta-hover);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 60px 0 0;
}

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

.footer-brand .logo-text {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.footer-brand .logo-text span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

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

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px !important;
}

.footer-contact .contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.footer-contact .contact-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.payment-methods {
  display: flex;
  gap: 12px;
  align-items: center;
}

.payment-methods span {
  padding: 4px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== MOBILE NAV TOGGLE ===== */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
}

.mobile-nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .promo-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .top-bar-left,
  .top-bar-right .top-bar-divider {
    display: none;
  }

  .top-bar .container {
    justify-content: center;
  }

  .header .container {
    flex-wrap: wrap;
    gap: 12px;
  }

  .search-bar {
    order: 3;
    max-width: 100%;
    flex-basis: 100%;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 200;
    padding: 24px;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
  }

  .nav.open {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-item > a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 16px;
  }

  .nav-item.open .nav-dropdown {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

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

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-float-card {
    display: none;
  }

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

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

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

  .promo-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .promo h2 {
    font-size: 1.6rem;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    gap: 2px;
  }

  .header-action {
    padding: 8px 8px;
  }

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

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}
