/* ================================================================
   MODASTORE — Premium Fashion E-Commerce Stylesheet
   Inspired by Zara / Massimo Dutti / & Other Stories
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --black:      #0a0a0a;
  --off-black:  #1a1a1a;
  --dark:       #2c2c2c;
  --mid:        #6b6b6b;
  --light-mid:  #9a9a9a;
  --border:     #e8e8e8;
  --light-bg:   #f7f6f4;
  --white:      #ffffff;
  --accent:     #b8955a;   /* warm gold */
  --accent-2:   #d4af75;
  --danger:     #b84040;

  --serif:  'Cormorant Garamond', 'Times New Roman', serif;
  --sans:   'Inter', -apple-system, sans-serif;

  --sh-sm:  0 1px 3px rgba(0,0,0,.07);
  --sh:     0 4px 20px rgba(0,0,0,.09);
  --sh-lg:  0 12px 40px rgba(0,0,0,.14);
  --sh-xl:  0 24px 64px rgba(0,0,0,.18);

  --r:      0px;    /* Zara gibi: sert köşe */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;

  --ease: cubic-bezier(.25,.46,.45,.94);
  --dur: .35s;
  --container: 1320px;
}

/* ── RESET ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:15px;overflow-x:hidden}
body{font-family:var(--sans);color:var(--dark);background:#fff;
     line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden;width:100%}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
button{cursor:pointer;border:none;background:none;font-family:inherit}
ul,ol{list-style:none}
input,select,textarea{font-family:inherit;font-size:inherit}

/* ── CONTAINER ── */
.container{max-width:var(--container);margin:0 auto;padding:0 24px}
@media(min-width:768px){.container{padding:0 48px}}

/* ── BREADCRUMB ── */
.breadcrumb ol{display:flex;align-items:center;gap:0;flex-wrap:wrap;font-size:13px;color:var(--mid)}
.breadcrumb li{display:flex;align-items:center;white-space:nowrap}
.breadcrumb li+li::before{content:'›';margin:0 10px;color:var(--border);font-size:14px}
.breadcrumb li a{color:var(--mid);text-decoration:none;transition:color .2s}
.breadcrumb li a:hover{color:var(--black)}
.breadcrumb li:last-child{color:var(--dark);font-weight:500}

/* ── TYPOGRAPHY ── */
.serif{font-family:var(--serif)}
h1,h2,h3{font-family:var(--serif);font-weight:400;letter-spacing:-.02em}

/* ── BUTTONS ── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 28px;font-size:12px;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;border:1.5px solid transparent;
  cursor:pointer;transition:all var(--dur) var(--ease);white-space:nowrap;
  border-radius:var(--r-sm);font-family:var(--sans);
}
.btn-dark{background:var(--black);color:#fff;border-color:var(--black)}
.btn-dark:hover{background:var(--off-black);border-color:var(--off-black);transform:translateY(-1px);box-shadow:var(--sh)}
.btn-outline{background:transparent;color:var(--black);border-color:var(--black)}
.btn-outline:hover{background:var(--black);color:#fff}
.btn-outline-white{background:transparent;color:#fff;border-color:rgba(255,255,255,.7)}
.btn-outline-white:hover{background:rgba(255,255,255,.12);border-color:#fff}
.btn-accent{background:var(--accent);color:#fff;border-color:var(--accent)}
.btn-accent:hover{background:#a0844d;border-color:#a0844d}
.btn-ghost{background:transparent;color:var(--mid);border-color:transparent}
.btn-ghost:hover{background:var(--light-bg)}
.btn-sm{padding:9px 18px;font-size:11px}
.btn-lg{padding:16px 36px;font-size:13px}
.btn-block{width:100%;justify-content:center}
.btn svg{width:15px;height:15px}

/* ── FORMS ── */
.form-input{
  width:100%;padding:12px 16px;
  border:1.5px solid var(--border);border-radius:var(--r-sm);
  font-size:14px;color:var(--dark);background:#fff;
  transition:border-color var(--dur);
}
.form-input:focus{outline:none;border-color:var(--black)}
textarea.form-input{resize:vertical}

/* ================================================================
   ANNOUNCEMENT BAR
================================================================ */
.announcement-bar{
  background:var(--black);color:rgba(255,255,255,.85);
  font-size:11.5px;font-weight:500;letter-spacing:.08em;
  padding:10px 0;text-align:center;
}

/* ================================================================
   HERO SLIDER
================================================================ */
.hero{position:relative;width:100%;overflow:hidden;background:var(--black)}
.hero-track{display:flex;height:92vh;min-height:540px;max-height:820px}
@media(max-width:768px){.hero-track{height:75vh;min-height:420px}}

.hero-slide{
  position:absolute;inset:0;opacity:0;
  transition:opacity .9s var(--ease);
  overflow:hidden;
}
.hero-slide.active{opacity:1;z-index:1}

.hero-slide-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center center;
  transition:transform 8s var(--ease);
}
.hero-slide.active .hero-slide-bg{transform:scale(1.04)}

/* Gradient overlay */
.hero-slide::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.32) 55%,
    rgba(0,0,0,.08) 100%
  );
}

