/* responsive.css */

/* ── Tablet ≤ 1024px ── */
@media (max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.25rem
    }

    .hero-visual {
        display: none
    }

    .hero-title {
        font-size: 2.3rem
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .about-visual {
        order: -1
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .pd-image-col {
        position: static
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center
    }

    .cta-banner-actions {
        justify-content: center
    }
}

.none {
    display: none;
}

/* ── Mobile ≤ 768px ── */
@media (max-width:768px) {

    /* Sticky header */
    /* .site-header{position:-webkit-sticky;position:sticky;top:0;z-index:1000} */
    .site-header .header-inner {
        padding: .5rem 1rem
    }

    .logo-icon {
        width: 130px;
        height: 34px
    }

    .top-bar-support {
        display: none
    }

    /* Nav */
    .main-nav li {
        display: block !important;
        width: stretch;
    }

    .none {
        display: block;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--bg-alt);
        z-index: 999;
        padding: 5rem 0rem 2rem;
        transition: right .32s ease;
        box-shadow: -6px 0 30px rgba(15, 90, 45, .12);
        border-left: 1px solid var(--border)
    }

    .main-nav.open {
        right: 0
    }

    .main-nav ul {
        flex-direction: column;
        gap: .2rem
    }

    .main-nav a {
        padding: .72rem 1rem;
        font-size: .92rem;
        border-radius: var(--r-sm);
        display: block
    }

    .header-cta .btn-sm {
        display: none
    }

    /* Hero */
    .hero {
        padding: 3.25rem 0 2.75rem
    }

    .hero-title {
        font-size: 1.8rem
    }

    .hero-subtitle {
        font-size: .935rem
    }

    .hero-actions {
        gap: .65rem
    }

    .hero-actions .btn-lg {
        padding: .65rem 1.25rem;
        font-size: .855rem
    }

    .hero-trust-badges {
        gap: .85rem
    }

    /* Sections */
    .section {
        padding: 2.75rem 0
    }

    .section-title {
        font-size: 1.55rem
    }

    .section-subtitle {
        font-size: .925rem
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: .9rem
    }

    .category-filters {
        gap: .35rem
    }

    .filter-btn {
        padding: .38rem .82rem;
        font-size: .76rem
    }

    /* Product detail */
    .pd-title {
        font-size: 1.45rem
    }

    .pd-price {
        font-size: 1.7rem
    }

    .pd-cta-group {
        flex-direction: column
    }

    .pd-cta-group .btn {
        width: 100%;
        justify-content: center
    }

    .sticky-cta-mobile {
        display: flex
    }

    .problems-grid {
        grid-template-columns: 1fr
    }

    /* Contact */
    .form-row {
        grid-template-columns: 1fr
    }

    /* About - Autoslider Ticker for Mobile */
    .about-visual {
        overflow: hidden;
        position: relative;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 1rem 0;
    }

    .about-visual::before,
    .about-visual::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 40px;
        z-index: 2;
        pointer-events: none;
    }

    .about-visual::before {
        left: 0;
        background: linear-gradient(to right, var(--bg), transparent);
    }

    .about-visual::after {
        right: 0;
        background: linear-gradient(to left, var(--bg), transparent);
    }

    .about-card-grid {
        display: flex;
        gap: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        width: max-content;
        animation: ticker 15s linear infinite;
    }

    .about-card-grid:hover,
    .about-card-grid:active {
        animation-play-state: paused;
    }

    .about-icon-card {
        padding: 1rem 1.75rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        background: transparent;
        border: none;
        box-shadow: none;
        text-align: center;
    }

    .about-icon-card.ticker-clone {
        display: flex;
    }

    .about-icon-card i {
        margin-bottom: 0;
        font-size: 1.5rem;
        color: var(--accent);
    }

    .about-icon-card span {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text);
        white-space: nowrap;
    }

    /* About Stats - Premium 3-column UI for Mobile */
    .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        border: 1px solid rgba(46, 196, 182, 0.3);
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .stat-item {
        min-width: 0;
        padding: 1.25rem 0.4rem;
        border-right: 1px solid rgba(46, 196, 182, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }
    
    .stat-item:last-child {
        border-right: none;
    }

    .stat-item .stat-num {
        font-size: 1.35rem;
        line-height: 1.2;
        margin-bottom: 0.4rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .stat-item .stat-label {
        font-size: 0.65rem;
        line-height: 1.5;
        color: #2c3e50;
        letter-spacing: 0.02em;
    }

    /* USP */
    .usp-grid {
        grid-template-columns: 1fr
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-brands {
        padding: .9rem 0
    }

    .brands-logos {
        gap: .4rem
    }

    .cta-banner {
        padding: 2.4rem 0
    }

    .cta-banner-content h2 {
        font-size: 1.3rem
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center
    }

    /* Policy */
    .policy-content {
        padding: 0
    }

    .policy-content h2 {
        font-size: 1.02rem
    }

    /* Page hero */
    .page-hero {
        padding: 2.25rem 0 1.85rem
    }

    .page-hero h1 {
        font-size: 1.7rem
    }

    /* Floating Call Button — mobile adjustments */
    .floating-call-btn {
        bottom: 20px;
        left: 16px;
        padding: .55rem 1rem .55rem .65rem;
        font-size: .82rem;
    }

    .floating-call-icon {
        width: 32px;
        height: 32px;
        font-size: .88rem;
    }

    /* Hide floating button on product-details mobile (has its own sticky CTA) */
    .floating-call-btn--hide-mobile {
        display: none !important;
    }
}

/* ── Small Mobile ≤ 480px ── */
@media (max-width:480px) {
    .container {
        padding: 0 1rem
    }

    .products-grid {
        grid-template-columns: 1fr
    }

    .hero-title {
        font-size: 1.55rem
    }

    .top-bar-text {
        display: none
    }

    .top-bar-support {
        display: none
    }

    .top-bar-inner {
        justify-content: center
    }

    .btn-lg {
        padding: .65rem 1.2rem;
        font-size: .855rem
    }

    .product-detail-grid {
        gap: 1.4rem
    }

    .pd-image-wrap {
        min-height: 210px;
        padding: 1.4rem
    }

    .contact-card {
        padding: 1.5rem 1.25rem;
        border-radius: var(--r-lg)
    }
}

/* ── Print ── */
@media print {

    .site-header,
    .top-bar,
    .site-footer,
    .sticky-cta-mobile,
    .floating-call-btn,
    .hero,
    .cta-banner,
    .trust-strip {
        display: none
    }

    body {
        background: #fff;
        color: #000
    }

    .policy-content p,
    .policy-content li {
        color: #333
    }
}




/* Add this to the top of your responsive.css or base.css */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Update your .main-nav in the @media (max-width:768px) section */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        visibility: hidden;
        /* Add this: keeps it from being interactable when closed */
        opacity: 0;
        /* Add this: smooth fade */
        background: var(--bg-alt);
        z-index: 999;
        padding: 5rem 0rem 2rem;
        transition: all .32s ease;
        box-shadow: -6px 0 30px rgba(15, 90, 45, .12);
        border-left: 1px solid var(--border);
    }

    /* When the menu is open */
    .main-nav.open {
        right: 0;
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box;
        /* Ensures padding doesn't add to width */
    }

    .hero-inner {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Keeps text aligned to the left */
    }
}









