/*
Theme Name: FitFlex Pro
Theme URI: https://fitflexventures.com
Author: FitFlex — Designed by Tausif Torun
Description: Premium football jersey store — No WooCommerce needed
Version: 9.0.0
Requires at least: 6.0
Text Domain: fitflex
*/

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

/* ═══════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════ */
:root {
  --red:      #e8001d;
  --red-dark: #b8001a;
  --red-glow: rgba(232,0,29,0.3);
  --dark:     #0d0d0d;
  --dark2:    #141414;
  --dark3:    #1c1c1c;
  --dark4:    #242424;
  --border:   rgba(255,255,255,0.08);
  --border2:  rgba(255,255,255,0.04);
  --white:    #f5f5f5;
  --gray:     #888;
  --gray2:    #555;
  --gold:     #f5a623;
  --green:    #25d366;
  --font-h:   'Barlow Condensed', sans-serif;
  --font-b:   'Inter', sans-serif;
  --r:        6px;
  --r2:       12px;
  --trans:    all 0.25s ease;
  --shadow:   0 8px 32px rgba(0,0,0,0.4);
  --shadow2:  0 2px 12px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{background:var(--dark);color:var(--white);font-family:var(--font-b);font-size:16px;line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden}
h1,h2,h3,h4,h5,h6{font-family:var(--font-h);line-height:1.1}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{cursor:pointer;border:none;background:none;font-family:inherit}
input,textarea,select{font-family:inherit}
ul,ol{list-style:none}

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

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
#site-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(13,13,13,0.95);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  transition:var(--trans);
}
#site-header.scrolled{background:rgba(13,13,13,0.99);box-shadow:var(--shadow2)}

.header-inner{display:flex;align-items:center;justify-content:space-between;height:68px}

.site-logo{
  font-family:var(--font-h);font-size:1.75rem;font-weight:900;
  letter-spacing:0.06em;color:var(--red);
  display:flex;align-items:center;gap:6px;
}
.site-logo span{color:var(--white)}
.site-logo i{font-size:1.2rem}

.main-nav ul{display:flex;align-items:center;gap:2rem}
.main-nav a{
  font-family:var(--font-h);font-size:0.9rem;font-weight:600;
  letter-spacing:0.12em;text-transform:uppercase;color:var(--gray);
  transition:color 0.2s;position:relative;padding:4px 0;
}
.main-nav a::after{
  content:'';position:absolute;bottom:0;left:0;right:0;
  height:2px;background:var(--red);
  transform:scaleX(0);transition:transform 0.2s;
}
.main-nav a:hover{color:var(--white)}
.main-nav a:hover::after{transform:scaleX(1)}

.header-actions{display:flex;align-items:center;gap:1rem}

.cart-trigger{
  position:relative;
  width:42px;height:42px;
  background:var(--dark3);
  border:1px solid var(--border);
  border-radius:var(--r);
  display:flex;align-items:center;justify-content:center;
  color:var(--white);font-size:1.1rem;
  transition:var(--trans);cursor:pointer;
}
.cart-trigger:hover{background:var(--red);border-color:var(--red)}
.cart-badge{
  position:absolute;top:-6px;right:-6px;
  width:18px;height:18px;background:var(--red);
  color:#fff;font-size:0.65rem;font-weight:700;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  display:none;
}
.cart-badge.show{display:flex}

.menu-toggle{display:none;color:var(--white);font-size:1.3rem;padding:8px}

/* Mobile menu */
.mobile-menu{
  display:none;border-top:1px solid var(--border);
  background:var(--dark2);
}
.mobile-menu.open{display:block}
.mobile-menu a{
  display:block;padding:0.85rem 1.5rem;
  font-family:var(--font-h);font-size:1rem;font-weight:600;
  letter-spacing:0.1em;text-transform:uppercase;color:var(--gray);
  border-bottom:1px solid var(--border2);transition:var(--trans);
}
.mobile-menu a:hover{color:var(--white);background:var(--dark3);padding-left:2rem}

/* ═══════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════ */
.hero{position:relative;width:100%;height:90vh;min-height:560px;overflow:hidden;margin-top:68px}