.hero-content{
  position:absolute;bottom:0;left:0;top:0;
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:0 0 80px 80px;z-index:2;max-width:580px;
}
@media(max-width:768px){.hero-content{padding:0 0 56px 32px;max-width:100%}}

.hero-eyebrow{
  font-size:11px;font-weight:600;letter-spacing:.2em;
  text-transform:uppercase;color:rgba(255,255,255,.65);
  margin-bottom:16px;
}
.hero-title{
  font-family:var(--serif);font-size:clamp(2.6rem,6vw,5rem);
  font-weight:300;line-height:1.05;color:#fff;
  margin-bottom:18px;letter-spacing:-.03em;
}
.hero-title strong{font-weight:600;display:block}
.hero-sub{
  font-size:14px;color:rgba(255,255,255,.75);
  margin-bottom:36px;line-height:1.6;max-width:380px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}

/* Slider controls */
.hero-arrows{
  position:absolute;top:50%;transform:translateY(-50%);
  width:100%;display:flex;justify-content:space-between;
  padding:0 24px;z-index:3;pointer-events:none;
}
.hero-arr{
  width:48px;height:48px;border-radius:50%;
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.25);
  color:#fff;display:flex;align-items:center;justify-content:center;
  cursor:pointer;pointer-events:auto;
  transition:all .25s;backdrop-filter:blur(8px);
  font-size:20px;font-weight:300;
}
.hero-arr:hover{background:rgba(255,255,255,.2);border-color:rgba(255,255,255,.5);transform:scale(1.05)}

.hero-dots{
  position:absolute;bottom:28px;left:50%;transform:translateX(-50%);
  display:flex;gap:8px;z-index:3;
}
.hero-dot{
  width:32px;height:2px;background:rgba(255,255,255,.3);
  cursor:pointer;transition:all .3s;
}
.hero-dot.active{background:#fff;width:48px}

/* ================================================================
   SECTION HEADER
================================================================ */
.sec-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:36px}
.sec-title{font-family:var(--serif);font-size:2rem;font-weight:400;color:var(--black)}
.sec-title span{display:block;width:36px;height:2px;background:var(--accent);margin-top:10px}
.sec-sub{font-size:12.5px;color:var(--mid);margin-top:6px;letter-spacing:.02em}
.sec-link{
  font-size:11.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:var(--dark);border-bottom:1.5px solid var(--dark);padding-bottom:2px;
  transition:color .2s,border-color .2s;white-space:nowrap;
}
.sec-link:hover{color:var(--accent);border-color:var(--accent)}

/* ================================================================
   CATEGORIES — Editorial grid
================================================================ */
.cat-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
@media(max-width:900px){.cat-grid{grid-template-columns:repeat(2,1fr);gap:12px}}

.cat-card{
  position:relative;display:block;overflow:hidden;
  aspect-ratio:2/3;background:var(--light-bg);
  text-decoration:none;
}
.cat-card:hover .cat-img{transform:scale(1.06)}
.cat-card:hover .cat-cta{letter-spacing:.18em;color:var(--accent)}

.cat-img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .8s var(--ease);
}
.cat-placeholder{
  width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  background:var(--light-bg);
}
/* Gerçek fotoğraflar — Unsplash üzerinden */
.cat-placeholder-kadin{
  background:
    url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=600&q=80')
    center/cover no-repeat;
}
.cat-placeholder-erkek{
  background:
    url('https://images.unsplash.com/photo-1488161628813-04466f872be2?w=600&q=80')
    center/cover no-repeat;
}
.cat-placeholder-cocuk{
  background:
    url('https://images.unsplash.com/photo-1622290291468-a28f7a7dc6a8?w=600&q=80')
    center/cover no-repeat;
}
.cat-placeholder-aksesuar{
  background:
    url('https://images.unsplash.com/photo-1548036328-c9fa89d128fa?w=600&q=80')
    center/cover no-repeat;
}

/* Overlay gradient */
.cat-info{
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:24px 20px;
}
.cat-name{
  font-family:var(--serif);font-size:1.45rem;font-weight:400;
  color:#fff;letter-spacing:-.01em;line-height:1.1;
}
.cat-count{font-size:11px;color:rgba(255,255,255,.6);margin-top:4px;letter-spacing:.03em}
.cat-cta{
  font-size:10.5px;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:rgba(255,255,255,.8);
  margin-top:14px;transition:all .3s;display:inline-block;
}

/* ================================================================
   PRODUCT TABS
================================================================ */
.tabs-nav{
  display:flex;gap:0;border-bottom:1px solid var(--border);
  margin-bottom:32px;
}
.tab-btn{
  padding:12px 22px;font-size:12px;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;
  color:var(--mid);border:none;background:none;cursor:pointer;
  border-bottom:2px solid transparent;margin-bottom:-1px;
  transition:all .2s;
}
.tab-btn:hover{color:var(--black)}
.tab-btn.active{color:var(--black);border-bottom-color:var(--black)}
.tab-pane{display:none}
.tab-pane.active{display:block}

