/* =============================================
   UYGUNTSHIRT.COM — Ana Stil Dosyası
   Design system: Evelin React Native App
   Accent: #D05278 | BG: #F6F5FB | Font: Mulish
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --accent:       #D05278;
  --accent-dark:  #b8415f;
  --accent-light: #fce9ef;
  --bg1:          #F6F5FB;
  --bg2:          #FAF9FF;
  --stroke:       #EEEEEE;
  --black:        #222222;
  --white:        #FFFFFF;
  --gray1:        #666666;
  --gray2:        #999999;
  --success:      #4CAF50;
  --radius:       4px;
  --shadow:       0 2px 16px rgba(208,82,120,.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Mulish', sans-serif;
  background: var(--bg2);
  color: var(--black);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select { font-family: inherit; }

/* ── UTILITY ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.text-accent { color: var(--accent); }
.text-gray { color: var(--gray1); }
.text-gray2 { color: var(--gray2); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.badge-sale { background: #FF6B35; }
.badge-new  { background: var(--accent); }

/* ── BUTTON ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .3px;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; }
.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: var(--bg1);
  border: 1px solid var(--stroke);
  color: var(--gray1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.btn-icon:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-icon.active { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ── TOPBAR ── */
.topbar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
}
.topbar a { color: var(--white); text-decoration: underline; margin-left: 4px; }

/* ── HEADER ── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--stroke);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 20px;
}
.logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
.header-search {
  flex: 1;
  max-width: 500px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--bg1);
  font-size: 14px;
  color: var(--black);
  outline: none;
  transition: border-color .2s;
}
.header-search input:focus { border-color: var(--accent); background: var(--white); }
.header-search input::placeholder { color: var(--gray2); }
.header-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray2);
}
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cart-btn {
  position: relative;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
}
.cart-btn:hover { background: var(--accent-dark); }
.cart-count {
  background: var(--white);
  color: var(--accent);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--black);
}

/* ── NAV ── */
.nav {
  background: var(--bg1);
  border-bottom: 1px solid var(--stroke);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-link {
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray1);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all .2s;
  position: relative;
}
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--accent); border-bottom-color: var(--accent); }
.nav-link .nav-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 20px;
  margin-left: 4px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--bg1) 0%, #f0ecff 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(208,82,120,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); display: block; }
.hero p {
  font-size: 16px;
  color: var(--gray1);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--stroke);
}
.hero-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
}
.hero-stat span { font-size: 13px; color: var(--gray1); }
.hero-image {
  position: relative;
}
.hero-image-main {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 480px;
  background: var(--stroke);
  overflow: hidden;
}
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge-float {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.hero-badge-text strong { display: block; font-size: 15px; font-weight: 800; }
.hero-badge-text span { font-size: 12px; color: var(--gray1); }

/* ── CATEGORIES ── */
.categories-section { background: var(--white); padding: 40px 0; border-bottom: 1px solid var(--stroke); }
.categories-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scrollbar-width: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.category-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
  min-width: 80px;
}
.category-pill-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg1);
  border: 2px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all .2s;
}
.category-pill:hover .category-pill-icon,
.category-pill.active .category-pill-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
}
.category-pill-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray1);
  white-space: nowrap;
  transition: color .2s;
}
.category-pill:hover .category-pill-label,
.category-pill.active .category-pill-label { color: var(--accent); }