.hero-slide{
  position:absolute;inset:0;opacity:0;
  transition:opacity 1.2s ease;
}
.hero-slide.active{opacity:1}

.hero-slide-bg{
  width:100%;height:100%;object-fit:cover;
  animation:kenBurns 10s ease-out forwards;
}
.hero-slide.active .hero-slide-bg{animation:kenBurns 10s ease-out forwards}

.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(105deg,rgba(13,13,13,0.92) 0%,rgba(13,13,13,0.55) 50%,rgba(13,13,13,0.15) 100%);
}

.hero-content-wrap{
  position:absolute;inset:0;
  display:flex;align-items:center;
}
.hero-content{max-width:580px}

.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-h);font-size:0.82rem;font-weight:700;
  letter-spacing:0.2em;text-transform:uppercase;
  color:var(--red);margin-bottom:1.25rem;
  background:rgba(232,0,29,0.1);
  border:1px solid rgba(232,0,29,0.3);
  padding:6px 14px;border-radius:30px;
}
.hero-eyebrow::before{content:'';width:6px;height:6px;background:var(--red);border-radius:50%;animation:pulse 1.5s infinite}

.hero-title{
  font-size:clamp(3.5rem,7vw,6rem);
  font-weight:900;text-transform:uppercase;
  line-height:0.95;letter-spacing:-0.01em;
  color:var(--white);margin-bottom:1.25rem;
}
.hero-title em{color:var(--red);font-style:normal}

.hero-desc{
  font-size:1rem;color:var(--gray);
  max-width:420px;margin-bottom:2rem;line-height:1.7;
}

.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}

/* Slider controls */
.hero-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:48px;height:48px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--white);font-size:1rem;
  transition:var(--trans);backdrop-filter:blur(8px);z-index:10;
}
.hero-arrow:hover{background:var(--red);border-color:var(--red)}
.hero-arrow.prev{left:1.5rem}
.hero-arrow.next{right:1.5rem}

.hero-dots{
  position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);
  display:flex;gap:8px;z-index:10;
}
.hero-dot{
  width:32px;height:3px;border-radius:2px;
  background:rgba(255,255,255,0.25);transition:all 0.3s;
}
.hero-dot.active{background:var(--red);width:56px}

/* ═══════════════════════════════════════════
   TICKER BAR
═══════════════════════════════════════════ */
.ticker{background:var(--red);padding:0.55rem 0;overflow:hidden}
.ticker-track{display:flex;width:max-content;animation:ticker 28s linear infinite}
.ticker-item{
  white-space:nowrap;padding:0 2rem;
  font-family:var(--font-h);font-size:0.82rem;font-weight:700;
  letter-spacing:0.12em;text-transform:uppercase;color:#fff;
}
.ticker-item::after{content:'⚽';margin-left:2rem;opacity:0.7}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:0.75rem 2rem;
  font-family:var(--font-h);font-size:0.9rem;font-weight:700;
  letter-spacing:0.1em;text-transform:uppercase;
  border-radius:var(--r);border:2px solid transparent;
  transition:var(--trans);cursor:pointer;
}
.btn-primary{background:var(--red);color:#fff;border-color:var(--red)}
.btn-primary:hover{background:var(--red-dark);border-color:var(--red-dark);transform:translateY(-1px)}
.btn-outline{background:transparent;color:var(--white);border-color:rgba(255,255,255,0.25)}
.btn-outline:hover{border-color:var(--white);background:rgba(255,255,255,0.08)}
.btn-ghost{background:transparent;color:var(--gray);border-color:transparent;padding-left:0}
.btn-ghost:hover{color:var(--white)}
.btn-sm{padding:0.5rem 1.25rem;font-size:0.8rem}
.btn-wa{background:var(--green);color:#fff;border-color:var(--green)}
.btn-wa:hover{background:#1da851;border-color:#1da851}
.btn-block{width:100%;justify-content:center}

/* ═══════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════ */
.section{padding:5rem 0}
.section-alt{background:var(--dark2)}

.section-head{margin-bottom:3rem}
.section-tag{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-h);font-size:0.75rem;font-weight:700;
  letter-spacing:0.2em;text-transform:uppercase;
  color:var(--red);margin-bottom:0.75rem;
}
.section-tag::before{content:'';width:24px;height:2px;background:var(--red)}
.section-title{
  font-size:clamp(2rem,4vw,3rem);font-weight:900;
  text-transform:uppercase;color:var(--white);
}
.section-title em{color:var(--red);font-style:normal}
.section-sub{color:var(--gray);margin-top:0.5rem;font-size:0.92rem}

.section-head-row{
  display:flex;align-items:flex-end;
  justify-content:space-between;gap:1rem;flex-wrap:wrap;
  margin-bottom:2.5rem;
}

/* ═══════════════════════════════════════════
   PRODUCT GRID & CARDS
═══════════════════════════════════════════ */
.products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.25rem;
}

.product-card{
  background:var(--dark3);
  border:1px solid var(--border);
  border-radius:var(--r2);
  overflow:hidden;
  transition:var(--trans);
  position:relative;
}
.product-card:hover{
  border-color:rgba(232,0,29,0.4);
  transform:translateY(-5px);
  box-shadow:0 16px 40px rgba(0,0,0,0.5);
}

.product-img-wrap{
  position:relative;
  aspect-ratio:3/4;
  overflow:hidden;
}
.product-img-wrap img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 0.7s ease;
}
.product-card:hover .product-img-wrap img{transform:scale(1.07)}