/* ================================================================
   PRODUCT CARDS
================================================================ */
.products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
@media(max-width:1100px){.products-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:700px){.products-grid{grid-template-columns:repeat(2,1fr);gap:14px}}

.product-card{
  position:relative;
  --card-r: 0px;
}
.product-card-img{
  position:relative;overflow:hidden;
  aspect-ratio:3/4;background:var(--light-bg);
}
.product-card-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .8s var(--ease);
}
.product-card:hover .product-card-img img{transform:scale(1.06)}

.product-badge{
  position:absolute;top:12px;left:12px;
  background:var(--black);color:#fff;
  font-size:10px;font-weight:700;letter-spacing:.08em;
  text-transform:uppercase;padding:4px 9px;z-index:2;
}
.product-badge.sale{background:var(--danger)}
.product-badge.new{background:var(--accent)}

.wishlist-btn{
  position:absolute;top:10px;right:10px;
  width:34px;height:34px;border-radius:50%;
  background:rgba(255,255,255,.88);display:flex;
  align-items:center;justify-content:center;
  opacity:0;transform:scale(.85);
  transition:all .25s;cursor:pointer;border:none;
  color:var(--dark);z-index:2;
}
.wishlist-btn svg{width:16px;height:16px}
.product-card:hover .wishlist-btn,
.wishlist-btn.active{opacity:1;transform:scale(1)}
.wishlist-btn.active{background:var(--black);color:#fff}

/* Quick add (varyantsız ürün - img üstünde) */
.quick-add-btn{
  position:absolute;bottom:10px;right:10px;
  width:38px;height:38px;border-radius:50%;
  background:var(--black);color:#fff;border:none;
  display:flex;align-items:center;justify-content:center;
  opacity:0;transform:translateY(6px);
  transition:all .3s;cursor:pointer;z-index:2;
  box-shadow:0 2px 8px rgba(0,0,0,.2);
}
.product-card:hover .quick-add-btn{opacity:1;transform:translateY(0)}
.quick-add-btn:hover{background:var(--accent)}

.product-card-info{padding:14px 2px 4px}
.p-brand{font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--accent)}
.p-name{
  font-size:14px;font-weight:400;color:var(--black);
  margin:5px 0 8px;line-height:1.35;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  text-decoration:none;display:block;
}
.p-name:hover{color:var(--accent)}
.p-prices{display:flex;align-items:baseline;gap:8px}
.p-price{font-size:14px;font-weight:600;color:var(--black)}
.p-price-old{font-size:12px;color:var(--light-mid);text-decoration:line-through}
.p-stars{display:flex;align-items:center;gap:4px;margin-top:5px}
.p-stars svg{width:11px;height:11px}
.p-stars span{font-size:11px;color:var(--mid)}

/* Variant swatches on card */
.p-variants{display:flex;flex-direction:column;gap:6px;margin-top:8px}
.p-var-colors{display:flex;align-items:center;gap:4px}
.p-var-dot{width:16px;height:16px;border-radius:50%;box-shadow:inset 0 0 0 1px rgba(0,0,0,.12);display:block;transition:transform .2s;flex-shrink:0}
.p-var-dot:hover{transform:scale(1.25)}
.p-var-sizes{display:flex;align-items:center;gap:3px;flex-wrap:wrap}
.p-var-size{font-size:10px;font-weight:600;color:var(--mid);background:var(--light-bg);padding:2px 7px;border-radius:3px;text-decoration:none;transition:all .2s;line-height:1.3}
.p-var-size:hover{color:var(--black);background:var(--border)}
.p-var-more{font-size:10px;font-weight:700;color:var(--accent);text-decoration:none;padding:2px 4px;transition:color .2s}
.p-var-more:hover{color:var(--black)}

.product-card-action{margin-top:10px}
.btn-addcart{
  width:100%;padding:10px;font-size:11px;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;
  background:var(--black);color:#fff;
  opacity:0;transform:translateY(4px);
  transition:all .3s;border:none;cursor:pointer;
  border-radius:var(--r-sm);display:flex;align-items:center;justify-content:center;gap:6px;
  text-decoration:none;font-family:var(--sans);
}
.btn-addcart:hover{background:var(--off-black)}
.btn-addcart-outline{background:transparent;color:var(--black);border:1.5px solid var(--border)}
.btn-addcart-outline:hover{border-color:var(--black);background:transparent}
.product-card:hover .btn-addcart{opacity:1;transform:translateY(0)}

/* Empty state */
.empty-state{text-align:center;padding:64px 20px;color:var(--mid)}
.empty-state .icon{font-size:52px;margin-bottom:16px;opacity:.4}
.empty-state h3{font-family:var(--serif);font-size:1.4rem;margin-bottom:8px;color:var(--dark)}
.empty-state p{font-size:13px}

/* ================================================================
   MARQUEE STRIP
================================================================ */
.marquee-strip{
  background:var(--black);color:rgba(255,255,255,.75);
  padding:14px 0;overflow:hidden;
}
.marquee-inner{
  display:flex;gap:48px;white-space:nowrap;
  animation:marquee 28s linear infinite;
}
.marquee-inner span{
  font-size:11px;font-weight:500;letter-spacing:.18em;
  text-transform:uppercase;flex-shrink:0;
}
.marquee-inner span.dot{color:var(--accent);font-size:8px}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ================================================================
   PROMO BANNER