/* ==========================================================================
   Premium Summer Sale Section Styles (Strict 4-Column Desktop)
   ========================================================================== */

:root {
    --sst-primary: #0984e3;
    --sst-primary-hover: #076ebc;
    --sst-accent: #e17055;
    --sst-dark: #2d3436;
    --sst-text: #636e72;
    --sst-bg-gradient: linear-gradient(135deg, #fffcf9 0%, #f0f4ff 100%);
    --sst-radius: 12px;
    --sst-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
    --sst-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.08);
    --sst-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Section Wrapper */
.sst-premium-summer {
    padding: 5rem 1.5rem;
    background: var(--sst-bg-gradient);
    font-family: 'Inter', 'Sora', sans-serif;
}

.sst-premium-summer .container {
    max-width: 1280px;
    /* Widened slightly to accommodate 4 columns beautifully */
    margin: 0 auto;
}

/* Header Typography & Badges */
.sst-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.sst-badge-glow {
    display: inline-block;
    background: linear-gradient(90deg, #ff9a9e 0%, #fecfef 100%);
    color: #d63031;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
    margin-bottom: 1.2rem;
}

.sst-headline {
    font-size: 2.75rem;
    color: var(--sst-dark);
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.sst-subheadline {
    font-size: 1.1rem;
    color: var(--sst-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Strict Responsive Grid Implementation */
.sst-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: 1 Item per row */
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .sst-product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet: 2 Items per row */
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .sst-product-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Desktop: Strictly 4 Items per row */
        gap: 1.5rem;
    }
}

/* Product Card Base */
.sst-product-card {
    background: #ffffff;
    border-radius: var(--sst-radius);
    overflow: hidden;
    box-shadow: var(--sst-shadow-sm);
    transition: var(--sst-transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.sst-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sst-shadow-hover);
}

/* Media & Images */
.sst-card-media {
    position: relative;
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.sst-card-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.sst-product-card:hover .sst-card-media img {
    transform: scale(1.08);
}

.sst-discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--sst-accent);
    color: #fff;
    font-weight: 800;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    z-index: 2;
    font-size: 0.875rem;
    box-shadow: 0 4px 10px rgba(225, 112, 85, 0.3);
}

/* Card Body Content */
.sst-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sst-brand-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #a4b0be;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.sst-product-title {
    font-size: 1.25rem;
    color: var(--sst-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.sst-product-desc {
    font-size: 0.9rem;
    color: var(--sst-text);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Pricing Display */
.sst-pricing-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    /* Forces the pricing to pin to the bottom of the body area */
}

.sst-price-active {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--sst-dark);
    letter-spacing: -0.5px;
}

.sst-price-crossed {
    font-size: 1rem;
    color: #a4b0be;
    text-decoration: line-through;
    font-weight: 500;
}

/* CTA Footer & Buttons */
.sst-card-footer {
    padding: 0 1.5rem 1.5rem;
}

.sst-btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--sst-primary);
    color: #ffffff;
    padding: 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--sst-transition);
    border: none;
}