/* ── SECTION HEADING ── */
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-heading h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
}
.section-heading h2 span { color: var(--accent); }
.section-heading p { font-size: 13px; color: var(--gray1); margin-top: 4px; }
.view-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.view-all:hover { text-decoration: underline; }

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: 8px;
  overflow: hidden;
  transition: all .25s;
  position: relative;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card-img {
  position: relative;
  background: var(--bg1);
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-card-actions {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: all .25s;
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-card-body { padding: 14px; }
.product-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  white-space: normal;
  overflow: visible;
  line-height: 1.4;
}
.product-card-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.product-card-rating { display: flex; align-items: center; gap: 3px; }
.star { color: #FFB800; font-size: 12px; }
.star.empty { color: var(--stroke); }
.product-card-reviews { font-size: 12px; color: var(--gray2); }
.product-card-price { display: flex; align-items: center; gap: 8px; }
.price-current { font-size: 17px; font-weight: 800; color: var(--accent); }
.price-old { font-size: 13px; color: var(--gray2); text-decoration: line-through; }
.price-discount {
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  background: #e8f5e9;
  padding: 2px 6px;
  border-radius: var(--radius);
}
.product-card-add {
  width: 100%;
  padding: 10px;
  background: var(--bg1);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  transition: all .2s;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.product-card-add:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ── FEATURED (horizontal scroll) ── */
.featured-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scrollbar-width: none;
}
.featured-scroll::-webkit-scrollbar { display: none; }
.featured-card {
  flex-shrink: 0;
  width: 220px;
}

/* ── GRID PRODUCTS ── */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── PROMO BANNER ── */
.promo-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #b8415f 100%);
  border-radius: 12px;
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.promo-banner::before {
  content: '';
  position: absolute;
  right: 200px;
  top: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.promo-banner::after {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.promo-content { position: relative; z-index: 1; }
.promo-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.promo-banner h2 { font-size: 36px; font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.promo-banner p { font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 24px; max-width: 380px; }
.promo-btn {
  background: var(--white);
  color: var(--accent);
  border: none;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s;
}
.promo-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.promo-image {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.promo-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── FEATURES BAR ── */
.features-bar {
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid var(--stroke);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.feature-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.feature-text span { font-size: 12px; color: var(--gray1); }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--bg1);
  border-radius: 12px;
  padding: 56px 60px;
  text-align: center;
}
.newsletter h2 { font-size: 30px; font-weight: 900; margin-bottom: 12px; }
.newsletter p { color: var(--gray1); margin-bottom: 28px; font-size: 15px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  background: var(--white);
}
.newsletter-form input:focus { border-color: var(--accent); }

/* ── FOOTER ── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.footer-brand .logo { color: var(--white); font-size: 20px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .2s;
  cursor: pointer;
}
.social-link:hover { background: var(--accent); }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.footer-payments { display: flex; gap: 8px; align-items: center; }
.payment-icon {
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--stroke);
}
.cart-header h3 { font-size: 18px; font-weight: 800; }
.cart-close {
  width: 32px;
  height: 32px;
  background: var(--bg1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--gray1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--stroke);
}
.cart-item-img {
  width: 72px;
  height: 80px;
  background: var(--bg1);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cart-item-size { font-size: 12px; color: var(--gray2); margin-bottom: 8px; }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-size: 15px; font-weight: 800; color: var(--accent); }
.qty-control { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid var(--stroke);
  background: var(--bg1);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.qty-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.qty-num { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; }
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--stroke);
  background: var(--bg1);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--gray1);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 800;
}
.cart-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--gray2);
}
.cart-empty-icon { font-size: 64px; margin-bottom: 16px; }
.cart-empty p { font-size: 15px; margin-bottom: 20px; }

/* ── SIZE SELECTOR ── */
.size-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.size-tag {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--bg1);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.size-tag:hover, .size-tag.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ── TOAST ── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  background: var(--black);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transform: translateX(120%);
  transition: transform .3s;
  min-width: 280px;
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 18px; }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(3,1fr); }
  .hero h1 { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-bar { grid-template-columns: repeat(2,1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-right: 1px solid var(--stroke); border-top: 1px solid var(--stroke); }
  .feature-item:nth-child(4) { border-right: none; border-top: 1px solid var(--stroke); }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .hero h1 { font-size: 34px; }
  .hero { padding: 50px 20px; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .promo-banner { flex-direction: column; padding: 36px 28px; text-align: center; }
  .promo-image { width: 160px; height: 160px; font-size: 60px; margin-top: 24px; }
  .promo-banner h2 { font-size: 26px; }
  .features-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .header-search { display: none; }
  .hamburger { display: flex; }
  .cart-drawer { width: 100%; }
  .newsletter { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .hero h1 { font-size: 28px; }
  .promo-banner h2 { font-size: 22px; }
}

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1998;
  background: var(--white);
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.mobile-search {
  position: relative;
  margin-bottom: 24px;
}
.mobile-search input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--bg1);
  font-size: 15px;
  outline: none;
}
.mobile-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray2); }
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-link {
  padding: 16px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  border-bottom: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