================================================================ */
.promo-section{
  display:grid;grid-template-columns:1fr 1fr;min-height:520px;
}
@media(max-width:768px){.promo-section{grid-template-columns:1fr;min-height:auto}}

.promo-img{
  position:relative;overflow:hidden;
  background:url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=800&q=80')
    center/cover no-repeat;
}
.promo-img::after{
  content:'';position:absolute;inset:0;
  background:rgba(0,0,0,.12);
}

.promo-content{
  background:var(--light-bg);display:flex;flex-direction:column;
  justify-content:center;padding:80px 64px;
}
@media(max-width:900px){.promo-content{padding:48px 36px}}

.promo-tag{
  font-size:10.5px;font-weight:600;letter-spacing:.22em;
  text-transform:uppercase;color:var(--accent);margin-bottom:16px;
  display:block;
}
.promo-title{
  font-family:var(--serif);font-size:clamp(2rem,4vw,3rem);
  font-weight:300;color:var(--black);line-height:1.1;
  margin-bottom:16px;
}
.promo-body{font-size:14px;color:var(--mid);line-height:1.75;margin-bottom:32px;max-width:360px}
.newsletter-form{display:flex;gap:0;max-width:400px}
.newsletter-form input{
  flex:1;padding:13px 18px;font-size:13px;
  border:1.5px solid var(--border);border-right:none;
  border-radius:var(--r-sm) 0 0 var(--r-sm);
  background:#fff;
}
.newsletter-form input:focus{outline:none;border-color:var(--black)}
.newsletter-form button{
  padding:13px 24px;background:var(--black);color:#fff;
  font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  border:1.5px solid var(--black);border-radius:0 var(--r-sm) var(--r-sm) 0;
  cursor:pointer;transition:all .2s;white-space:nowrap;
}
.newsletter-form button:hover{background:var(--off-black)}

/* ================================================================
   FEATURES BAR
================================================================ */
.features-bar{
  border-top:1px solid var(--border);border-bottom:1px solid var(--border);
  padding:40px 0;
}
.features-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:32px;
}
@media(max-width:768px){.features-grid{grid-template-columns:repeat(2,1fr)}}

.feature-item{
  display:flex;align-items:flex-start;gap:18px;
}
.feature-icon-wrap{
  width:44px;height:44px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  border:1.5px solid var(--border);border-radius:var(--r-sm);
  color:var(--black);
}
.feature-icon-wrap svg{width:20px;height:20px}
.feature-title{font-size:13px;font-weight:600;color:var(--black);margin-bottom:3px}
.feature-text{font-size:12px;color:var(--mid);line-height:1.5}


/* ================================================================
   FOOTER — Premium
================================================================ */
.site-footer { background: var(--black); color: rgba(255,255,255,.65); }

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding: 72px 0 60px;
}
@media (max-width: 1000px) { .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 48px; } }
@media (max-width: 520px)  { .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 40px; } }

/* Brand col */
.footer-logo {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.footer-logo em { font-style: normal; color: var(--accent); }
.footer-about {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
  max-width: 270px;
}

/* Social */
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: all .25s;
}
.social-btn svg { width: 15px; height: 15px; }
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Newsletter inside footer */
.footer-newsletter-box {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.footer-newsletter-box p {
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-nl-form { display: flex; flex-direction: column; gap: 8px; }
.footer-nl-form input {
  padding: 10px 14px;
  font-size: 13px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-family: var(--sans);
}
.footer-nl-form input::placeholder { color: rgba(255,255,255,.3); }
.footer-nl-form input:focus { outline: none; border-color: var(--accent); }
.footer-nl-form button {
  padding: 11px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  transition: background .2s;
}
.footer-nl-form button:hover { background: #a0844d; }

/* Column titles */
.footer-col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Column links */
.footer-col-links { display: flex; flex-direction: column; gap: 12px; }
.footer-col-links li a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
  display: inline-block;
}
.footer-col-links li a:hover { color: var(--accent); }

/* Contact items */
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--accent); }
.footer-contact-item:hover { color: rgba(255,255,255,.75); }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-payment { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pay-badge {
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,.12);
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  font-family: var(--sans);
}
.footer-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11.5px;
  color: rgba(255,255,255,.3);
}
.footer-trust svg { color: var(--accent); }

/* Scroll top */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--black); color: #fff;
  border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  z-index: 500; transition: all .2s;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--accent); transform: translateY(-2px); }

