/* =====================================================================
   Appluxe Theme – Main Stylesheet
   appluxe-main.css
   ===================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --white: #ffffff;
  --black: #0a0a0f;
  --gray-50: #f8f9fb;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ec;
  --gray-300: #c8cdd8;
  --gray-400: #9aa3b0;
  --gray-600: #5a6478;
  --gray-800: #2d3344;
  --blue-50:  #eff5ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --accent:        #2563eb;
  --accent-light:  #eff5ff;
  --accent-hover:  #1d4ed8;
/* functions.php ya style.css ke top mein Google Fonts add karo */

/* CSS variables update karo */
--font-display: 'Plus Jakarta Sans', sans-serif;
--font-body:    'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-blue: 0 8px 30px rgba(37,99,235,0.18);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); color: var(--black); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }
ul    { list-style: none; }

/* ── Screen-reader only ── */
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Utilities ── */
.container       { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide  { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
.section-flex-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.section-cta-center  { text-align: center; margin-top: 36px; }

/* ── Badges ── */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.badge-blue { background: var(--blue-50);   color: var(--blue-600); border: 1px solid var(--blue-100); }
.badge-deal { background: #fff7ed;           color: #c2410c;         border: 1px solid #fed7aa; }
.badge-new  { background: #f0fdf4;           color: #15803d;         border: 1px solid #bbf7d0; }
.badge-ai   { background: #faf5ff;           color: #7c3aed;         border: 1px solid #e9d5ff; }

/* ── Section Shared ── */
.section-label { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-header { text-align: center; max-width: 540px; margin: 0 auto 48px; }
.section-title  { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; letter-spacing: -0.8px; color: var(--black); margin-bottom: 12px; }
.section-sub    { font-size: 16px; color: var(--gray-600); line-height: 1.6; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-md); font-family: var(--font-body); font-weight: 600; font-size: 15px; cursor: pointer; border: none; transition: all 0.22s cubic-bezier(0.4,0,0.2,1); }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37,99,235,0.28); }
.btn-outline { background: var(--white); color: var(--black); border: 1.5px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--blue-50); transform: translateY(-1px); }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.star { color: #f59e0b; font-size: 13px; }

/* ─────────────────────────── HEADER ─────────────────────────── */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--gray-200); transition: box-shadow 0.25s; }
.header-inner { display: flex; align-items: center; height: 66px; max-width: 1360px; margin: 0 auto; padding: 0 32px; gap: 0; }
.logo { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--black); letter-spacing: -0.5px; display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.logo span, .logo .logo-accent { color: var(--accent); }
.logo-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; display: inline-block; margin-left: 2px; }
.logo img { height: 36px; width: auto; }

/* Primary nav */
.nav { display: flex; align-items: center; gap: 2px; margin-left: 32px; }
.nav ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav a, .nav ul li a { font-size: 14px; font-weight: 500; color: var(--gray-600); padding: 8px 12px; border-radius: var(--radius-sm); transition: all 0.18s; white-space: nowrap; display: block; }
.nav a:hover, .nav ul li a:hover, .nav a.current-menu-item { color: var(--black); background: var(--gray-50); }
.nav .nav-submit { color: var(--accent); }

/* Search */
.header-search { flex: 1; max-width: 280px; margin-left: 20px; position: relative; }
.header-search input { width: 100%; height: 38px; background: var(--gray-100); border: 1.5px solid transparent; border-radius: var(--radius-sm); padding: 0 14px 0 38px; font-family: var(--font-body); font-size: 14px; color: var(--black); transition: all 0.18s; outline: none; }
.header-search input:focus { background: var(--white); border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.10); }
.header-search input::placeholder { color: var(--gray-400); }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--gray-400); font-size: 15px; pointer-events: none; }

/* Actions */
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.btn-login  { font-size: 14px; font-weight: 500; color: var(--gray-600); padding: 9px 16px; border-radius: var(--radius-sm); transition: all 0.18s; cursor: pointer; border: none; background: transparent; font-family: var(--font-body); }
.btn-login:hover { color: var(--accent); background: var(--blue-50); }
.btn-getdeals { background: var(--accent); color: var(--white); padding: 9px 20px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; border: none; cursor: pointer; font-family: var(--font-body); transition: all 0.2s; white-space: nowrap; }
.btn-getdeals:hover { background: var(--accent-hover); }

/* Mobile toggle */
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: 12px; }
.mobile-menu-toggle span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.2s; }
.mobile-nav { background: var(--white); border-top: 1px solid var(--gray-200); padding: 12px 24px 20px; }
.mobile-nav a, .mobile-nav ul li a { display: block; padding: 11px 0; font-size: 15px; font-weight: 500; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); }
.mobile-actions a:nth-child(3) {
    color: #fff !important;
}
.mobile-nav a:hover, .mobile-nav ul li a:hover { color: var(--accent); }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }

/* ─────────────────────────── HERO ─────────────────────────── */
.hero { background: var(--white); padding: 80px 0 0; overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 60% -10%, rgba(219,234,254,0.5) 0%, transparent 70%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-content { max-width: 520px; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-eyebrow-line { width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }
.hero-eyebrow-text { font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase; }
.hero-headline { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; color: var(--black); margin-bottom: 20px; }
.hero-headline .accent-word { color: var(--accent); position: relative; }
.hero-headline .accent-word::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-500), var(--blue-400)); border-radius: 2px; opacity: 0.6; }
.hero-sub   { font-size: 17px; font-weight: 400; color: var(--gray-600); line-height: 1.65; margin-bottom: 36px; }
.hero-ctas  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat  { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num   { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--black); }
.hero-stat-label { font-size: 13px; color: var(--gray-400); font-weight: 400; }

/* Dashboard mockup */
.hero-visual { position: relative; display: flex; justify-content: flex-end; align-items: center; padding-bottom: 40px; }
.dashboard-mock { width: 100%; max-width: 560px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.dash-topbar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot:nth-child(1) { background: #fc6158; }
.dash-dot:nth-child(2) { background: #fbbf24; }
.dash-dot:nth-child(3) { background: #34d399; }
.dash-tab { margin-left: auto; font-size: 12px; font-weight: 500; color: var(--gray-400); background: var(--gray-200); padding: 3px 10px; border-radius: 100px; }
.dash-body { padding: 20px; }
.dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
.dash-metric { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); padding: 14px; }
.dash-metric-label  { font-size: 11px; color: var(--gray-400); font-weight: 500; margin-bottom: 4px; }
.dash-metric-val    { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--black); }
.dash-metric-change { font-size: 11px; color: #15803d; font-weight: 600; margin-top: 2px; }
.dash-chart-area    { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 16px; }
.dash-chart-label   { font-size: 12px; font-weight: 600; color: var(--gray-600); margin-bottom: 12px; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.chart-bar  { flex: 1; border-radius: 4px 4px 0 0; }
.dash-tools { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dash-tool  { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 10px 12px; display: flex; align-items: center; gap: 10px; }
.dash-tool-icon { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.dash-tool-name { font-size: 12px; font-weight: 600; color: var(--gray-800); }
.dash-tool-type { font-size: 11px; color: var(--gray-400); }

/* Floating cards */
.float-card { position: absolute; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 12px 16px; z-index: 2; }
.float-card-1 { top: 10px; left: -60px; display: flex; align-items: center; gap: 10px; animation: floatY 4s ease-in-out infinite; }
.float-card-2 { bottom: 60px; left: -40px; animation: floatY 4s ease-in-out 1.5s infinite; }
.float-card-3 { top: -20px; right: 20px; animation: floatY 4s ease-in-out 0.8s infinite; text-align: center; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-icon  { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.float-label { font-size: 12px; font-weight: 600; color: var(--gray-800); }
.float-sub   { font-size: 11px; color: var(--gray-400); }
.float-pill  { font-size: 12px; font-weight: 700; color: #15803d; background: #f0fdf4; border: 1px solid #bbf7d0; padding: 4px 10px; border-radius: 100px; display: inline-block; }
.float-val   { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--black); }

/* Brands bar */
.hero-brands   { border-top: 1px solid var(--gray-100); }
.brands-label  { font-size: 12px; color: var(--gray-400); font-weight: 500; text-align: center; margin-bottom: 20px; }
.brands-row    { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.brand-chip    { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--gray-300); letter-spacing: 0.04em; }

/* ─────────────────────────── SECTIONS ─────────────────────────── */
.section      { padding: 80px 0; }
.section-gray { background: var(--gray-50); }

/* ─────────────────────────── DEAL CARDS ─────────────────────────── */
.deals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.deal-card  { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); cursor: pointer; }
.deal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.deal-card-img { height: 160px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.deal-card-img img { width: 100%; height: 100%; object-fit: cover; }
.deal-card-img-inner { font-size: 48px; }
.badge-overlay  { position: absolute; top: 12px; left: 12px; }
.discount-tag   { position: absolute; top: 12px; right: 12px; background: #dc2626; color: var(--white); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.deal-card-body { padding: 20px; }
.deal-header    { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.deal-logo      { width: 40px; height: 40px; border-radius: 10px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; border: 1px solid var(--gray-200); }
.deal-name      { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--black); }
.deal-tagline   { font-size: 12px; color: var(--gray-400); }
.deal-desc      { font-size: 14px; color: var(--gray-600); line-height: 1.55; margin-bottom: 14px; }
.deal-rating    { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.rating-stars   { display: flex; gap: 2px; }
.rating-count   { font-size: 12px; color: var(--gray-400); }
.deal-pricing   { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.deal-price-now { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--black); }
.deal-price-orig  { font-size: 14px; color: var(--gray-400); text-decoration: line-through; }
.deal-price-label { font-size: 11px; color: var(--gray-400); font-weight: 500; }
.deal-btn       { display: block; width: 100%; padding: 11px; background: var(--accent); color: var(--white); border: none; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; text-align: center; }
.deal-btn:hover { background: var(--accent-hover); color: var(--white); }

/* ─────────────────────────── CATEGORIES ─────────────────────────── */
.categories-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.cat-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); padding: 22px 18px; text-align: center; transition: all 0.25s; cursor: pointer; display: block; }
.cat-card:hover { border-color: var(--accent); background: var(--blue-50); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-card:hover .cat-icon { transform: scale(1.1); }
.cat-icon  { font-size: 28px; margin-bottom: 10px; display: block; transition: transform 0.25s; }
.cat-name  { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.cat-count { font-size: 12px; color: var(--gray-400); }

/* ─────────────────────────── TRENDING ─────────────────────────── */
.trending-scroll { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 16px; scrollbar-width: none; -ms-overflow-style: none; }
.trending-scroll::-webkit-scrollbar { display: none; }
.trend-card { min-width: 260px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.28s; cursor: pointer; flex-shrink: 0; }
.trend-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.trend-card-dark { background: var(--black); border-color: var(--gray-800); }
.trend-thumb { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 44px; overflow: hidden; }
.trend-thumb img { width: 100%; height: 100%; object-fit: cover; }
.trend-body    { padding: 16px; }
.trend-badges  { display: flex; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
.trend-name    { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.trend-desc    { font-size: 13px; color: var(--gray-600); line-height: 1.5; margin-bottom: 12px; }
.trend-footer  { display: flex; align-items: center; justify-content: space-between; }
.trend-price   { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--accent); }
.trend-btn-sm  { background: var(--accent); color: var(--white); border: none; padding: 7px 14px; border-radius: 7px; font-size: 12px; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: all 0.18s; }
.trend-btn-sm:hover { background: var(--accent-hover); }
.trend-cat     { font-size: 11px; color: var(--gray-400); font-weight: 500; }

/* ─────────────────────────── WHY ─────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 24px; }
.why-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 22px; text-align: center; transition: all 0.25s; }
.why-card:hover { border-color: var(--blue-200); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon  { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-50); border: 1.5px solid var(--blue-100); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 14px; }
.why-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 7px; }
.why-desc  { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* ─────────────────────────── SELLER CTA ─────────────────────────── */
.seller-section { background: linear-gradient(135deg, var(--black) 0%, #0f172a 100%); padding: 80px 0; position: relative; overflow: hidden; }
.seller-section::before { content:''; position:absolute; top:-60px; right:-60px; width:300px; height:300px; background:radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%); border-radius:50%; pointer-events:none; }
.seller-inner  { text-align: center; position: relative; z-index: 1; }
.seller-title  { font-family: var(--font-display); font-size: clamp(28px,4vw,42px); font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 16px; }
.seller-title span { color: var(--blue-400); }
.seller-sub    { font-size: 17px; color: #94a3b8; line-height: 1.6; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.seller-meta   { display: flex; gap: 36px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.seller-meta-item  { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.seller-meta-num   { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--white); }
.seller-meta-label { font-size: 13px; color: #64748b; }

/* ─────────────────────────── TESTIMONIALS ─────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card   { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; transition: all 0.25s; }
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-quote  { font-size: 28px; color: var(--blue-400); margin-bottom: 14px; line-height: 1; }
.testi-text   { font-size: 15px; color: var(--gray-600); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.testi-name   { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--black); }
.testi-role   { font-size: 12px; color: var(--gray-400); }
.testi-stars  { display: flex; gap: 2px; margin-bottom: 2px; }

/* ─────────────────────────── BLOG ─────────────────────────── */
.blog-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.blog-featured { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; cursor: pointer; }
.blog-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-featured-img { height: 220px; background: linear-gradient(135deg,#dbeafe 0%,#eff5ff 100%); display: flex; align-items: center; justify-content: center; font-size: 56px; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card     { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; display: flex; cursor: pointer; transition: all 0.25s; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { width: 120px; background: var(--gray-50); display: flex; align-items: center; justify-content: center; font-size: 36px; flex-shrink: 0; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 18px; flex: 1; }
.blog-body     { padding: 22px; }
.blog-cat      { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 8px; }
.blog-cat a    { color: inherit; }
.blog-title    { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: 8px; }
.blog-card .blog-title { font-size: 15px; }
.blog-title a  { color: inherit; }
.blog-title a:hover { color: var(--accent); }
.blog-excerpt  { font-size: 14px; color: var(--gray-600); line-height: 1.55; margin-bottom: 12px; }
.blog-meta     { font-size: 12px; color: var(--gray-400); }
.blog-meta span { color: var(--gray-600); font-weight: 500; }

/* ─────────────────────────── NEWSLETTER ─────────────────────────── */
.newsletter-section { background: linear-gradient(135deg,var(--blue-50) 0%,var(--white) 60%); border-top: 1px solid var(--blue-100); border-bottom: 1px solid var(--blue-100); padding: 72px 0; }
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-title { font-family: var(--font-display); font-size: clamp(24px,3.5vw,34px); font-weight: 800; letter-spacing: -0.6px; color: var(--black); margin-bottom: 12px; }
.newsletter-sub   { font-size: 16px; color: var(--gray-600); margin-bottom: 28px; }
.newsletter-form  { display: flex; gap: 10px; max-width: 440px; margin: 0 auto 16px; }
.newsletter-input { flex: 1; height: 48px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); padding: 0 16px; font-family: var(--font-body); font-size: 15px; outline: none; transition: all 0.18s; background: var(--white); }
.newsletter-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.10); }
.newsletter-input::placeholder { color: var(--gray-400); }
.newsletter-submit { height: 48px; padding: 0 22px; background: var(--accent); color: var(--white); border: none; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.newsletter-submit:hover { background: var(--accent-hover); }
.newsletter-note  { font-size: 12px; color: var(--gray-400); }
.newsletter-count { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 24px; }
.count-avatars    { display: flex; }
.count-avatar     { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--white); margin-left: -8px; background: var(--gray-200); display: flex; align-items: center; justify-content: center; font-size: 12px; }
.count-avatar:first-child { margin-left: 0; }
.count-text       { font-size: 13px; color: var(--gray-600); font-weight: 500; }
.count-text strong { color: var(--black); }

/* ─────────────────────────── FOOTER ─────────────────────────── */
.footer        { background: var(--black); padding: 60px 0 32px; }
.footer-inner  { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo   { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; display: flex; align-items: center; gap: 4px; }
.footer-logo span { color: var(--blue-400); }
.footer-tagline   { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 20px; max-width: 220px; }
.footer-socials   { display: flex; gap: 10px; }
.social-btn       { width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: #64748b; font-size: 14px; transition: all 0.18s; cursor: pointer; text-decoration: none; }
.social-btn:hover { border-color: var(--blue-500); color: var(--blue-400); background: rgba(37,99,235,0.1); }
.footer-col-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-links     { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links ul li a { font-size: 14px; color: #64748b; transition: color 0.18s; display: block; }
.footer-links a:hover, .footer-links ul li a:hover { color: var(--white); }
.footer-links ul  { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom    { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; flex-wrap: wrap; gap: 12px; }
.footer-copy      { font-size: 13px; color: #475569; }
.footer-legal     { display: flex; gap: 20px; }
.footer-legal a   { font-size: 13px; color: #475569; transition: color 0.18s; }
.footer-legal a:hover { color: var(--white); }

/* ─────────────────────────── ANIMATIONS ─────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.anim-fade-up  { animation: fadeUp 0.6s cubic-bezier(0.4,0,0.2,1) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ─────────────────────────── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .deals-grid          { grid-template-columns: repeat(2,1fr); }
  .categories-grid     { grid-template-columns: repeat(4,1fr); }
  .why-grid            { grid-template-columns: repeat(3,1fr); }
  .testimonials-grid   { grid-template-columns: repeat(2,1fr); }
  .footer-inner        { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-visual         { display: none; }
  .nav, .header-search { display: none; }
  .mobile-menu-toggle  { display: flex; }
  .deals-grid          { grid-template-columns: 1fr; }
  .categories-grid     { grid-template-columns: repeat(2,1fr); }
  .why-grid            { grid-template-columns: 1fr 1fr; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .blog-grid           { grid-template-columns: 1fr; }
  .blog-card           { flex-direction: column; }
  .blog-card-img       { width: 100%; height: 100px; }
  .footer-inner        { grid-template-columns: 1fr 1fr; }
  .newsletter-form     { flex-direction: column; }
  .section-flex-header { flex-direction: column; align-items: flex-start; }
  .seller-meta         { flex-wrap: wrap; gap: 20px; }
  .header-inner        { padding: 0 20px; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner    { grid-template-columns: 1fr; }
  .hero-stats      { flex-wrap: wrap; gap: 20px; }
}