.sst-btn-primary:hover {
    background: var(--sst-primary-hover);
    box-shadow: 0 6px 15px rgba(9, 132, 227, 0.3);
    color: #ffffff;
}

/* Empty/Error State */
.sst-error-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: var(--sst-radius);
    color: var(--sst-text);
    grid-column: 1 / -1;
    font-size: 1.1rem;
    border: 2px dashed #dfe6e9;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .sst-headline {
        font-size: 2rem;
    }

    .sst-premium-summer {
        padding: 3rem 1rem;
    }

    .paddingTop {
        padding-top: 0;
    }
}



/* ==========================================================================
   Enhanced Pricing & Urgency Display
   ========================================================================== */

/* The Highlighted Pricing Box */
.sst-pricing-wrapper {
    margin-top: auto;
    /* Pushes to the bottom */
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    /* Subtle SaaS contrast box */
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

/* Time-Limited Urgency Tag */
.sst-urgency-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ef4444;
    /* High-contrast urgency red */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.6rem;
}

/* Pulsing Animation for Urgency */
.sst-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: sstPulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes sstPulse {
    to {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
        background-color: rgba(239, 68, 68, 0.5);
    }
}

/* Flex Container for Prices */
.sst-pricing-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sst-price-main {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

/* Emphasized Active Price */
.sst-price-active {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

/* Subdued Crossed Price */
.sst-price-crossed {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

/* High-Contrast Save Badge */
.sst-price-save {
    background: #10b981;
    /* Success green */
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}














/* ==========================================================================
   Clean Promotional Banner (Product Image Marquee)
   ========================================================================== */

.sst-mega-promo-section {
    padding: 3rem 1.5rem;
    font-family: 'Sora', 'Inter', sans-serif;
    background-color: #f8fafc;
}

.sst-mega-promo-section .container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Base Banner Container */
.sst-mega-banner {
    position: relative;
    display: block;
    background: #09090b;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sst-mega-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(225, 29, 72, 0.3);
    border-color: rgba(225, 29, 72, 0.4);
}

/* Foreground Content Layer */
.sst-mega-content-layer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    min-height: 280px;
}

/* Left Text Area */
.sst-mega-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
    background: linear-gradient(90deg, #09090b 70%, transparent 100%);
}

.sst-urgency-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(225, 29, 72, 0.15);
    color: #fb7185;
    border: 1px solid rgba(225, 29, 72, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.sst-blink-dot {
    width: 8px;
    height: 8px;
    background: #fb7185;
    border-radius: 50%;
    animation: sstBlink 1s step-end infinite;
}

@keyframes sstBlink {
    50% {
        opacity: 0;
    }
}

.sst-mega-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 2rem 0;
    letter-spacing: -1px;
}

.sst-highlight {
    color: #e11d48;
}

.sst-mega-action-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.sst-mega-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #09090b;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.sst-mega-banner:hover .sst-mega-cta {
    background: #e11d48;
    color: #ffffff;
}

.sst-mega-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
}