/* ================================================================
   AUTH PAGES — Login / Register
================================================================ */
.auth-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: var(--light-bg);
}
.auth-box {
  width: 100%;
  max-width: 460px;
}
.auth-logo-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.auth-logo-link {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  display: inline-block;
}
.auth-logo-link em { font-style: normal; color: var(--accent); }
.auth-tagline {
  font-size: 13px;
  color: var(--mid);
  margin-top: 10px;
}
.auth-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 40px;
}
.auth-card h1 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 28px;
}
.auth-form { display: flex; flex-direction: column; gap: 20px; }
.auth-field { display: flex; flex-direction: column; gap: 7px; }
.auth-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.auth-field label a {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: underline;
  text-transform: none;
  letter-spacing: 0;
}
.auth-field .form-input {
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 0;
}
.auth-field .pwd-wrap { position: relative; }
.auth-field .pwd-wrap .form-input { padding-right: 48px; }
.pwd-toggle {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--mid); padding: 2px;
  display: flex; align-items: center;
}
.pwd-toggle svg { width: 17px; height: 17px; }
.auth-submit {
  padding: 14px; font-size: 13px;
  font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-top: 4px;
}
.auth-bottom {
  text-align: center;
  padding: 20px 0 4px;
  font-size: 13px;
  color: var(--mid);
}
.auth-bottom a {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
}
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .auth-grid { grid-template-columns: 1fr; } }
.auth-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12.5px; color: var(--mid); cursor: pointer; line-height: 1.5;
}
.auth-checkbox input { margin-top: 2px; accent-color: var(--black); flex-shrink: 0; }
.auth-checkbox a { color: var(--black); font-weight: 600; }


/* ================================================================
   HEADER v6 — Dropdown fix + Inline search
================================================================ */

/* Ann bar */
.ann-bar {
  background: var(--black);
  color: rgba(255,255,255,.72);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 10px 40px 10px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.ann-track { display: flex; align-items: center; justify-content: center; gap: 20px; white-space: nowrap; overflow: hidden; }
.ann-track a { color: var(--accent); text-decoration: underline; }
.ann-dot { opacity: .3; }
.ann-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.4);
  font-size: 20px; cursor: pointer; line-height: 1; padding: 2px 8px;
  transition: color .2s;
}
.ann-close:hover { color: #fff; }

/* Site header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.hdr-wrap {
  max-width: var(--container); margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center;
  height: 66px; gap: 20px;
}
@media (min-width: 1024px) { .hdr-wrap { padding: 0 40px; } }

/* Hamburger */
.hdr-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 6px; background: none; border: none; cursor: pointer; flex-shrink: 0;
}
.hdr-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--black); transition: all .3s; }
@media (min-width: 1024px) { .hdr-hamburger { display: none; } }

/* Logo */
.hdr-logo {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--black); text-decoration: none; letter-spacing: -.03em; flex-shrink: 0;
}
.hdr-logo em { font-style: normal; color: var(--accent); }

/* ── DESKTOP NAV ── */
.hdr-nav { display: none; flex: 1; justify-content: center; }
@media (min-width: 1024px) { .hdr-nav { display: flex; } }

.hdr-nav-list {
  display: flex; align-items: center; gap: 2px; list-style: none;
}

.hdr-nav-list > li { position: relative; }

.hdr-nav-list > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px; font-size: 12.5px; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--dark); border-radius: var(--r-sm);
  white-space: nowrap; text-decoration: none;
  transition: color .2s, background .2s;
}
.hdr-nav-list > li > a:hover { color: var(--black); background: var(--light-bg); }
.nav-arrow { width: 10px; height: 10px; flex-shrink: 0; transition: transform .25s; }
.nav-sale { color: var(--danger) !important; font-weight: 700 !important; }

/* ── DROPDOWN — pointer-events trick ile hover sorununu çöz ── */
.hdr-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  /* Küçük boşluğu köprüle — hover kopmasın */
  padding-top: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  z-index: 500;
}
/* has-drop hover'da dropdown'u göster */
.has-drop:hover .hdr-dropdown,
.hdr-dropdown:hover {
  pointer-events: auto;
  opacity: 1;
}
/* has-drop hover ok'unu çevir */
.has-drop:hover .nav-arrow { transform: rotate(180deg); }

.hdr-dropdown-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: 10px;
  min-width: 200px;
}
.drop-all-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 14px; font-size: 12.5px; font-weight: 700;
  color: var(--black); text-decoration: none; border-radius: var(--r-sm);
  border-bottom: 1px solid var(--border); margin-bottom: 4px; padding-bottom: 12px;
  transition: background .15s;
}
.drop-all-link:hover { background: var(--light-bg); }
.drop-list { list-style: none; }
.drop-list li a {
  display: block; padding: 9px 14px;
  font-size: 13px; color: var(--mid); text-decoration: none;
  border-radius: var(--r-sm); transition: all .15s;
}
.drop-list li a:hover { background: var(--light-bg); color: var(--black); }

/* ── HEADER ACTIONS ── */
.hdr-actions { display: flex; align-items: center; gap: 2px; margin-left: auto; flex-shrink: 0; }

/* Generic icon button */
.hdr-icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); color: var(--dark);
  background: none; border: none; cursor: pointer;
  text-decoration: none; transition: all .2s; position: relative; flex-shrink: 0;
}
.hdr-icon-btn:hover { background: var(--light-bg); color: var(--black); }
.hdr-icon-btn svg { width: 20px !important; height: 20px !important; }

/* Cart badge */
.hdr-cart-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--accent); color: #fff;
  width: 17px; height: 17px; border-radius: 50%;
  font-size: 9px; font-weight: 800; font-family: var(--sans);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.hdr-cart-badge.bounce { animation: cartBounce .5s ease; }
