/* ── DESIGN TOKENS ─────────────────────────── */
:root {
  --blue: #0d6efd;
  --blue-dark: #0a58ca;
  --blue-light: rgba(13,110,253,0.08);
  --blue-mid: rgba(13,110,253,0.15);
  --dark: #0f172a;
  --dark-2: #1e293b;
  --grey: #64748b;
  --grey-light: #94a3b8;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(15,23,42,0.06);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Syne', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── PAGE LOADER ─────────────────────────── */
.page-loader { position: fixed; inset: 0; background: var(--white); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity .5s ease, visibility .5s ease; }
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring { width: 48px; height: 48px; border: 2px solid var(--border); border-top-color: var(--blue); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── TOP BAR ─────────────────────────────── */
.top-bar { background: var(--dark); padding: 9px 0; font-size: .78rem; letter-spacing: .03em; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-info { display: flex; gap: 24px; align-items: center; }
.top-info a, .top-info span { color: #94a3b8; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.top-info a:hover { color: var(--white); }
.top-gstin { color: #475569; font-size: .72rem; font-weight: 500; letter-spacing: .05em; }

/* ── HEADER ──────────────────────────────── */
.header { position: sticky; top: 0; left: 0; right: 0; height: var(--header-h); background: rgba(255,255,255,.97); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); z-index: 200; transition: all .25s ease; }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; transition: opacity .2s; }
.logo:hover { opacity: .85; }
.logo img { height: 100px; width: auto; }
.logo-text .company-name { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -.01em; color: #0d6efd; line-height: 1; }
.logo-text .tagline { font-size: .62rem; color: var(--grey); letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-link { font-size: .82rem; font-weight: 500; color: var(--grey); padding: 6px 12px; border-radius: 8px; transition: all .2s; }
.nav-link:hover { color: var(--dark); background: var(--bg); }
.nav-link.active { color: var(--blue); background: var(--blue-light); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 22px; font-weight: 600; border-radius: 10px; cursor: pointer; border: none; font-size: .85rem; font-family: var(--font-body); transition: all .25s ease; letter-spacing: .01em; }
.btn-primary { background: var(--blue); color: white; box-shadow: 0 2px 12px rgba(13,110,253,.25); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 4px 20px rgba(13,110,253,.35); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: white; }
.btn-sm { padding: 8px 18px; font-size: .8rem; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); transition: all .25s; border-radius: 2px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* ── HERO SWIPER ─────────────────────────── */
.hero-swiper-section { position: relative; overflow: hidden; }
.hero-swiper { width: 100%; }
.hero-slide { min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-slide-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; filter: saturate(0.85); }
.hero-slide-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(15,23,42,0.55) 45%, rgba(15,23,42,0.25) 100%); pointer-events: none !important; }
.hero-slide .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-top: 60px; padding-bottom: 60px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; background: rgba(13,110,253,.15); border: 1px solid rgba(13,110,253,.3); border-radius: 40px; font-size: .7rem; font-weight: 700; letter-spacing: .14em; color: #60a5fa; text-transform: uppercase; margin-bottom: 24px; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero-title { font-family: var(--font-display); font-size: clamp(2.6rem,5.5vw,5rem); line-height: 1; letter-spacing: -.02em; color: var(--blue); margin-bottom: 22px; }
.hero-title .accent { color: var(--white); display: block; }
.hero-desc { font-size: 1rem; color: white; line-height: 1.75; margin-bottom: 36px; max-width: 460px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn-primary { padding: 13px 28px; font-size: .9rem; }
.hero-cta .btn-outline { padding: 12px 28px; font-size: .9rem; border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.8); }
.hero-cta .btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: white; }
.hero-stats { display: flex; gap: 36px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }
.stat-value { font-family: var(--font-display); font-size: 2rem; color: var(--white); line-height: 1; }
.stat-label { font-size: .72rem; color: white; text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img-wrap { position: relative; width: 100%; max-width: 440px; aspect-ratio: 1; }
.hero-img-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 90%; height: 90%; border: 1px solid rgba(13,110,253,.2); border-radius: 50%; animation: ringRotate 24s linear infinite; }
.hero-img-ring2 { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 68%; height: 68%; border: 1px dashed rgba(13,110,253,.12); border-radius: 50%; animation: ringRotate 16s linear infinite reverse; }
@keyframes ringRotate { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }
.hero-img-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 60%; height: 60%; background: radial-gradient(circle, rgba(13,110,253,.18) 0%, transparent 70%); border-radius: 50%; filter: blur(36px); }
.hero-img-wrap img { position: relative; z-index: 2; width: 82%; margin: auto; display: block; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,.3)); }
.hero-swiper-section .swiper-pagination { bottom: 28px !important; }
.hero-swiper-section .swiper-pagination-bullet { width: 20px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.3); opacity: 1; transition: all .3s; }
.hero-swiper-section .swiper-pagination-bullet-active { width: 44px; background: var(--blue); }
.hero-swiper-btn { position: absolute; top: 50%; z-index: 999 !important; width: 46px; height: 46px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .25s; transform: translateY(-50%); }
.hero-swiper-btn:hover { background: var(--blue); border-color: var(--blue); }
.hero-swiper-btn svg { width: 18px; height: 18px; color: rgba(255,255,255,.8); }
.hero-swiper-btn:hover svg { color: white; }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* Hero mini slider */
.hero-slide-img { position: absolute; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 6px solid #fff; opacity: 0; transform: scale(0.8); transition: all 0.8s ease; box-shadow: 0 20px 60px rgba(0,0,0,0.3); will-change: transform; }
.hero-slide-img.active { opacity: 1; transform: scale(1); z-index: 2; }
.hero-mini-slider { position: relative; width: 320px; height: 320px; margin: auto; }
.hero-mini-slider::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle, rgba(13,110,253,0.2), transparent); filter: blur(40px); z-index: -1; }

