@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,400&family=Manrope:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&family=Montserrat:wght@400;600;700;800;900&display=swap');

/* ============================================
   BEWAKOOF CLONE - Main Stylesheet
   ============================================ */

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

:root {
  --primary: #C8992E;
  --primary-dark: #9C7521;
  --black: #1a1a1a;
  --dark: #2d2d2d;
  --gray: #666;
  --light-gray: #f5f5f5;
  --border: #e0e0e0;
  --white: #fff;
  --red: #e74c3c;
  --green: #27ae60;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.15);
  --transition: 0.25s ease;
  /* D.PRA Design System — aliases to avoid duplication with header.php inline CSS */
  --bone:       var(--light-gray);
  --bone-light: #FAF7F0;
  --bone-dark:  #EDE5D4;
  --ink:        var(--black);
  --ink-muted:  var(--gray);
  --honey:      var(--primary);
  --honey-dark: var(--primary-dark);
  --ff-serif:   'Fraunces', Georgia, serif;
  --ff-sans:    'Manrope', sans-serif;
  --ff-mono:    'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--black);
  background: #fff;
  line-height: 1.5;
  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; }

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

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--black);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}

.announcement-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  padding-left: 100%;
}

.announcement-track span { padding: 0 8px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

/* Logo */
.logo { flex-shrink: 0; }
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;   /* removes white/cream background on white header */
}
.logo-text {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--black);
  text-transform: lowercase;
  position: relative;
}
.logo-text::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.logo-reg { font-size: 14px; vertical-align: super; color: var(--primary); }

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

.search-form {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 0 16px;
  transition: var(--transition);
}

.search-form:focus-within {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(200,153,46,0.15);
}

.search-icon { color: var(--gray); font-size: 14px; margin-right: 8px; }

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  font-size: 14px;
  outline: none;
  color: var(--black);
}

.search-btn {
  background: var(--primary);
  border: none;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover { background: var(--primary-dark); }

.search-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 12px 16px;
  z-index: 100;
}

.search-wrapper:focus-within .search-suggestions { display: block; }

.suggestion-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  background: var(--light-gray);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark);
}

.tag:hover { background: var(--primary); }

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

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 11px;
  color: var(--dark);
  position: relative;
  transition: var(--transition);
  gap: 2px;
}

.action-btn:hover { background: var(--light-gray); color: var(--black); }

.action-btn i { font-size: 18px; }

.badge {
  position: absolute;
  top: 2px;
  right: 6px;
  background: var(--red);
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cart-btn { background: var(--primary); }
.cart-btn:hover { background: var(--primary-dark); }

/* ============================================
   MAIN NAV
   ============================================ */
.main-nav {
  border-top: 1px solid var(--border);
  background: white;
}

.nav-list {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-item { position: relative; }

.nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--dark);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-item:hover > .nav-link { color: var(--black); }

.nav-item:hover > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.couple-link { color: #e74c3c; }
.sale-link { color: #e74c3c; }
.new-link { color: #2ecc71; }

/* Mega Menu */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 640px;
  background: white;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 24px;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  z-index: 999;
  border-top: 3px solid var(--primary);
}

.nav-item:hover .mega-menu { display: grid; }

.mega-col h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--black);
}

.mega-col ul li { margin-bottom: 8px; }

.mega-col ul li a {
  font-size: 13px;
  color: var(--gray);
  transition: var(--transition);
}

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

.mega-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mega-banner img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

.mega-banner span {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 480px;
}

.slider-container {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
  height: 100%;
}

.slide-text { color: white; max-width: 480px; }

.slide-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.slide-text h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

.highlight { color: var(--primary); }

.slide-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary, .btn-secondary, .btn-dark {
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  border: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary);
  color: var(--black);
}

.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

.btn-dark {
  background: var(--black);
  color: white;
}

.btn-dark:hover { background: var(--dark); transform: translateY(-2px); }

.slide-image {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.slide-image img {
  height: 92%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  font-size: 16px;
  color: var(--black);
  box-shadow: var(--shadow);
}

.slider-btn:hover { background: var(--primary); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
  background: var(--black);
  padding: 20px 0;
}

.trust-badges .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.badge-item i {
  font-size: 28px;
  color: var(--primary);
}

.badge-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.badge-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.view-all:hover { color: var(--gray); }

/* ============================================
   CATEGORIES
   ============================================ */
.category-section { padding: 48px 0; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: var(--transition);
}

.category-card:hover { transform: translateY(-4px); }

.cat-img {
  width: 100%;
  aspect-ratio: 5/6;
  border-radius: 12px;
  overflow: hidden;
  background: var(--light-gray);
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.category-card span {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-section { padding: 40px 0; }

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: var(--light-gray);
  color: var(--gray);
  transition: var(--transition);
  border: 2px solid transparent;
}

.filter-tab:hover { border-color: var(--primary); color: var(--black); }
.filter-tab.active { background: var(--primary); color: var(--black); }

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

/* Product Card */
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

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

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--light-gray);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 1;
}