@keyframes cartBounce { 0% { transform: scale(1); } 30% { transform: scale(1.5); } 50% { transform: scale(.85); } 70% { transform: scale(1.2); } 100% { transform: scale(1); } }

/* User avatar */
.hdr-user-av {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--black); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── USER DROPDOWN ── */
.hdr-user-wrap { position: relative; }
.hdr-user-drop {
  display: none; position: absolute; top: calc(100% + 10px); right: 0;
  width: 240px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.13); overflow: hidden; z-index: 600;
}
.hdr-user-drop.open { display: block; }
.hud-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}
.hud-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--black); color: #fff;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hud-name { font-size: 13.5px; font-weight: 700; color: var(--black); }
.hud-email { font-size: 11px; color: var(--mid); margin-top: 2px; }
.hud-links { padding: 8px; }
.hud-links a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; font-size: 13px; color: var(--dark);
  border-radius: var(--r-sm); text-decoration: none; transition: background .15s;
}
.hud-links a svg { width: 15px !important; height: 15px !important; flex-shrink: 0; color: var(--mid); }
.hud-links a:hover { background: var(--light-bg); }
.hud-sep { height: 1px; background: var(--border); margin: 6px 12px; }
.hud-logout { color: var(--danger) !important; }

/* ── INLINE SEARCH ── */
.hdr-search-wrap { position: relative; }
.hdr-search-trigger {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); color: var(--dark);
  background: none; border: none; cursor: pointer; transition: all .2s;
}
.hdr-search-trigger:hover { background: var(--light-bg); }
.hdr-search-trigger svg { width: 20px !important; height: 20px !important; }

.hdr-search-box {
  display: none;
  position: absolute; top: calc(100% + 10px); right: -8px;
  width: 320px;
  background: #fff;
  border: 1.5px solid var(--black);
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 600;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hdr-search-box { position: fixed; top: 56px; left: 8px; right: 8px; width: auto; }
}
.hdr-search-box.open { display: block; }

.hdr-search-form {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-bottom: 1px solid var(--border);
}
.hdr-search-form svg { width: 17px !important; height: 17px !important; flex-shrink: 0; color: var(--mid); }
.hdr-search-form input {
  flex: 1; border: none; font-size: 14px; font-family: var(--sans);
  color: var(--black); outline: none; background: transparent;
}
.hdr-search-form input::placeholder { color: var(--light-mid); }
.hdr-search-close {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--mid); line-height: 1; padding: 0 4px;
  transition: color .2s;
}
.hdr-search-close:hover { color: var(--black); }

.hdr-search-results { max-height: 420px; overflow-y: auto; }
.hsr-group { padding: 0; }
.hsr-group-title { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); padding: 12px 16px 6px; background: var(--light-bg); }
.hsr-cat-item { display: block; padding: 8px 16px; font-size: 13px; color: var(--dark); text-decoration: none; transition: all .15s; font-weight: 500; }
.hsr-cat-item:hover { background: var(--light-bg); color: var(--accent); padding-left: 22px; }
.hsr-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; text-decoration: none; color: var(--dark);
  transition: background .15s; border-bottom: 1px solid var(--border);
}
.hsr-item:last-child { border-bottom: none; }
.hsr-item:hover { background: var(--light-bg); }
.hsr-item img { width: 44px; height: 54px; object-fit: cover; flex-shrink: 0; background: var(--light-bg); border-radius: 4px; }
.hsr-item-info { flex: 1; min-width: 0; }
.hsr-brand { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 2px; }
.hsr-name { font-size: 13px; font-weight: 500; color: var(--black); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hsr-price { font-size: 12.5px; color: var(--black); font-weight: 700; margin-top: 3px; }
.hsr-old { font-size: 11px; color: var(--light-mid); text-decoration: line-through; font-weight: 400; margin-left: 4px; }
.hsr-all { display: block; text-align: center; padding: 14px; font-size: 12px; font-weight: 700; color: var(--accent); text-decoration: none; border-top: 1px solid var(--border); letter-spacing: .04em; transition: background .15s; }
.hsr-all:hover { background: var(--light-bg); }
.hsr-empty { padding: 24px; text-align: center; font-size: 13px; color: var(--mid); }
.hsr-loading { padding: 16px; text-align: center; }
.hsr-loading-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--black); display: inline-block; animation: blink .9s infinite alternate; }
.hsr-loading-dot:nth-child(2) { animation-delay: .3s; }
.hsr-loading-dot:nth-child(3) { animation-delay: .6s; }
@keyframes blink { to { opacity: .2; } }