.product-img-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(13,13,13,0.85) 0%,transparent 55%);
}

.product-badges{
  position:absolute;top:10px;left:10px;
  display:flex;flex-direction:column;gap:5px;z-index:2;
}
.badge{
  display:inline-flex;align-items:center;gap:4px;
  font-family:var(--font-h);font-size:0.7rem;font-weight:700;
  letter-spacing:0.08em;text-transform:uppercase;
  padding:3px 9px;border-radius:20px;
}
.badge-hot{background:linear-gradient(135deg,var(--red),#ff6b35);color:#fff}
.badge-new{background:linear-gradient(135deg,#00b09b,#96c93d);color:#fff}
.badge-limited{background:linear-gradient(135deg,var(--gold),#f97316);color:#000}
.badge-sold{background:#333;color:var(--gray);text-decoration:line-through}

/* Quick actions on hover */
.product-quick{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;gap:0.6rem;
  background:rgba(13,13,13,0.7);
  opacity:0;transition:opacity 0.3s;z-index:3;
}
.product-card:hover .product-quick{opacity:1}

.product-body{padding:1rem}
.product-name{
  font-family:var(--font-h);font-size:1.1rem;font-weight:700;
  text-transform:uppercase;letter-spacing:0.04em;
  color:var(--white);margin-bottom:0.3rem;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.product-team{font-size:0.78rem;color:var(--gray);margin-bottom:0.6rem}
.product-price-row{
  display:flex;align-items:center;justify-content:space-between;
  gap:0.5rem;
}
.product-price{
  font-family:var(--font-h);font-size:1.3rem;font-weight:800;
  color:var(--red);
}
.product-price-old{
  font-size:0.85rem;color:var(--gray2);
  text-decoration:line-through;margin-left:4px;
}
.product-actions{
  display:flex;gap:0.5rem;margin-top:0.75rem;
}
.product-actions .btn{flex:1;justify-content:center}

/* ═══════════════════════════════════════════
   PROMO BANNER
═══════════════════════════════════════════ */
.promo-banner{position:relative;height:44vh;min-height:260px;overflow:hidden}
.promo-banner img{width:100%;height:100%;object-fit:cover}
.promo-overlay{
  position:absolute;inset:0;
  background:linear-gradient(100deg,rgba(13,13,13,0.88) 0%,rgba(13,13,13,0.4) 60%,transparent 100%);
  display:flex;align-items:center;
}
.promo-content{max-width:500px}
.promo-eyebrow{
  display:inline-block;
  font-family:var(--font-h);font-size:0.75rem;font-weight:700;
  letter-spacing:0.2em;text-transform:uppercase;
  background:var(--red);color:#fff;
  padding:5px 14px;border-radius:20px;margin-bottom:0.75rem;
}
.promo-title{
  font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:900;
  text-transform:uppercase;color:var(--white);
  line-height:1.05;margin-bottom:0.75rem;
}
.promo-title em{color:var(--red);font-style:normal}
.promo-desc{color:var(--gray);font-size:0.92rem;margin-bottom:1.5rem}

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.features-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;
  margin-top:2.5rem;
}
.feature-card{
  background:var(--dark3);
  border:1px solid var(--border);
  border-radius:var(--r2);
  padding:2rem 1.5rem;text-align:center;
  transition:var(--trans);
}
.feature-card:hover{border-color:rgba(232,0,29,0.3);transform:translateY(-3px)}
.feature-icon{
  width:56px;height:56px;
  background:rgba(232,0,29,0.1);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.1rem;font-size:1.5rem;
}
.feature-card h4{
  font-family:var(--font-h);font-size:1rem;font-weight:700;
  text-transform:uppercase;letter-spacing:0.06em;
  color:var(--white);margin-bottom:0.5rem;
}
.feature-card p{font-size:0.85rem;color:var(--gray);line-height:1.6}

/* ═══════════════════════════════════════════
   CART DRAWER (slide-in from right)
═══════════════════════════════════════════ */
.cart-backdrop{
  position:fixed;inset:0;background:rgba(0,0,0,0.7);
  backdrop-filter:blur(4px);z-index:2000;
  opacity:0;pointer-events:none;transition:opacity 0.3s;
}
.cart-backdrop.open{opacity:1;pointer-events:all}

.cart-drawer{
  position:fixed;top:0;right:0;bottom:0;
  width:100%;max-width:440px;
  background:var(--dark2);
  border-left:1px solid var(--border);
  z-index:2001;
  transform:translateX(100%);transition:transform 0.35s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;
  overflow:hidden;
}
.cart-drawer.open{transform:translateX(0)}

.cart-drawer-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.25rem 1.5rem;
  border-bottom:1px solid var(--border);
  flex-shrink:0;
}
.cart-drawer-head h3{
  font-family:var(--font-h);font-size:1.2rem;font-weight:800;
  text-transform:uppercase;letter-spacing:0.08em;color:var(--white);
  display:flex;align-items:center;gap:8px;
}
.cart-drawer-close{
  width:36px;height:36px;background:var(--dark4);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:var(--gray);font-size:1rem;transition:var(--trans);
}
.cart-drawer-close:hover{background:var(--red);color:#fff}

.cart-items-wrap{flex:1;overflow-y:auto;padding:1rem 1.5rem}
.cart-items-wrap::-webkit-scrollbar{width:4px}
.cart-items-wrap::-webkit-scrollbar-track{background:var(--dark3)}
.cart-items-wrap::-webkit-scrollbar-thumb{background:var(--gray2);border-radius:2px}

.cart-empty-state{
  display:flex;flex-direction:column;align-items:center;
  justify-content:center;height:200px;text-align:center;
}
.cart-empty-state .icon{font-size:3rem;margin-bottom:1rem;opacity:0.4}
.cart-empty-state p{color:var(--gray);font-size:0.88rem}

/* Cart item */
.cart-item{
  display:grid;grid-template-columns:70px 1fr auto;
  gap:0.85rem;align-items:start;
  padding:0.85rem 0;
  border-bottom:1px solid var(--border2);
}
.cart-item:last-child{border-bottom:none}
.cart-item-img{
  width:70px;height:70px;border-radius:var(--r);overflow:hidden;
}
.cart-item-img img{width:100%;height:100%;object-fit:cover}
.cart-item-info{}
.cart-item-name{
  font-family:var(--font-h);font-size:0.95rem;font-weight:700;
  text-transform:uppercase;letter-spacing:0.03em;color:var(--white);
}
.cart-item-meta{font-size:0.75rem;color:var(--gray);margin-top:2px}
.cart-item-price{
  font-family:var(--font-h);font-size:1rem;font-weight:800;
  color:var(--red);margin-top:4px;
}
.cart-item-qty{
  display:flex;align-items:center;gap:0;
  background:var(--dark4);border:1px solid var(--border);
  border-radius:var(--r);overflow:hidden;margin-top:6px;
  width:fit-content;
}
.qty-btn{
  width:28px;height:28px;
  display:flex;align-items:center;justify-content:center;
  color:var(--white);font-size:1rem;
  transition:background 0.2s;
}
.qty-btn:hover{background:var(--red);color:#fff}
.qty-val{
  width:32px;text-align:center;
  font-size:0.85rem;color:var(--white);
}
.cart-remove{
  width:28px;height:28px;display:flex;align-items:center;justify-content:center;
  color:var(--gray2);font-size:0.85rem;transition:color 0.2s;
  margin-top:-2px;
}
.cart-remove:hover{color:#dc3545}

.cart-drawer-foot{
  padding:1.25rem 1.5rem;
  border-top:1px solid var(--border);
  flex-shrink:0;background:var(--dark3);
}
.cart-total-row{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:1rem;
}
.cart-total-label{font-family:var(--font-h);font-size:0.8rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--gray)}
.cart-total-amount{font-family:var(--font-h);font-size:1.5rem;font-weight:900;color:var(--red)}
.cart-foot-btns{display:flex;flex-direction:column;gap:0.6rem}

/* ═══════════════════════════════════════════
   ORDER MODAL
═══════════════════════════════════════════ */
.order-backdrop{
  position:fixed;inset:0;background:rgba(0,0,0,0.88);
  backdrop-filter:blur(8px);z-index:3000;
  display:none;align-items:center;justify-content:center;padding:1rem;
}
.order-backdrop.open{display:flex}

.order-modal{
  background:var(--dark2);
  border:1px solid rgba(232,0,29,0.3);
  border-radius:var(--r2);
  width:100%;max-width:520px;
  max-height:92vh;overflow-y:auto;
  position:relative;
  animation:modalIn 0.3s ease;
}
.order-modal::-webkit-scrollbar{width:4px}
.order-modal::-webkit-scrollbar-thumb{background:var(--gray2);border-radius:2px}

.order-modal-head{
  background:linear-gradient(135deg,#1a0303,#2d0808);
  border-bottom:1px solid rgba(232,0,29,0.25);
  padding:1.25rem 1.5rem;
  display:flex;align-items:center;justify-content:space-between;
  position:sticky;top:0;z-index:1;
}
.order-modal-head h3{
  font-family:var(--font-h);font-size:1.15rem;font-weight:800;
  text-transform:uppercase;letter-spacing:0.06em;color:var(--white);
  display:flex;align-items:center;gap:8px;
}
.order-modal-close{
  width:34px;height:34px;background:rgba(255,255,255,0.06);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:var(--gray);font-size:1rem;transition:var(--trans);
}
.order-modal-close:hover{background:var(--red);color:#fff}

.order-product-info{
  display:flex;align-items:center;gap:0.85rem;
  padding:1rem 1.5rem;
  background:rgba(255,255,255,0.02);
  border-bottom:1px solid var(--border2);
}
.order-product-img{
  width:60px;height:60px;border-radius:var(--r);overflow:hidden;flex-shrink:0;
}
.order-product-img img{width:100%;height:100%;object-fit:cover}
.order-product-name{
  font-family:var(--font-h);font-size:1rem;font-weight:700;
  text-transform:uppercase;color:var(--white);
}
.order-product-price{
  font-family:var(--font-h);font-size:1.1rem;font-weight:800;color:var(--red);
}

.order-form{padding:1.25rem 1.5rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:0.85rem}
.form-group{margin-bottom:0.85rem}
.form-group label{
  display:block;font-size:0.72rem;font-weight:600;
  color:var(--gray);text-transform:uppercase;letter-spacing:0.08em;
  margin-bottom:0.3rem;
}
.form-inp{
  width:100%;background:var(--dark4);
  border:1px solid var(--border);border-radius:var(--r);
  padding:10px 13px;color:var(--white);font-size:0.9rem;
  outline:none;transition:border-color 0.2s;box-sizing:border-box;
}
.form-inp:focus{border-color:var(--red)}
.form-inp-ta{resize:none;min-height:68px}

.cod-notice{
  display:flex;align-items:center;gap:0.6rem;
  background:rgba(37,211,102,0.07);
  border:1px solid rgba(37,211,102,0.2);
  border-radius:var(--r);padding:0.75rem 1rem;
  margin-bottom:1rem;font-size:0.82rem;color:var(--gray);
}
.cod-notice strong{color:var(--green)}

.order-success{
  text-align:center;padding:2.5rem 1.5rem;
}
.order-success .s-icon{font-size:4rem;margin-bottom:1rem}
.order-success h3{
  font-family:var(--font-h);font-size:1.5rem;font-weight:900;
  text-transform:uppercase;color:var(--white);margin-bottom:0.5rem;
}
.order-success p{color:var(--gray);font-size:0.9rem;line-height:1.7}
.order-success strong{color:var(--red)}

.order-msg{
  padding:10px 13px;border-radius:var(--r);
  margin-bottom:1rem;font-size:0.84rem;display:none;
}
.order-msg.err{background:rgba(220,53,69,0.1);border:1px solid rgba(220,53,69,0.3);color:#ff6b6b}
.order-msg.ok{background:rgba(37,211,102,0.1);border:1px solid rgba(37,211,102,0.3);color:var(--green)}

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════ */
#wa-float{
  position:fixed;bottom:2rem;right:2rem;z-index:1500;
  width:58px;height:58px;background:var(--green);
  color:#fff;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.7rem;box-shadow:0 4px 20px rgba(37,211,102,0.45);
  text-decoration:none;transition:var(--trans);
  animation:waPulse 2.5s infinite;
}
#wa-float:hover{transform:scale(1.1);box-shadow:0 6px 28px rgba(37,211,102,0.65)}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer{
  background:var(--dark2);
  border-top:1px solid var(--border);
  padding:3.5rem 0 0;
}
.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2.5rem;
  padding-bottom:2.5rem;
}
.footer-logo{
  font-family:var(--font-h);font-size:1.6rem;font-weight:900;
  letter-spacing:0.06em;color:var(--red);margin-bottom:0.75rem;display:flex;align-items:center;gap:6px;
}
.footer-logo span{color:var(--white)}
.footer-desc{font-size:0.86rem;color:var(--gray);line-height:1.75;margin-bottom:1.25rem}
.footer-email{font-size:0.82rem;color:var(--gray);margin-bottom:1.25rem}
.footer-email a{color:var(--gray);transition:color 0.2s}
.footer-email a:hover{color:var(--red)}

.social-links{display:flex;gap:0.6rem}
.social-link{
  width:36px;height:36px;
  background:var(--dark4);border:1px solid var(--border);
  border-radius:var(--r);display:flex;align-items:center;justify-content:center;
  color:var(--gray);font-size:0.9rem;transition:var(--trans);
}
.social-link:hover{background:var(--red);border-color:var(--red);color:#fff}

.footer-col h4{
  font-family:var(--font-h);font-size:0.8rem;font-weight:700;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--white);margin-bottom:1rem;
}
.footer-links{display:flex;flex-direction:column;gap:0.5rem}
.footer-links a,.footer-links span{
  font-size:0.86rem;color:var(--gray);
  transition:color 0.2s;display:flex;align-items:center;gap:6px;
}
.footer-links a:hover{color:var(--red)}
.footer-links i{width:14px;color:var(--red);font-size:0.8rem}

.footer-bottom{
  border-top:1px solid var(--border);
  padding:1.25rem 0;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:0.5rem;
}
.footer-bottom p{font-size:0.78rem;color:var(--gray2)}
.footer-bottom a{color:var(--gray2);transition:color 0.2s}
.footer-bottom a:hover{color:var(--red)}

/* ═══════════════════════════════════════════
   TOAST
═══════════════════════════════════════════ */
.ff-toast{
  position:fixed;bottom:1.5rem;left:50%;transform:translateX(-50%) translateY(80px);
  background:var(--dark3);border:1px solid var(--border);
  color:var(--white);padding:12px 22px;border-radius:30px;
  font-size:0.88rem;z-index:9999;white-space:nowrap;
  transition:transform 0.35s ease, opacity 0.35s ease;
  opacity:0;box-shadow:var(--shadow);
}
.ff-toast.show{transform:translateX(-50%) translateY(0);opacity:1}
.ff-toast.success{border-color:var(--green);color:var(--green)}
.ff-toast.error{border-color:#dc3545;color:#ff6b6b}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes kenBurns{from{transform:scale(1)}to{transform:scale(1.08)}}
@keyframes ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.3}}
@keyframes waPulse{
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.45)}
  50%{box-shadow:0 4px 30px rgba(37,211,102,0.7),0 0 0 8px rgba(37,211,102,0.1)}
}
@keyframes modalIn{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:1024px){
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .main-nav{display:none}
  .menu-toggle{display:block}
  .hero{height:75vh}
  .hero-title{font-size:3rem}
  .hero-arrow{display:none}
  .section{padding:3.5rem 0}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .form-row{grid-template-columns:1fr}
  .cart-drawer{max-width:100%}
}
@media(max-width:480px){
  .products-grid{grid-template-columns:repeat(2,1fr);gap:0.75rem}
  .features-grid{grid-template-columns:1fr}
  .product-actions{flex-direction:column}
}

/* Section red variant */
.section-red { background: linear-gradient(135deg, #1a0303 0%, #0d0d0d 100%); }

/* Product card link */
.product-card-link { display: block; text-decoration: none; color: inherit; }

/* Single product page padding */
body.single-ffv_product .site-footer { margin-bottom: 70px; }
@media(min-width:769px) { body.single-ffv_product .site-footer { margin-bottom: 0; } }

/* Smooth image transition */
#spMainImg { transition: opacity 0.2s ease; }

/* Size chart two-column grid responsive */
@media(max-width:640px){
  .sp-tabs .size-chart-wrap + div,
  #tab-size > div[style*="grid"] {
    grid-template-columns: 1fr !important;
  }
}

/* Product number badge on card */
.product-card-num {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: rgba(13,13,13,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  z-index: 4;
}

/* WhatsApp direct message style upgrade */
#wa-float {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  border-radius: 30px;
  width: 58px;
}
#wa-float:hover {
  width: 200px;
  border-radius: 30px;
  padding: 0 16px 0 12px;
  gap: 8px;
}
#wa-float .wa-text {
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: all 0.3s;
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
#wa-float:hover .wa-text {
  opacity: 1;
  width: auto;
}

/* ── Archive page extras ─────────── */
.section-red{background:linear-gradient(135deg,#1a0303 0%,#0d0d0d 100%)}

/* ── Image zoom cursor hint ─────── */
.sp-main-img{cursor:zoom-in}
.sp-main-img::after{
  content:'🔍 Zoom';
  position:absolute;bottom:10px;right:10px;
  background:rgba(0,0,0,.65);color:#fff;
  padding:4px 10px;border-radius:20px;
  font-size:.7rem;font-family:var(--font-b);
  pointer-events:none;letter-spacing:.04em;
}

/* ── Lightbox improvements ─────── */
.sp-lightbox{background:rgba(0,0,0,.96)}
.sp-lightbox img{
  max-width:92vw;max-height:90vh;
  border-radius:4px;
  box-shadow:0 0 60px rgba(0,0,0,.8);
  cursor:zoom-out;
}
.sp-lb-prev,.sp-lb-next{
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(4px);
}

/* ── Gallery thumb improvement ──── */
.sp-thumb{transition:all .2s;opacity:.7}
.sp-thumb.active,.sp-thumb:hover{opacity:1;transform:scale(1.05)}

/* ── Mobile sticky bar fix ──────── */
@media(min-width:769px){.sp-sticky-bar{display:none!important}}

/* ── Section manage page ────────── */
.tog{transition:all .2s}
