/* --- Global Styles & Variables --- */
:root {
    --primary-yellow: #ffcd1c;
    --dark-grey: #262329;
    --text-color: #555;
    --heading-color: #222;
    --border-color: #e1e1e1;
    --button-blue: #002494;
    --sale-red: #ff0000;
    --hot-blue: #1e73be;
    --new-yellow: #fae300;
    --font-body: 'Work Sans', sans-serif;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f7f7f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-yellow);
}

h1,
h2,
h3,
h4 {
    color: var(--heading-color);
    font-weight: 600;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}


/* --- Main Content --- */
.hero {
    height: 380px;
    background-size: cover;
    background-position: center;
}

.hero-video {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile hero slider styling */
@media (max-width: 768px) {
    .slideshow-container {
        border-radius: 12px;
        overflow: hidden;
        margin: 12px 15px 0;
    }

    .hero-image,
    .hero-video {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        margin: 10px 10px 0;
    }
}

.features {
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.feature-container {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background-color: #f1f5f9;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background-color: #fffbeb;
    color: #d97706;
    font-size: 22px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.05);
}

.feature-item:hover .icon-wrapper {
    background-color: #fef3c7;
    transform: scale(1.05) rotate(5deg);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.feature-item p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.trustpilot-star {
    font-size: 13px !important;
    color: #00b67a !important;
}

.promo-banner {
    padding: 20px 0;
}

.promo-banner img {
    display: block;
    width: 100%;
}

.clearance-section {
    padding: 10px 0 20px;
    text-align: center;
}

.clearance-button {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--dark-grey);
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clearance-button:hover {
    color: var(--dark-grey);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* --- Promo Grid --- */
.promo-grid {
    padding: 20px 0;
}

.grid-container {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "ink business three-d"
        "ink infinity infinity";

}

.grid-item {
    padding: 30px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.grid-item h2 {
    font-size: 24px;
    color: inherit;
    margin-bottom: 8px;
}

.grid-item p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-promo {
    background-color: var(--primary-yellow);
    color: var(--dark-grey);
    padding: 5px 10px;
    border-radius: 20px;
    align-self: flex-start;
    font-weight: 600;
}


.ink-toner {
    grid-area: ink;
    background-color: var(--primary-yellow);
    background-image: url('./assets/printers/yelllow.webp');
    background-position: bottom center;
    background-repeat: no-repeat;
    color: var(--dark-grey);
    gap: 10px;
}

.ink-toner .btn-promo {
    font-size: 10px;
    margin-top: -30px;
    margin-left: -10px;
}


.business-printing {
    grid-area: business;
    background-color: #3bb4d3;
    background-image: url('./assets/printers/blue.png');
    background-position: bottom right;
    background-repeat: no-repeat;
}

.three-d-printing {
    grid-area: three-d;
    background-color: #4ac29a;
    background-image: url('./assets/printers/green.png');
    background-position: bottom right;
    background-repeat: no-repeat;
}

.infinity-home {
    grid-area: infinity;
    padding: 0;

}

.infinity-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    max-height: 236px;
}

/* --- Product Showcase --- */
.product-showcase {
    padding: 5px 0;
}

.showcase-container {
    display: flex;
    gap: 20px;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.showcase-sidebar {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-info {
    padding: 20px;
}

.sidebar-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.sidebar-info ul {
    margin-bottom: 20px;
}

.sidebar-info ul li a {
    display: block;
    padding: 6px 0;
    color: var(--text-color);
}

.view-all {
    color: #777;
    text-decoration: underline;
    padding-left: 20px;
}

.sidebar-image {
    margin-top: auto;
    padding: 20px;
}

.sidebar-image img {
    border-radius: 8px;
}

.product-grid {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card {
    width: calc(33.333% - 14px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    padding: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    border-radius: 4px;
}

.badge.sale {
    background-color: var(--sale-red);
}

.badge.hot {
    background-color: var(--hot-blue);
}

.badge.new {
    background-color: var(--new-yellow);
    color: #000;
}

.product-details {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-sku {
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
    text-align: left;
    display: block;
}

.product-brand {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
    color: #000;
    display: block;
}

.product-title {
    font-size: 16px;
    font-weight: bold;
    height: 3.2em;
    overflow: hidden;
    margin-bottom: 10px;
    text-align: left;
    text-transform: uppercase;
    line-height: 1.4;
}

.product-title a {
    color: #003399;
}

.product-rating {
    margin-bottom: 10px;
    color: #ccc;
    font-size: 14px;
    text-align: left;
}

.product-price-action {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.price.sale-price {
    color: var(--sale-red);
}

.price del {
    font-size: 12px;
    color: green;
    font-weight: bold;
    margin-left: 5px;
}

.add-to-cart-btn {
    background-color: var(--button-blue);
    color: #fff;
    border: none;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.add-to-cart-btn:not(:disabled):hover {
    background-color: #001a6a;
}

/* --- Sales Carousel --- */
.sales-carousel {
    padding: 40px 0;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.carousel-header h2 {
    font-size: 24px;
}

.carousel-content {
    position: relative;
}

.carousel-content .product-grid {
    width: 100%;
    justify-content: space-between;
}

.carousel-content .product-card {
    width: calc(25% - 15px);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-arrow.prev {
    left: -20px;
}

.carousel-arrow.next {
    right: -20px;
}

/* --- Text & Sponsors --- */
.intro-text {
    padding: 40px 0;
    text-align: center;
}

.sponsors {
    padding: 20px 0;
    text-align: center;
}

.sponsor-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
}

.sponsor-container img {
    height: 150px;
    width: auto;
}

.sponsor-text {
    font-size: 16px;
    color: #333;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {

    .main-nav ul li a {
        padding: 12px 10px;
        font-size: 13px;
    }

    .grid-container {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "ink business"
            "ink three-d"
            "infinity infinity";
    }

    .showcase-container {
        flex-direction: column;
    }

    .showcase-sidebar,
    .product-grid {
        width: 100%;
    }

    .showcase-sidebar {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .sidebar-info {
        flex: 1;
    }

    .sidebar-image {
        flex: 1;
        margin-top: 0;
    }

    .product-card {
        width: calc(33.333% - 14px);
    }

    .carousel-content .product-card {
        width: calc(33.333% - 14px);
    }

}

@media (max-width: 768px) {

    .hero {
        height: 250px;
    }

    .hero-video,
    .hero-image {
        object-fit: cover;
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    /* Mobile trust strip — horizontal scroll instead of vertical stack */
    .feature-container {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0;
        padding: 10px 0;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #f0f0f0;
        justify-content: flex-start;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .feature-container::-webkit-scrollbar { display: none; }

    .feature-item {
        flex: 0 0 auto;
        padding: 8px 16px;
        text-align: left;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        border-right: 1px solid #f0f0f0;
    }

    .feature-item:last-child { border-right: none; }

    .feature-item:not(:last-child)::after { display: none; }

    .feature-item .icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        font-size: 15px;
        margin-bottom: 0;
        border-radius: 8px;
        background-color: #fffbeb;
        color: #d97706;
        flex-shrink: 0;
    }

    .feature-text {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }

    .feature-item h3 {
        font-size: 12px;
        margin-bottom: 0;
        white-space: nowrap;
    }

    .feature-item p {
        font-size: 10px;
        white-space: nowrap;
        line-height: 1.3;
    }

    /* Horizontal scrollable promo grid — eliminates ~900px of stacked scroll */
    .promo-grid {
        position: relative;
    }

    .promo-grid::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 40px;
        background: linear-gradient(to left, rgba(247, 247, 247, 0.95), transparent);
        pointer-events: none;
        z-index: 10;
    }

    .grid-container {
        display: flex;
        flex-direction: row;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 5px 15px 15px;
        grid-template-areas: none;
        grid-template-columns: unset;
        grid-template-rows: unset;
    }

    .grid-container::-webkit-scrollbar { display: none; }

    .grid-item {
        flex: 0 0 72vw;
        max-width: 265px;
        min-height: 180px;
        scroll-snap-align: start;
        border-radius: 12px;
    }

    .infinity-home {
        flex: 0 0 72vw;
        max-width: 265px;
        min-height: 180px;
    }

    .infinity-home img {
        max-height: 180px;
        height: 180px;
    }

    .showcase-sidebar {
        flex-direction: column;
    }

    .product-card {
        width: calc(50% - 10px);
    }

    .product-image {
        height: 180px;
    }

    .product-image img {
        max-height: 170px;
    }

    .product-title {
        font-size: 15px;
    }

    .carousel-content .product-card {
        width: calc(50% - 10px);
    }

    .intro-text p {
        font-size: 15px;
    }

    /* Condensed sponsor logos on mobile */
    .sponsor-container img {
        height: 60px;
        max-width: 80px;
    }

    .sponsor-container {
        gap: 20px;
        margin-bottom: 10px;
    }

    .sponsor-text {
        font-size: 11px;
        color: #aaa;
        padding: 0 10px;
    }

    .sponsors {
        padding: 10px 0;
        border-top: 1px solid #f0f0f0;
    }

    /* Mobile category strip scroll hint */
    .mobile-category-strip {
        position: relative;
    }

    .mobile-category-strip::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 40px;
        background: linear-gradient(to left, rgba(255,255,255,0.95), transparent);
        pointer-events: none;
        z-index: 100;
    }

    .cat-chip {
        min-height: 40px;
        padding: 8px 16px;
        font-size: 14px;
    }

}

@media (max-width: 480px) {

    /* Container adjustments for mobile */
    .container {
        padding: 0 10px;
    }

    /* Hero slider optimization */
    .hero {
        height: auto;
    }

    .hero-video,
    .hero-image {
        object-fit: cover;
        width: 100%;
        height: auto;
        min-height: 150px;
        aspect-ratio: 16 / 9;
    }

    /* Features section — 2×2 grid for compact, scannable layout */
    .features {
        padding: 12px 10px;
    }

    .feature-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background-color: #f1f5f9;
        overflow-x: visible;
        padding: 0;
        border-radius: 16px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        overflow: hidden;
    }

    .feature-item {
        background-color: #fff;
        flex: unset;
        min-width: unset;
        padding: 14px 12px;
        text-align: left;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        border-right: none;
        border-bottom: none;
    }

    .feature-item:nth-child(odd) {
        border-right: none;
    }

    .feature-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .feature-item .icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        font-size: 16px;
        margin-bottom: 0;
        border-radius: 10px;
        background-color: #fffbeb;
        color: #d97706;
        flex-shrink: 0;
    }

    .feature-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .feature-item h3 {
        font-size: 13px;
        margin-bottom: 0;
        white-space: normal;
    }

    .feature-item p {
        font-size: 11px;
        white-space: normal;
        line-height: 1.3;
    }

    /* Banner section mobile */
    .banner-section {
        margin: 0.75rem 0 !important;
    }

    /* Promo grid mobile optimization */
    .promo-grid {
        padding: 10px 0;
    }

    .grid-container {
        padding: 5px 10px 10px;
    }

    .grid-item {
        flex: 0 0 75vw;
        max-width: 280px;
        padding: 18px;
        min-height: 190px;
    }

    .grid-item h2 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .grid-item p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .btn-promo {
        padding: 10px 20px;
        font-size: 13px;
        font-weight: 700;
        border-radius: 20px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .ink-toner .btn-promo {
        margin-top: 0;
        margin-left: 0;
    }

    .infinity-home {
        flex: 0 0 75vw;
        max-width: 280px;
    }

    .infinity-home img {
        max-height: 190px;
    }

    /* Product showcase mobile */
    .product-showcase {
        padding: 8px 0;
    }

    .showcase-container {
        border-radius: 12px;
        padding: 12px;
    }

    .sidebar-info {
        padding: 8px;
    }

    .sidebar-info h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .sidebar-info ul li a {
        font-size: 13px;
        padding: 4px 0;
    }

    .sidebar-image {
        padding: 8px;
    }

    /* Product cards mobile optimization */
    /* 2-col product cards always — even at 320px */
    .product-card {
        width: calc(50% - 6px);
        margin-bottom: 6px;
    }

    .product-image {
        height: 120px;
        padding: 8px;
        overflow: hidden;
    }

    .product-image img {
        max-height: 100%;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .badge {
        top: 6px;
        right: 6px;
        padding: 2px 6px;
        font-size: 9px;
    }

    .product-details {
        padding: 8px;
    }

    .product-sku {
        display: none;
    }

    .product-brand {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .product-title {
        font-size: 11px;
        height: auto;
        min-height: auto;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 4px;
    }

    .product-rating {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .price {
        font-size: 14px;
    }

    .price del {
        font-size: 10px;
    }

    /* Restore 44px minimum touch target */
    .add-to-cart-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
        border-radius: 8px;
    }

    .product-price-action {
        gap: 4px;
    }

    /* Carousel mobile optimization */
    .carousel-content .product-card {
        width: calc(50% - 6px);
    }

    .carousel-arrow {
        display: none;
    }

    /* Scroll hint — fade edge reveals that carousel is swipeable */
    .carousel-content {
        position: relative;
    }
    .carousel-content::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 30px;
        background: linear-gradient(to left, rgba(247,247,247,0.95), transparent);
        pointer-events: none;
        z-index: 5;
    }

    .sales-carousel {
        padding: 16px 0;
    }

    .carousel-header {
        margin-bottom: 12px;
        padding-bottom: 6px;
    }

    .carousel-header h2 {
        font-size: 18px;
    }

    .view-all {
        font-size: 13px;
        padding-left: 10px;
    }

    /* Sponsor section compact */
    .sponsor-container img {
        height: 50px;
        max-width: 65px;
    }

    .sponsor-container {
        gap: 15px;
        margin-bottom: 8px;
    }

    .sponsor-text {
        font-size: 10px;
        color: #bbb;
        padding: 0 8px;
        line-height: 1.4;
    }

    .sponsors {
        padding: 8px 0;
    }

    /* Intro text compact */
    .intro-text {
        padding: 12px 0 8px;
    }

    .intro-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Slideshow controls mobile */
    .prev,
    .next {
        padding: 6px 10px;
        font-size: 16px;
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }

    /* Product grid spacing */
    .product-grid {
        gap: 10px;
    }

    /* Infinity home promo content */
    .promo-content-overlay {
        padding: 8px !important;
    }

    .promo-text-content {
        font-size: 9px !important;
        line-height: 13px !important;
    }

    .infinity-home.grid-item p {
        font-size: 9px;
        line-height: 13px;
    }

    /* Category strip tighter on small screens */
    .mobile-category-strip {
        padding: 8px 0;
    }

    .mobile-category-scroll {
        padding: 0 10px;
        gap: 6px;
    }

    .cat-chip {
        padding: 7px 12px;
        font-size: 13px;
        min-height: 38px;
    }
}








.slideshow-container {
    position: relative;
    margin: auto;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    display: block;
}

.fade {
    animation: fadeEffect 0.8s ease-in-out;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: scale(1.02);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slider Dots/Indicators */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 0;
    outline: none;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background-color: #ffcd1c;
    width: 28px;
    border-radius: 10px;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile slider dots */
@media (max-width: 768px) {
    .slider-dots {
        bottom: 12px;
        gap: 8px;
        padding: 6px 12px;
    }

    .dot {
        width: 8px;
        height: 8px;
        position: relative;
    }

    /* Expand tap area to 44px without changing visual size */
    .dot::before {
        content: '';
        position: absolute;
        inset: -15px;
    }

    .dot.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .slider-dots {
        bottom: 10px;
        gap: 6px;
        padding: 5px 10px;
    }

    .dot {
        width: 7px;
        height: 7px;
    }

    .dot.active {
        width: 20px;
    }
}

/* Buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    padding: 12px;
    color: #222;
    /* Dark arrow for contrast */
    font-weight: bold;
    font-size: 22px;
    transition: 0.3s;
    border-radius: 50%;
    user-select: none;
    background: rgba(255, 205, 28, 0.1);
    /* Very transparent brand yellow */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Further reduction in shadow */
}

.next {
    right: 10px;
}

.prev {
    left: 10px;
}

.prev:hover,
.next:hover {
    background-color: #002494;
    /* Changed to brand blue */
    color: #fff;
}



.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}


.carousel-content {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.product-card-item {
    flex: 0 0 calc(100% / 4 - 20px);
    margin: 10px;
    background: #fff;
    border: 1px solid #ddd;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 6px;
}



/* Tablet (2 cards) */
@media (max-width: 900px) {
    .product-card-item {
        flex: 0 0 calc(100% / 2 - 20px);
    }
}

/* Mobile (1 card) */
@media (max-width: 600px) {
    .product-card-item {
        flex: 0 0 calc(100% - 20px);
    }
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 205, 28, 0.1);
    /* Very transparent brand yellow */
    color: #222;
    /* Darker arrow for contrast */
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.carousel-arrow.prev {
    left: 10px;
}

.carousel-arrow.next {
    right: 10px;
}

.carousel-arrow:hover {
    background: #002494;
    /* Changed to brand blue */
    color: #fff;
}


/* Buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 205, 28, 0.1);
    /* Very transparent brand yellow */
    color: #222;
    /* Darker arrow for contrast */
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

.prev:hover,
.next:hover {
    background: #002494;
    /* Changed to brand blue */
    color: #fff;
}


/* ============================================================
   MOBILE CATEGORY CHIP STRIP
   Hidden on desktop (min-width: 993px)
   ============================================================ */
.mobile-category-strip {
    display: none; /* shown only via media query below */
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
    position: sticky;
    top: 58px; /* sits below sticky header */
    z-index: 99;
}

.mobile-category-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mobile-category-scroll::-webkit-scrollbar { display: none; }

.cat-chip {
    flex: 0 0 auto;
    padding: 7px 14px;
    border-radius: 20px;
    background: #f5f5f5;
    font-size: 13px;
    font-weight: 600;
    color: #262329;
    white-space: nowrap;
    scroll-snap-align: start;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e8e8e8;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-decoration: none;
}

.cat-chip:hover,
.cat-chip:active {
    background: #ffcd1c;
    color: #262329;
    border-color: #ffcd1c;
}

.cat-chip--sale {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.cat-chip--sale:hover,
.cat-chip--sale:active {
    background: #ffcd1c;
    border-color: #ffcd1c;
    color: #262329;
}

@media (max-width: 992px) {
    .mobile-category-strip {
        display: block;
    }
}


/* ============================================================
   STICKY HEADER — MOBILE SCROLLED STATE
   ============================================================ */
@media (max-width: 992px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 200;
        transition: box-shadow 0.3s ease, padding 0.2s ease;
    }

    .site-header.header-scrolled {
        box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    }

    .site-header.header-scrolled .header-search {
        /* Collapsed height but still present for accessibility */
        max-height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0;
        opacity: 0;
        pointer-events: none;
        transition: all 0.25s ease;
    }

    .site-header.header-scrolled .header-main {
        padding: 6px 0;
    }

    /* Smooth restore when back at top */
    .header-search {
        max-height: 60px;
        opacity: 1;
        transition: all 0.25s ease;
    }
}


/* ============================================================
   INTRO TEXT — PROGRESSIVE DISCLOSURE (READ MORE)
   ============================================================ */
@media (max-width: 768px) {
    .intro-text {
        padding: 16px 0 10px;
    }

    .intro-text p.intro-truncated {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 6px;
        text-align: left;
    }

    .intro-text p.intro-truncated.expanded {
        -webkit-line-clamp: unset;
        display: block;
    }

    .intro-expand-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: none;
        border: none;
        color: #002494;
        font-size: 14px;
        font-weight: 600;
        padding: 6px 0;
        cursor: pointer;
        font-family: inherit;
        min-height: 44px;
    }

    .intro-expand-btn i {
        transition: transform 0.3s ease;
        font-size: 12px;
    }

    .intro-expand-btn[aria-expanded="true"] i {
        transform: rotate(180deg);
    }
}

@media (min-width: 769px) {
    .intro-expand-btn { display: none; }
}


/* ============================================================
   PRODUCT SKU — hide on tiny 2-col cards
   ============================================================ */
@media (max-width: 480px) {
    .product-sku {
        display: none;
    }

    .product-details {
        padding: 8px 10px 10px;
    }

    .product-brand {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .price {
        font-size: 15px;
    }
}


/* ============================================================
   MOBILE HERO SLIDE TEXT OVERLAY
   Shown only on mobile, hidden on desktop
   ============================================================ */
.mobile-slide-overlay {
    display: none; /* hidden on desktop */
}

@media (max-width: 992px) {
    /* Make slide container position:relative for overlay positioning */
    .slideshow-container {
        position: relative;
    }

    .slide {
        position: relative;
    }

    .mobile-slide-overlay {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 18px 18px 36px; /* extra bottom for dots */
        background: linear-gradient(to top, rgba(5, 12, 40, 0.88) 0%, rgba(5, 12, 40, 0.5) 60%, transparent 100%);
        pointer-events: none; /* let clicks fall through to the <a> beneath */
        z-index: 5;
        border-radius: 0 0 12px 12px;
    }

    .mobile-slide-title {
        font-size: 18px;
        font-weight: 800;
        color: #fff;
        line-height: 1.25;
        margin-bottom: 6px;
        text-shadow: 0 1px 4px rgba(0,0,0,0.4);
        max-width: 200px;
    }

    .mobile-slide-desc {
        font-size: 12px;
        color: rgba(255,255,255,0.88);
        line-height: 1.4;
        margin-bottom: 12px;
        max-width: 210px;
    }

    .mobile-slide-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background-color: #ffcd1c;
        color: #1a1a1a;
        font-size: 13px;
        font-weight: 700;
        padding: 9px 18px;
        border-radius: 24px;
        text-decoration: none;
        pointer-events: auto; /* re-enable for the button specifically */
        transition: background-color 0.2s ease, transform 0.1s ease;
        -webkit-tap-highlight-color: transparent;
        min-height: 40px;
    }

    .mobile-slide-btn:hover,
    .mobile-slide-btn:active {
        background-color: #e6b819;
        color: #1a1a1a;
        transform: translateY(-1px);
    }
}

@media (max-width: 480px) {
    .mobile-slide-title {
        font-size: 16px;
        max-width: 180px;
    }
    .mobile-slide-desc {
        font-size: 11px;
        max-width: 185px;
    }
}


/* ============================================================
   MOBILE CATEGORY BANNERS
   4 stacked dark cards replacing promo grid on mobile
   ============================================================ */
.mobile-category-banners {
    display: none; /* hidden on desktop */
}

@media (max-width: 992px) {
    .mobile-category-banners {
        display: block;
        padding: 12px 12px 4px;
    }

    /* Hide the old chip strip + promo grid on mobile now that banners replace them */
    .mobile-category-strip--hidden {
        display: none !important;
    }

    .promo-grid {
        display: none !important;
    }

    /* ─── Individual Banner Card ─── */
    .mobile-cat-banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #0d1b3e;
        background-size: cover;
        background-position: right center;
        background-repeat: no-repeat;
        border-radius: 12px;
        margin-bottom: 10px;
        min-height: 110px;
        overflow: hidden;
        text-decoration: none;
        position: relative;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
        -webkit-tap-highlight-color: transparent;
    }

    /* Dark overlay so text is always readable over background images */
    .mobile-cat-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to right,
            rgba(10, 20, 55, 0.94) 0%,
            rgba(10, 20, 55, 0.80) 50%,
            rgba(10, 20, 55, 0.30) 100%
        );
        border-radius: 12px;
        z-index: 1;
    }

    .mobile-cat-banner:active {
        transform: scale(0.985);
        box-shadow: 0 4px 16px rgba(0,0,0,0.35);
        text-decoration: none;
    }

    /* ─── Left Content Area ─── */
    .mobile-cat-content {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 14px;
        flex: 1;
        min-width: 0;
        position: relative;
        z-index: 2;
    }

    /* ─── Yellow Circle Icon ─── */
    .mobile-cat-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 50%;
        background-color: #ffcd1c;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 10px rgba(255, 205, 28, 0.35);
    }

    .mobile-cat-icon i {
        font-size: 18px;
        color: #1a1a1a;
    }

    /* ─── Text: Title + Subtitle ─── */
    .mobile-cat-text {
        min-width: 0;
    }

    .mobile-cat-text h3 {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 4px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-cat-text p {
        font-size: 11.5px;
        color: rgba(255,255,255,0.72);
        margin: 0;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* ─── Right Arrow Button ─── */
    .mobile-cat-arrow {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 50%;
        background-color: #ffcd1c;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 14px;
        position: relative;
        z-index: 2;
        box-shadow: 0 2px 8px rgba(255, 205, 28, 0.3);
        transition: background-color 0.2s ease, transform 0.15s ease;
    }

    .mobile-cat-arrow i {
        font-size: 13px;
        color: #1a1a1a;
        font-weight: 900;
    }

    .mobile-cat-banner:hover .mobile-cat-arrow,
    .mobile-cat-banner:active .mobile-cat-arrow {
        background-color: #e6b819;
        transform: scale(1.05);
    }
}

@media (max-width: 480px) {
    .mobile-category-banners {
        padding: 10px 10px 2px;
    }

    .mobile-cat-banner {
        min-height: 100px;
        margin-bottom: 8px;
    }

    .mobile-cat-content {
        gap: 12px;
        padding: 14px 12px;
    }

    .mobile-cat-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .mobile-cat-icon i {
        font-size: 16px;
    }

    .mobile-cat-text h3 {
        font-size: 15px;
    }

    .mobile-cat-text p {
        font-size: 11px;
    }
}


/* ============================================================
   FOOTER MOBILE TOP BLOCK
   Logo + tagline + social + 2-col quick links+contact
   ============================================================ */
.footer-mobile-top {
    display: none; /* hidden on desktop */
}

@media (max-width: 992px) {
    .footer-mobile-top {
        display: block;
        background-color: #1a1a1a;
        padding: 24px 16px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-mobile-top__brand {
        margin-bottom: 20px;
    }

    .footer-mobile-logo img {
        height: 36px;
        width: auto;
        filter: brightness(0) invert(1);
        display: block;
        margin-bottom: 10px;
    }

    .footer-mobile-tagline {
        font-size: 12px;
        color: rgba(255,255,255,0.55);
        line-height: 1.5;
        margin-bottom: 14px;
        max-width: 240px;
    }

    /* Social icons row */
    .footer-mobile-social {
        display: flex;
        gap: 12px;
    }

    .footer-mobile-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 15px;
        text-decoration: none;
        transition: background-color 0.2s ease, color 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .footer-mobile-social a:hover,
    .footer-mobile-social a:active {
        background-color: #ffcd1c;
        color: #1a1a1a;
    }

    /* 2-column quick links + contact */
    .footer-mobile-top__cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 16px;
    }

    .footer-mobile-col h4 {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: rgba(255,255,255,0.45);
        margin-bottom: 10px;
    }

    .footer-mobile-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-mobile-col ul li {
        margin-bottom: 9px;
    }

    .footer-mobile-col ul li a,
    .footer-mobile-col ul li span {
        display: flex;
        align-items: center;
        gap: 7px;
        color: rgba(255,255,255,0.75);
        font-size: 12.5px;
        font-weight: 500;
        text-decoration: none;
        line-height: 1.3;
        transition: color 0.2s ease;
    }

    .footer-mobile-col ul li a i {
        font-size: 11px;
        color: #ffcd1c;
        width: 14px;
        text-align: center;
        flex-shrink: 0;
    }

    .footer-mobile-col ul li span i {
        font-size: 11px;
        color: #ffcd1c;
        width: 14px;
        text-align: center;
        flex-shrink: 0;
    }

    .footer-mobile-col ul li a:hover {
        color: #ffcd1c;
    }

    /* Chevron icons in quick links */
    .footer-mobile-col ul li a .fa-chevron-right {
        margin-left: auto;
        color: rgba(255,255,255,0.3);
        font-size: 9px;
    }

    /* Hide the normal footer sections on mobile since mobile-top replaces them */
    .footer-social,
    .footer-main {
        display: none;
    }
}


/* ============================================================
   PREMIUM MOBILE REDESIGN — Final polish pass
   All rules scoped to max-width: 992px
   ============================================================ */

/* ── 1. Trust Strip: 4-col icon+title only, no descriptions ── */
@media (max-width: 992px) {
    .features {
        padding: 0;
        background: #fff;
        border-bottom: 1px solid #efefef;
    }

    .feature-container {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        flex-direction: unset !important;
        overflow-x: visible !important;
        gap: 0 !important;
        padding: 10px 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border-bottom: none !important;
        background: #fff;
    }

    .feature-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 8px 4px !important;
        gap: 6px !important;
        border-right: 1px solid #f0f0f0;
        flex: unset !important;
    }

    .feature-item:last-child {
        border-right: none;
    }

    .feature-item:not(:last-child)::after { display: none; }

    .feature-item .icon-wrapper {
        width: 34px !important;
        height: 34px !important;
        font-size: 14px !important;
        border-radius: 50% !important;
        background-color: #ffcd1c !important;
        color: #1a1a1a !important;
        margin-bottom: 0 !important;
        box-shadow: none !important;
        flex-shrink: 0;
    }

    /* Title only — hide description */
    .feature-item p {
        display: none !important;
    }

    .feature-item h3 {
        font-size: 9.5px !important;
        font-weight: 700 !important;
        color: #1a1a1a !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        text-align: center;
    }

    /* Hide banner slider section on mobile (replaced by category banners) */
    .banner-section {
        display: none !important;
    }
}

/* ── 2. Hero Slider: 16:9 with premium rounded card ── */
@media (max-width: 992px) {
    .hero-slider {
        padding: 10px 12px 0;
    }

    .slideshow-container {
        border-radius: 16px !important;
        overflow: hidden !important;
        margin: 0 !important;
        aspect-ratio: 16 / 9;
        background: #0a0f2e;
        position: relative;
    }

    .slide {
        height: 100%;
    }

    .slide a {
        display: block;
        height: 100%;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        border-radius: 0;
    }

    /* Slide dots — inside the card */
    .slider-dots {
        bottom: 14px !important;
        padding: 5px 12px !important;
        gap: 7px !important;
        background: rgba(0,0,0,0.25) !important;
        backdrop-filter: blur(6px) !important;
    }

    .dot {
        width: 7px !important;
        height: 7px !important;
    }

    .dot.active {
        width: 22px !important;
        background-color: #ffcd1c !important;
    }
}

/* ── 3. Mobile slide overlay — refined ── */
@media (max-width: 992px) {
    .mobile-slide-overlay {
        padding: 16px 16px 42px !important;
        background: linear-gradient(
            to top,
            rgba(5, 10, 35, 0.92) 0%,
            rgba(5, 10, 35, 0.6) 55%,
            transparent 100%
        ) !important;
    }

    .mobile-slide-title {
        font-size: 17px !important;
        max-width: 195px !important;
        font-weight: 800 !important;
        letter-spacing: -0.3px;
    }

    .mobile-slide-desc {
        font-size: 11.5px !important;
        max-width: 200px !important;
        color: rgba(255,255,255,0.82) !important;
    }

    .mobile-slide-btn {
        font-size: 12px !important;
        padding: 8px 16px !important;
        min-height: 36px !important;
        border-radius: 20px !important;
        font-weight: 700 !important;
        letter-spacing: 0.2px;
    }
}

/* ── 4. Category Banners — premium refinement ── */
@media (max-width: 992px) {
    .mobile-category-banners {
        padding: 10px 12px 6px !important;
    }

    .mobile-cat-banner {
        min-height: 116px !important;
        border-radius: 14px !important;
        margin-bottom: 8px !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    }

    .mobile-cat-banner--ink-toner {
        background-image: url('/assets/images/mobile-home/ink-toner.webp');
        background-position: right center;
    }

    .mobile-cat-banner--business {
        background-image: url('/assets/images/mobile-home/business-printing.webp');
        background-position: right center;
    }

    .mobile-cat-banner--3d {
        background-image: url('/assets/images/mobile-home/3d-printing.webp');
        background-position: right center;
    }

    .mobile-cat-banner--infinity {
        background-image: url('/assets/images/mobile-home/infinity.webp');
        background-position: right center;
    }

    /* Stronger left gradient so text always readable */
    .mobile-cat-banner::before {
        background: linear-gradient(
            to right,
            rgba(8, 16, 50, 0.97) 0%,
            rgba(8, 16, 50, 0.88) 45%,
            rgba(8, 16, 50, 0.40) 75%,
            rgba(8, 16, 50, 0.05) 100%
        ) !important;
    }

    .mobile-cat-content {
        padding: 16px 16px !important;
        gap: 14px !important;
    }

    .mobile-cat-icon {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        box-shadow: 0 4px 14px rgba(255,205,28,0.45) !important;
    }

    .mobile-cat-icon i {
        font-size: 19px !important;
    }

    .mobile-cat-text h3 {
        font-size: 17px !important;
        font-weight: 800 !important;
        letter-spacing: -0.2px;
        margin-bottom: 3px !important;
    }

    .mobile-cat-text p {
        font-size: 11.5px !important;
        color: rgba(255,255,255,0.65) !important;
    }

    .mobile-cat-arrow {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        margin-right: 16px !important;
        box-shadow: 0 3px 10px rgba(255,205,28,0.4) !important;
    }

    .mobile-cat-arrow i {
        font-size: 14px !important;
    }
}

/* ── 5. Footer mobile refinements ── */
@media (max-width: 992px) {
    .footer-mobile-top {
        padding: 22px 16px 18px !important;
    }

    .footer-mobile-top__brand {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 16px !important;
    }

    .footer-mobile-logo img {
        height: 40px !important;
        filter: none !important; /* keep original color if logo is on dark bg */
        opacity: 0.9;
    }

    .footer-mobile-tagline {
        font-size: 11.5px !important;
        margin-bottom: 0 !important;
        max-width: none;
        flex: 1;
    }

    .footer-mobile-social {
        flex-direction: column;
        gap: 8px;
    }

    /* Reset to horizontal layout */
    @media (max-width: 992px) {
        .footer-mobile-top__brand {
            flex-direction: column;
        }

        .footer-mobile-social {
            flex-direction: row;
        }
    }

    .footer-mobile-col h4 {
        font-size: 10px !important;
        margin-bottom: 8px !important;
        color: rgba(255,255,255,0.4) !important;
    }

    .footer-mobile-col ul li {
        margin-bottom: 7px !important;
    }

    .footer-mobile-col ul li a,
    .footer-mobile-col ul li span {
        font-size: 12px !important;
        color: rgba(255,255,255,0.7) !important;
    }
}

/* ── 6. Sticky offset: dept bar + search bar height compensation ── */
@media (max-width: 992px) {
    .mobile-category-strip {
        top: 130px !important; /* header(56) + dept-bar(72) + search(56) */
    }
}

/* Homepage should use the same mobile footer as the rest of the site. */
@media (max-width: 992px) {
    .footer-mobile-top {
        display: none !important;
    }

    .footer-social,
    .footer-main {
        display: block !important;
    }
}