.sst-mega-banner:hover .sst-mega-cta svg {
    transform: translateX(6px);
}

.sst-tc-text {
    color: white;
    font-size: 0.75rem;
    padding-left: 4px;
    font-weight: 500;
}

/* --------------------------------------
   Right Visual Area (Product Image Marquee)
   -------------------------------------- */
.sst-mega-visuals {
    flex: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Hides the scrolling items outside the box */
    background: linear-gradient(90deg, rgba(9, 9, 11, 0) 0%, rgba(24, 24, 27, 0.4) 100%);
}

/* Smooth gradient fades on the left and right edges of the marquee */
.sst-mega-visuals::before,
.sst-mega-visuals::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 5;
    pointer-events: none;
}

.sst-mega-visuals::before {
    left: 0;
    background: linear-gradient(to right, #09090b 0%, transparent 100%);
}

.sst-mega-visuals::after {
    right: 0;
    background: linear-gradient(to left, #09090b 0%, transparent 100%);
}

.sst-image-marquee {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.sst-image-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    /* Space between images */
    width: max-content;
    /* 20s speed. Adjust if you want it faster/slower */
    animation: sstImageScroll 15s linear infinite;
}

/* Pause the scrolling when a user hovers over the banner */
.sst-mega-banner:hover .sst-image-track {
    animation-play-state: paused;
}

.sst-marquee-item {
    flex-shrink: 0;
    width: 160px;
    /* Forces uniform sizing for the scroll */
    display: flex;
    justify-content: center;
}

.sst-marquee-item img {
    max-width: 100%;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.sst-marquee-item img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.6));
}

/* The math: Translate left by exactly half the container width (since we duplicated the items) plus half the gap */
@keyframes sstImageScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1.5rem));
    }
}

/* The Floating "Sale" Sticker */
.sst-discount-sticker {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 85px;
    height: 85px;
    background: #e11d48;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.4);
    transform: rotate(15deg);
    transition: transform 0.3s ease;
}

.sst-mega-banner:hover .sst-discount-sticker {
    transform: rotate(25deg) scale(1.1);
}

.sst-sticker-text {
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.1;
}

.sst-sticker-text strong {
    font-size: 1.6rem;
    display: block;
}

/* --------------------------------------
   Responsive Adjustments
   -------------------------------------- */