.product-badge.new-badge { background: var(--green); }
.product-badge.sale-badge { background: var(--red); }

.wishlist-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1;
  box-shadow: var(--shadow);
  font-size: 14px;
  color: var(--gray);
}

.wishlist-icon:hover, .wishlist-icon.active { color: var(--red); }
.wishlist-icon.active i { font-weight: 900; }

.quick-view {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.8);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}

.product-card:hover .quick-view { bottom: 0; }

.product-info {
  padding: 10px 12px 12px;
}

.product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.product-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.price-sale {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
}

.price-original {
  font-size: 13px;
  color: var(--gray);
  text-decoration: line-through;
}

.price-discount {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.product-colors {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.color-dot:hover { border-color: var(--black); transform: scale(1.2); }

.add-to-cart-btn {
  width: 100%;
  background: var(--black);
  color: white;
  border: none;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

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

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 4px;
}

.stars { color: #FFB800; font-size: 11px; }

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner { padding: 20px 0; }

.promo-inner {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
  overflow: hidden;
  position: relative;
}

.promo-text h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
}

.promo-text p {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 20px;
}

.promo-img img {
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* ============================================
   DOUBLE BANNER
   ============================================ */
.double-banner { padding: 40px 0; }

.banner-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.banner-card {
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  min-height: 200px;
  transition: var(--transition);
}

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

.banner-content { color: white; z-index: 1; }

.banner-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.banner-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.banner-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}

.banner-card img {
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.8;
}

/* ============================================
   BRAND USP
   ============================================ */
.brand-usp { padding: 60px 0; background: var(--light-gray); }

.brand-usp h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 36px;
}

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

.usp-card {
  background: white;
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.usp-icon { font-size: 36px; margin-bottom: 12px; }

.usp-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.usp-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================
   APP SECTION
   ============================================ */
.app-section { padding: 60px 0; background: var(--black); }

.app-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.app-text { color: white; flex: 1; }

.app-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.app-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.app-features { list-style: none; margin-bottom: 28px; }

.app-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.app-features li i { color: var(--primary); }

.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.store-btn:hover { background: rgba(200,153,46,0.15); border-color: var(--primary); }

.store-btn i { font-size: 24px; }

.store-btn small {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
}

.store-btn strong {
  display: block;
  font-size: 16px;
}

.app-image img {
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(200,153,46,0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #111; color: white; }

.footer-top { padding: 60px 0 40px; }

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

.footer-logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-col p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.social-links { display: flex; gap: 12px; }

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  transition: var(--transition);
}

.social-links a:hover { background: var(--primary); color: var(--black); }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--primary);
}

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

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: white; padding-left: 4px; }

.newsletter-form {
  display: flex;
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 12px;
  color: white;
  font-size: 13px;
  outline: none;
}

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

.newsletter-form button {
  background: var(--primary);
  border: none;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  transition: var(--transition);
}

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

.payment-icons span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 8px;
}

.pay-logos { display: flex; gap: 6px; flex-wrap: wrap; }

.pay-badge {
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-links { display: flex; gap: 20px; }

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--primary); }

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

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

.modal {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 32px;
  position: relative;
  animation: slideUp 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover { background: var(--border); }

.modal-logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
}

.modal-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.modal-body p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.phone-input-group {
  display: flex;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  transition: var(--transition);
}

.phone-input-group:focus-within { border-color: var(--primary); }

.country-code {
  background: var(--light-gray);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  border-right: 1px solid var(--border);
}

.phone-input-group input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 15px;
  outline: none;
}

.full-width { width: 100%; text-align: center; }

.divider {
  text-align: center;
  position: relative;
  margin: 16px 0;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.divider span {
  background: white;
  padding: 0 12px;
  font-size: 12px;
  color: var(--gray);
  position: relative;
}

.social-login {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.google-login:hover { background: #f1f3f4; }
.fb-login { color: #1877f2; }
.fb-login:hover { background: #e7f0fd; }

.terms-text {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
}

.terms-text a { color: var(--black); text-decoration: underline; }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--black);
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-hover);
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   SCROLL TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); background: var(--primary-dark); }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.page-header {
  background: var(--black);
  color: white;
  padding: 28px 0;
  margin-bottom: 0;
}

.page-header h1 { font-size: 28px; font-weight: 800; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 4px; }

.products-page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 24px 0 60px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Sidebar Filters */
.filters-sidebar {
  position: sticky;
  top: 130px;
  height: fit-content;
}

.filter-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}

.filter-block-title {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--light-gray);
  user-select: none;
}