/* ── MOBILE MENU ── */
#mobileMenu { display: none; position: fixed; inset: 0; z-index: 9000; }
.mob-panel {
  width: 320px; max-width: 88vw; height: 100%;
  background: #fff; display: flex; flex-direction: column;
  overflow-y: auto; box-shadow: 0 0 40px rgba(0,0,0,.2);
  border-right: 1px solid var(--border);
}
.mob-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.mob-close-btn {
  width: 36px; height: 36px; border-radius: 50%; background: var(--light-bg);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.mob-close-btn svg { width: 18px !important; height: 18px !important; }
.mob-search {
  padding: 12px 22px; border-bottom: 1px solid var(--border); background: var(--light-bg);
}
.mob-search form { display: flex; border: 1.5px solid var(--border); background: #fff; }
.mob-search input {
  flex: 1; padding: 9px 12px; border: none; font-size: 13.5px;
  background: transparent; font-family: var(--sans); outline: none;
}
.mob-search button {
  padding: 9px 12px; background: var(--black); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center;
}
.mob-search button svg { width: 15px !important; height: 15px !important; }
.mob-nav { flex: 1; padding: 8px 0; }
.mob-nav > a {
  display: block; padding: 13px 22px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--dark); text-decoration: none; border-bottom: 1px solid var(--light-bg);
  transition: color .2s;
}
.mob-nav > a:hover { color: var(--accent); }
.mob-details { border-bottom: 1px solid var(--light-bg); }
.mob-details summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 22px; cursor: pointer; list-style: none;
}
.mob-details summary::-webkit-details-marker { display: none; }
.mob-details summary a {
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--dark); text-decoration: none; flex: 1;
}
.mob-chev { width: 14px !important; height: 14px !important; color: var(--mid); transition: transform .25s; }
.mob-details[open] .mob-chev { transform: rotate(180deg); }
.mob-subs { padding: 2px 0 6px; background: var(--light-bg); }
.mob-subs a {
  display: block; padding: 9px 22px 9px 34px;
  font-size: 13px; color: var(--mid); text-decoration: none; transition: color .2s;
}
.mob-subs a:hover { color: var(--black); }
.mob-foot {
  padding: 18px 22px; border-top: 1px solid var(--border);
  display: flex; gap: 10px; flex-shrink: 0;
}
.mob-overlay { flex: 1; background: rgba(0,0,0,.45); cursor: pointer; }

/* ═══ TOAST NOTIFICATIONS ═══ */
#toastWrap {
  position: fixed; bottom: 24px; right: 24px; z-index: 99999;
  display: flex; flex-direction: column-reverse; gap: 10px;
  pointer-events: none; max-width: 380px; width: 100%;
}
@media (max-width: 500px) { #toastWrap { right: 12px; left: 12px; bottom: 12px; max-width: none; } }

.toast {
  pointer-events: auto;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: 10px;
  background: #fff; color: var(--black);
  box-shadow: 0 6px 28px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  border-left: 4px solid var(--mid);
  font-size: 13.5px; font-weight: 500; line-height: 1.45;
  position: relative; overflow: hidden;
  animation: toastIn .35s cubic-bezier(.22,.68,0,1.1);
  transform-origin: bottom right;
}
.toast.removing {
  animation: toastOut .3s ease forwards;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px) scale(.92); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes toastOut {
  to { opacity: 0; transform: translateX(40px) scale(.92); }
}

.toast-icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 12px; margin-top: 1px;
}
.toast-body { flex: 1; min-width: 0; }
.toast-title { font-size: 12px; font-weight: 700; letter-spacing: .03em; margin-bottom: 2px; }
.toast-msg { font-size: 13px; color: var(--dark); line-height: 1.45; }

.toast-close {
  background: none; border: none; color: var(--light-mid); cursor: pointer;
  padding: 2px; margin: -2px -4px 0 0; transition: color .2s; flex-shrink: 0;
  font-size: 18px; line-height: 1;
}
.toast-close:hover { color: var(--black); }

.toast-progress {
  position: absolute; bottom: 0; left: 0; height: 3px;
  border-radius: 0 0 0 10px; opacity: .6;
}