/* ── TICKER ──────────────────────────────── */
.ticker-bar { background: var(--blue); overflow: hidden; padding: 11px 0; white-space: nowrap; }
.ticker-track { display: inline-flex; gap: 0; animation: ticker 28s linear infinite; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: .82rem; letter-spacing: .1em; color: rgba(255,255,255,.9); padding: 0 28px; font-weight: 600; }
.ticker-dot { width: 4px; height: 4px; background: rgba(255,255,255,.4); border-radius: 50%; }

/* ── SECTION COMMON ──────────────────────── */
.section { padding: 96px 0; display: block !important; opacity: 1 !important; }
.section-label { font-size: .72rem; font-weight: 700; letter-spacing: .16em; color: var(--blue); text-transform: uppercase; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem,3.5vw,3rem); color: var(--dark); line-height: 1.05; letter-spacing: -.02em; margin-bottom: 12px; }
.section-sub { font-size: .95rem; color: var(--grey); max-width: 500px; }

/* ── PRODUCT CARD (standalone grid) ─────── */
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all .3s ease; height: auto; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); border-color: rgba(13,110,253,.2); box-shadow: var(--shadow-lg), 0 0 0 1px rgba(13,110,253,.08); }
.product-card-image { height: 220px; background: var(--bg); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.product-card-image img { width: 100%; height: 220px; object-fit: contain; transition: transform .5s ease; }
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-content { flex: 1; padding: 20px 22px 22px; }

/* ── FEATURES ────────────────────────────── */
.features-section { background: var(--white); }
.features-section .section-title { text-align: center; }
.features-section .section-label { justify-content: center; }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px; }
.feature-card { padding: 32px 28px; border-radius: var(--radius-lg); background: var(--bg); border: 1px solid var(--border); transition: all .3s; }
.feature-card:hover { background: var(--white); border-color: rgba(13,110,253,.2); box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-icon { width: 52px; height: 52px; background: var(--blue-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 20px; }
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; }
.feature-card p { font-size: .85rem; color: var(--grey); line-height: 1.65; }

/* ── ABOUT ───────────────────────────────── */
.about-section { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,110,253,.12), transparent); }
.about-img-accent { position: absolute; bottom: 28px; left: 28px; z-index: 2; background: var(--white); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lg); }
.about-img-accent .num { font-family: var(--font-display); font-size: 2rem; color: var(--blue); line-height: 1; }
.about-img-accent .lbl { font-size: .72rem; color: var(--grey); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.about-content p { font-size: .93rem; color: var(--grey); line-height: 1.8; margin-bottom: 18px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.value-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); transition: all .2s; }
.value-item:hover { border-color: var(--blue-mid); }
.value-icon { width: 34px; height: 34px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.value-icon svg { width: 16px; height: 16px; }
.value-text { font-size: .82rem; font-weight: 600; color: var(--dark); }

/* ── SEO CONTENT ─────────────────────────── */
.seo-content { background: var(--bg); }
.seo-content h2 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 16px; color: var(--dark); }
.seo-content h3 { font-family: var(--font-display); font-size: 1.2rem; margin: 24px 0 10px; color: var(--dark); }
.seo-content p { font-size: .93rem; color: var(--grey); line-height: 1.8; margin-bottom: 12px; }
.seo-content a { color: var(--blue); }