.filter-block-body { padding: 12px 16px; }

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-option:hover { color: var(--black); }

.filter-option input[type="checkbox"] {
  accent-color: var(--black);
  width: 15px;
  height: 15px;
}

.color-filters { display: flex; flex-wrap: wrap; gap: 8px; padding: 8px 0; }

.color-filter-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.color-filter-dot:hover, .color-filter-dot.active { border-color: var(--black); transform: scale(1.1); }

.size-filters { display: flex; flex-wrap: wrap; gap: 8px; padding: 8px 0; }

.size-btn {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: white;
}

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

/* Products area */
.products-area-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 4px;
}

.results-count { font-size: 14px; color: var(--gray); }

.sort-select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  outline: none;
  cursor: pointer;
  background: white;
}

.products-area .products-grid { grid-template-columns: repeat(4, 1fr); }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 16px 60px;
}

.product-gallery { position: sticky; top: 120px; height: fit-content; }

.gallery-main {
  border-radius: 12px;
  overflow: hidden;
  background: var(--light-gray);
  margin-bottom: 12px;
  aspect-ratio: 3/4;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.thumb {
  width: 72px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.thumb.active, .thumb:hover { border-color: var(--black); }

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

.product-detail-info h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.rating-count { font-size: 13px; color: var(--gray); }

.product-detail-prices {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.detail-price-sale { font-size: 28px; font-weight: 800; }
.detail-price-original { font-size: 18px; color: var(--gray); text-decoration: line-through; }
.detail-discount { font-size: 16px; color: var(--green); font-weight: 700; }

.product-detail-section { margin-bottom: 20px; }

.product-detail-section h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.color-options { display: flex; gap: 8px; flex-wrap: wrap; }

.color-option {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
}

.color-option:hover, .color-option.active { border-color: var(--black); transform: scale(1.1); }

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

.size-option {
  min-width: 48px;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.size-option.out-of-stock {
  color: var(--gray);
  text-decoration: line-through;
  cursor: not-allowed;
}

.size-option:not(.out-of-stock):hover, .size-option.active {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

.detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.detail-actions .btn-primary { flex: 1; text-align: center; font-size: 15px; padding: 14px; }

.btn-wishlist {
  width: 52px;
  height: 52px;
  border: 2px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-wishlist:hover { border-color: var(--red); color: var(--red); }

.delivery-info {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
}

.delivery-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 8px;
}

.delivery-info p:last-child { margin-bottom: 0; }

.delivery-info i { color: var(--green); width: 16px; }

/* ============================================
   CART PAGE
   ============================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 16px 60px;
}

.cart-items-list { display: flex; flex-direction: column; gap: 16px; }

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  align-items: start;
}

.cart-item-img {
  width: 100px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
}

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

.cart-item-details h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }

.cart-item-meta {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 32px;
  height: 32px;
  background: var(--light-gray);
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover { background: var(--border); }

.qty-value {
  width: 40px;
  height: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  outline: none;
}

.cart-item-price { font-size: 18px; font-weight: 800; white-space: nowrap; }

.remove-item {
  font-size: 12px;
  color: var(--gray);
  text-decoration: underline;
  cursor: pointer;
  display: block;
  margin-top: 8px;
  transition: var(--transition);
  background: none;
  border: none;
  padding: 0;
}

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

.cart-summary {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 130px;
  height: fit-content;
}

.cart-summary h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}

.summary-row.total {
  font-size: 18px;
  font-weight: 800;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
}

.summary-row .discount { color: var(--green); }

.coupon-input {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.coupon-input input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
}

.coupon-input input:focus { border-color: var(--primary); }

.coupon-input button {
  background: var(--black);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.coupon-input button:hover { background: var(--primary); color: var(--black); }

.checkout-btn {
  width: 100%;
  background: var(--primary);
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 8px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.checkout-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 1024px) {
  .slide-text h1 { font-size: 40px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .search-wrapper { order: 3; flex: 100%; }
  .main-nav { overflow-x: auto; }
  .nav-list { flex-nowrap: nowrap; }
  .hero-slider { height: 360px; }
  .slide-content { padding: 0 24px; }
  .slide-text h1 { font-size: 28px; }
  .slide-image { display: none; }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-pair { grid-template-columns: 1fr; }
  .promo-inner { flex-direction: column; text-align: center; }
  .promo-img { display: none; }
  .app-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .products-page-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-slider { height: 300px; }
  .slide-text h1 { font-size: 22px; }
  input, select, textarea { font-size: 16px !important; }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-badges .container { flex-direction: row; flex-wrap: nowrap; overflow-x: auto; gap: 20px; padding: 0 16px; justify-content: flex-start; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .trust-badges .container::-webkit-scrollbar { display: none; }
  .badge-item { flex-shrink: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .slide-text h1 { font-size: 24px; }
}