/* Success */
.toast.success { border-left-color: #2e7d32; }
.toast.success .toast-icon { background: #e8f5e9; color: #2e7d32; }
.toast.success .toast-title { color: #2e7d32; }
.toast.success .toast-progress { background: #2e7d32; }

/* Error */
.toast.error { border-left-color: #c62828; }
.toast.error .toast-icon { background: #fdecea; color: #c62828; }
.toast.error .toast-title { color: #c62828; }
.toast.error .toast-progress { background: #c62828; }

/* Warning */
.toast.warning { border-left-color: #e65100; }
.toast.warning .toast-icon { background: #fff3e0; color: #e65100; }
.toast.warning .toast-title { color: #e65100; }
.toast.warning .toast-progress { background: #e65100; }

/* Info */
.toast.info { border-left-color: #1565c0; }
.toast.info .toast-icon { background: #e3f2fd; color: #1565c0; }
.toast.info .toast-title { color: #1565c0; }
.toast.info .toast-progress { background: #1565c0; }

@keyframes toastProg { from { width: 100%; } to { width: 0%; } }

/* ═══ WHATSAPP FLOAT ═══ */
.wa-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
  display: flex; align-items: center; gap: 0;
  background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; border-radius: 50px;
  padding: 0; width: 56px; height: 56px;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
  text-decoration: none; overflow: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  justify-content: center;
  animation: waPulse 3s ease-in-out infinite;
}
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 14px rgba(37,211,102,.35); } 50% { box-shadow: 0 4px 14px rgba(37,211,102,.35), 0 0 0 10px rgba(37,211,102,.1); } }
.wa-float:hover { animation: none; }
.wa-float svg { flex-shrink: 0; }
.wa-float-label {
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  white-space: nowrap; max-width: 0; opacity: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1); overflow: hidden;
}
.wa-float:hover {
  width: auto; padding: 0 20px 0 16px; gap: 8px; border-radius: 50px;
  box-shadow: 0 6px 20px rgba(37,211,102,.4); transform: translateY(-2px);
}
.wa-float:hover .wa-float-label { max-width: 100px; opacity: 1; }
@media (max-width: 500px) { .wa-float { bottom: 76px; left: 16px; width: 50px; height: 50px; } .wa-float svg { width: 22px; height: 22px; } }

/* ═══ MOBILE BOTTOM NAV ═══ */
.btm-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: #fff; border-top: 1px solid var(--border);
  justify-content: space-around; padding: 6px 0 env(safe-area-inset-bottom, 6px);
  box-shadow: 0 -2px 12px rgba(0,0,0,.06);
}
@media (max-width: 768px) { .btm-nav { display: flex; }
  .site-footer { padding-bottom: 70px; }
  .wa-float { bottom: 76px; }
  .scroll-top { bottom: 76px; }
  #toastWrap { bottom: 76px; }
}
.btm-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 10px; font-weight: 600; color: var(--mid);
  text-decoration: none; padding: 4px 12px; transition: color .2s;
  position: relative;
}
.btm-nav-item.active { color: var(--black); }
.btm-nav-item svg { transition: transform .2s; }
.btm-nav-item.active svg { transform: scale(1.1); }
.btm-nav-cart { position: relative; }
.btm-nav-badge {
  position: absolute; top: -2px; right: 4px;
  background: var(--accent); color: #fff;
  width: 16px; height: 16px; border-radius: 50%;
  font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ═══ MOBILE FIXES ═══ */
@media (max-width: 768px) {
  /* Product cards: always show button on mobile */
  .btn-addcart { opacity: 1; transform: translateY(0); font-size: 10.5px; padding: 9px 8px; }
  .quick-add-btn { opacity: 1; transform: translateY(0); width: 34px; height: 34px; }
  .wishlist-btn { opacity: 1; transform: scale(1); width: 30px; height: 30px; }
  .wishlist-btn svg { width: 14px; height: 14px; }
  
  /* Product card info tighter */
  .product-card-info { padding: 10px 2px 2px; }
  .p-brand { font-size: 9px; letter-spacing: .1em; }
  .p-name { font-size: 12.5px; margin: 3px 0 5px; }
  .p-price { font-size: 13px; }
  .p-price-old { font-size: 11px; }
  .p-var-dot { width: 14px; height: 14px; }
  .p-var-size { font-size: 9px; padding: 2px 5px; }
  .p-var-more { font-size: 9px; }
  .p-variants { gap: 4px; margin-top: 5px; }
  
  /* Header tighter */
  .hdr-wrap { height: 56px; gap: 12px; padding: 0 16px; }
  .hdr-logo { font-size: 18px; }
  .hdr-icons { gap: 4px; }
  .hdr-icon-btn { width: 36px; height: 36px; }
  .hdr-icon-btn svg { width: 18px !important; height: 18px !important; }
  
  /* Container padding */
  .container { padding: 0 16px; }
  
  /* Section spacing */
  .section { padding: 48px 0; }
  
  /* Category grid */
  .cat-grid { gap: 10px; }
  .cat-name { font-size: 1.1rem; }
  .cat-count { font-size: 11px; }
  .cat-info { padding: 16px 14px 14px; }
  
  /* Tabs */
  .tabs-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tab-btn { padding: 12px 18px; font-size: 11px; white-space: nowrap; }
  
  /* Sec head */
  .sec-head { margin-bottom: 24px; }
  .sec-title { font-size: 1.5rem; }
  .sec-link { font-size: 10px; }
  
  /* Features */
  .features-bar { padding: 32px 0; }
  .feature-item { gap: 12px; }
  .feature-icon-wrap { width: 40px; height: 40px; }
  .feature-title { font-size: 12px; }
  .feature-text { font-size: 11px; }
  
  /* Newsletter */
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1.5px solid var(--border); border-radius: var(--r-sm); }
  .newsletter-form button { border-radius: var(--r-sm); padding: 12px; }
  
  /* Promo */
  .promo-title { font-size: 2rem; }
  .promo-content { padding: 36px 24px; }
}

/* ═══ BREADCRUMB ═══ */
.breadcrumb { padding: 12px 0; font-size: .82rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; gap: 0; }
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li::after { content: '/'; margin: 0 8px; color: #cbd5e1; font-size: .75rem; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: #64748b; text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: #6366f1; }
.breadcrumb-current { color: #1e293b; font-weight: 600; }

/* ═══ LAZY LOAD ═══ */
img.lazy { opacity: 0; transition: opacity .3s ease; }
img.lazy.loaded, img.lazy[src]:not([src*="data:"]) { opacity: 1; }