@media (max-width: 992px) {
    .sst-mega-content-layer {
        flex-direction: column;
    }

    .sst-mega-text {
        padding: 3rem 2rem;
        text-align: center;
        align-items: center;
        background: #09090b;
        z-index: 10;
    }

    .sst-mega-title {
        font-size: 2.5rem;
    }

    .sst-mega-action-area {
        align-items: center;
    }

    .sst-mega-visuals {
        min-height: 220px;
    }

    .sst-mega-visuals::before {
        width: 50px;
    }

    .sst-mega-visuals::after {
        width: 50px;
    }

    .sst-marquee-item img {
        height: 110px;
    }

    .sst-discount-sticker {
        top: 0rem;
        right: 1rem;
        width: 75px;
        height: 75px;
    }

    .sst-sticker-text {
        font-size: 0.65rem;
    }

    .sst-sticker-text strong {
        font-size: 1.4rem;
    }
}

/* ==========================================================
   FIXED TOP BAR + HEADER FOR ALL SCREENS
   ========================================================== */

/* Top Bar Fixed */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99998;
    /* background: var(--bg-alt); */
}

.top-bar-email {
    display: block;
}

/* Header Fixed Below Top Bar */
.site-header {
    position: fixed !important;
    top: 34px;
    /* top-bar height */
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #fff;
}

/* Prevent Content Overlap */
body {
    padding-top: 118px;
    /* top-bar + header height */
}

/* Tablet & Mobile */
@media (max-width:768px) {

    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    .site-header {
        top: 30px;
        /* mobile top-bar height */
    }

    body {
        padding-top: 106px;
    }

    .top-bar-email {
        display: none;

    }

    .top-bar-inner {
        flex-direction: column;
        /* height: 10vh; */
    }
}

/* footer Social Icon  */


@media (max-width: 768px) {
    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 10px;
    }
}




@media (max-width: 768px) {
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    .site-header {
        position: fixed !important;
        top: 50px;
        left: 0;
        width: 100%;
        z-index: 99999;
        background: #fff;
        transition: top 0.3s ease;
        height: 79px;
    }
}










/* search modal */

/* SEARCH BUTTON */
.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    margin-right: 10px;
}

/* MODAL BACKDROP */
.search-modal {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: .3s ease;
    padding: 60px 20px;
    overflow-y: auto;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* SEARCH BOX */
.search-box {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.search-box i {
    font-size: 20px;
    color: #888;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 22px;
}

/* CLOSE */
#searchClose {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* QUICK LINKS */
.search-quick {
    max-width: 800px;
    margin: 40px auto 0;
}

.search-quick h4 {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.search-quick a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    text-decoration: none;
    color: #111;
}

/* RESULTS */
.search-results {
    max-width: 800px;
    margin: 30px auto;
}

.search-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}

.search-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 10px;
}

.search-item h4 {
    font-size: 16px;
    margin: 0;
}

.search-item span {
    font-size: 13px;
    color: #777;
}

.mobile-search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-search-btn .fa-search {
    font-size: 20px;
    color: #000d18;
}

/* MOBILE */
@media(max-width:768px) {
    .search-box input {
        font-size: 18px;
    }

    .search-modal {
        padding: 20px;
    }
}

/* ── New Trust Elements — Mobile ≤ 768px ── */
@media (max-width: 768px) {
    .hero-payment-logos {
        gap: .45rem;
    }

    .hero-payment-logos i.fab {
        font-size: 1.25rem;
    }

    .who-we-are-inner {
        gap: .3rem .9rem;
        justify-content: flex-start;
    }

    .wwa-divider {
        display: none;
    }

    .footer-trust-inner {
        gap: .5rem 1rem;
    }

    .footer-trust-badge {
        font-size: .7rem;
        padding: .22rem .5rem;
    }

    .footer-payment-logos i.fab {
        font-size: 1.3rem;
    }

    .usp-payment-logos i {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .who-we-are-strip {
        padding: .5rem 0;
    }

    .wwa-item {
        font-size: .72rem;
    }

    .footer-trust-row {
        padding: .6rem 0;
    }
}