/* ── CONTACT ─────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { width: 44px; height: 44px; background: var(--bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; border: 1px solid var(--border); }
.contact-icon svg { width: 18px; height: 18px; }
.contact-text h3 { font-size: .78rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .06em; }
.contact-text p, .contact-text a { font-size: .87rem; color: var(--grey); margin: 0; }
.contact-text a:hover { color: var(--blue); }
.contact-form { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .75rem; font-weight: 700; color: var(--grey); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .07em; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 14px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; font-family: var(--font-body); font-size: .9rem; color: var(--dark); transition: border-color .2s, box-shadow .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(13,110,253,.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #94a3b8; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select { cursor: pointer; color: var(--grey); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }

/* ── FOOTER ──────────────────────────────── */
.footer { background: #0a0a0a; border-top: 1px solid #1a1a1a; padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex !important; align-items: center !important; gap: 11px !important; margin-top: -70px; text-decoration: none; }
.footer-logo img { height: 175px !important; width: 100px; flex-shrink: 0; }
.footer-logo .logo-text { display: flex; flex-direction: column; gap: 3px; }
.footer-logo .company-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; line-height: 1; display: block; }
.footer-logo .tagline { font-size: .62rem; color: white !important; letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }
.footer-brand p { font-size: .85rem; color: white; line-height: 1.7; margin: 0; }
.footer-col h3 { font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #555; margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .85rem; color: white; transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: #0d6efd; padding-left: 4px; }
.footer-contact-list { list-style: none; }
.footer-contact-list li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .85rem; color: white; align-items: flex-start; }
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; color: #0d6efd; }
.footer-contact-list a { color: white; transition: color .2s; }
.footer-contact-list a:hover { color: #0d6efd; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid #1a1a1a; font-size: .78rem; color: #2a2a2a; }

/* ── MODAL ───────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(15,23,42,.6); backdrop-filter: blur(8px); z-index: 300; opacity: 0; visibility: hidden; transition: all .25s; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.92); width: 92%; max-width: 460px; max-height: 90vh; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); z-index: 301; opacity: 0; visibility: hidden; overflow-y: auto; transition: all .25s; }
.modal.active { opacity: 1; visibility: visible; transform: translate(-50%,-50%) scale(1); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.modal-close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: none; border: none; color: var(--grey); cursor: pointer; border-radius: 8px; transition: all .2s; }
.modal-close:hover { background: var(--bg); color: var(--dark); }
.modal-body { padding: 24px; }
.modal-product { display: flex; align-items: center; gap: 14px; padding: 12px; background: var(--bg); border-radius: 10px; margin-bottom: 20px; }
.modal-product-name { font-size: .9rem; font-weight: 600; color: var(--dark); }
.modal-product-price { font-size: .85rem; color: var(--blue); margin-top: 2px; }

/* ── FLOATING BUTTONS ────────────────────── */
.floating-buttons { position: fixed; bottom: 28px; right: 28px; display: flex; flex-direction: column; gap: 12px; z-index: 100; }
.floating-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; transition: all .25s; box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.floating-btn:hover { transform: scale(1.1); }
.whatsapp-btn { background: #25D366; color: white; }
.whatsapp-btn:hover { box-shadow: 0 0 28px rgba(37,211,102,.4); }
.call-btn { background: var(--blue); color: white; }
.call-btn:hover { box-shadow: 0 0 28px rgba(13,110,253,.4); }
.floating-btn svg { width: 22px; height: 22px; }

/* ── SCROLL ANIMATION ────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ═══════════════════════════════════════════
   CATEGORY SECTION + SWIPER FIX
═══════════════════════════════════════════ */

.category-section {
  margin: 70px 0;
}

.category-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.category-header {
  margin-bottom: 25px;
}

.category-header h2 {
  font-size: 26px;
  font-weight: 700;
  cursor: pointer;
}

/* ── swiper-clip: THIS is the only element that clips ── */
.swiper-clip {
  overflow: hidden;     /* clips peek bleed — but does NOT restrict Swiper scroll math */
  width: 100%;
}

/* On desktop, give swiper normal padding */
.category-swiper {
  padding: 0 24px 30px !important;
}

.category-swiper .swiper-slide {
  height: auto !important;
}

/* ── PREMIUM CARD ── */
.premium-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.premium-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(0,0,0,0.12); }
.card-img { position: relative; height: 190px; overflow: hidden; border-radius: 14px; margin-bottom: 12px; }
.card-img img { width: 100%; height: 100%; object-fit: contain; transition: 0.4s; }
.premium-card:hover .card-img img { transform: scale(1.05); }
.card-badge { position: absolute; top: 12px; left: 12px; background: #0d6efd; color: #fff; font-size: 12px; padding: 6px 10px; border-radius: 8px; }
.card-body { padding: 10px 12px 15px; }
.card-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.card-body p { font-size: 12px; color: #888; margin-bottom: 10px; }
.card-actions { display: flex; justify-content: space-between; align-items: center; }
.price { color: #0d6efd; font-weight: 600; font-size: 14px; }
.card-actions button { background: #e6f0ff; color: #0d6efd; border: none; padding: 7px 14px; border-radius: 10px; font-size: 12px; cursor: pointer; transition: 0.3s; }
.card-actions button:hover { background: #0d6efd; color: #fff; }
.featured-card { border: 2px solid gold; transform: scale(1.03); }
.top-badge { position: absolute; top: 8px; right: 8px; background: gold; color: black; font-size: 10px; padding: 4px 6px; border-radius: 6px; font-weight: bold; }

/* ── DESKTOP RESPONSIVE ──────────────────── */
@media (max-width: 1024px) {
  .hero-slide .container { grid-template-columns: 1fr; text-align: center; padding-top: 48px; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════════════════════════════
   MOBILE — THE REAL FIX
══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Clip overflow at body, NOT at section or swiper parents */
  body {
    overflow-x: hidden;
  }

  /* Nav */
  .nav-list { position: fixed; top: var(--header-h); left: 0; right: 0; background: rgba(255,255,255,.98); backdrop-filter: blur(20px); flex-direction: column; padding: 20px 24px; transform: translateY(-110%); opacity: 0; visibility: hidden; transition: all .3s; border-bottom: 1px solid var(--border); z-index: 199; }
  .nav-list.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .menu-toggle { display: flex; }
  .nav .btn { display: none; }
  .top-bar { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-swiper-btn { display: none; }
  .hero-slide { min-height: 70vh; }

  /* ── CATEGORY SECTION: no overflow clipping here ── */
  .category-section {
    margin: 40px 0;
    overflow: visible;   /* ← critical: don't clip the swiper */
  }

  .category-header h2 {
    font-size: 20px;
    padding-left: 16px;  /* align with container padding */
  }

  /* ── swiper-clip still clips visual bleed ── */
  .swiper-clip {
    overflow: hidden;
  }

  /* ── Swiper: visible so last card can scroll fully into view ── */
  .category-swiper {
    overflow: visible !important;
    padding: 0 0 40px 16px !important;  /* left padding = starting indent */
  }

  /* ── Slide width controlled by CSS ── */
  .category-swiper .swiper-slide {
    width: 75vw !important;
    max-width: 280px;
    flex-shrink: 0;
  }

  /* ── LAST SLIDE: margin-right gives real DOM space to scroll into ── */
  .category-swiper .swiper-slide:last-child {
    margin-right: 16px !important;
  }

  /* ── Pagination ── */
  .category-swiper .swiper-pagination {
    display: block;
    bottom: 8px !important;
  }

  .category-swiper .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: #cbd5e1;
    opacity: 1;
  }

  .category-swiper .swiper-pagination-bullet-active {
    background: #0d6efd;
    width: 20px;
    border-radius: 4px;
  }

  /* Cards */
  .premium-card { border-radius: 14px; }
  .card-img { height: 160px; }
}