/*=========================================================
                    PRODUCTS HERO
=========================================================*/

.products-hero {
    position: relative;
    padding: 20px 0 0px;
    background: linear-gradient(135deg, #0D3D68 0%, #1C5D94 100%);
    overflow: hidden;
}

.products-hero::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    top: -220px;
    right: -150px;
}

.products-hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
    bottom: -180px;
    left: -120px;
}

.products-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    /* Slightly widened to give the gap room to breathe */
}

/*=========================================================
                    HERO GRID
=========================================================*/
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 150px;
    align-items: center;
}

.hero-right {
    align-self: center;
}

.product-hero-content {
    max-width: 100%;
    text-align: left;
}

.product-hero-subtitle {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.product-hero-content h1 {
    color: #fff;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.product-hero-content p {
    color: rgba(255, 255, 255, .88);
    font-size: 16px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 0 30px 0;
}

/*=========================================================
                    SEARCH BAR
=========================================================*/
.product-search {
    max-width: 500px;
    margin: 0;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 70px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.product-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 22px;
    font-size: 15px;
    color: #222;
    background: none;
}

.product-search input::placeholder {
    color: #8A8A8A;
}

.product-search button {
    width: 52px;
    height: 52px;
    border: none;
    background: #003399;
    color: #fff;
    cursor: pointer;
    transition: .35s;
    font-size: 16px;
}

.product-search button:hover {
    background: #F4A825;
    color: #111;
}

/*=========================================================
                    INLINE HIGHLIGHTS
=========================================================*/
.hero-inline-highlights {
    margin-top: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-inline-highlights span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-inline-highlights i {
    color: #F4A825;
}

.hero-inline-highlights span:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 12px;
}

/*=========================================================
                    3D CAROUSEL
=========================================================*/

.hero-3d-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding-bottom: 120px;
    z-index: 1;
}

.custom-3d-carousel {
    position: relative;
    width: 100%;
    height: 350px;
    margin-top: 20px;
    margin-bottom: 20px;
    z-index: 2;
}

.custom-3d-carousel .carousel-item {
    position: absolute;
    width: 450px;
    left: 50%;
    top: 50%;
    margin-left: -225px;
    /* Half of width to center horizontally */
    margin-top: -50px;
    /* Shifted down to sit on the oval */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-3d-carousel .carousel-item img {
    object-fit: contain;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.2));
}

/* Individual Base Sizes for Each Product Image */
/* Modify the 'width' percentages below to fine-tune each specific product's size! */

.custom-3d-carousel .carousel-item:nth-child(1) img {
    /* Product 1: Cabinet */
    width: 95%;
    transform: translateY(-40px);
}

.custom-3d-carousel .carousel-item:nth-child(2) img {
    /* Product 2: Bunker Bed */
    width: 100%;
}

.custom-3d-carousel .carousel-item:nth-child(3) img {
    /* Product 3: Hospital Bed (was looking too big, so scaled down) */
    width: 75%;
}

.custom-3d-carousel .carousel-item:nth-child(4) img {
    /* Product 4: Dual Desk */
    width: 100%;
}

/* 4 Positions for Circular Motion */
.custom-3d-carousel .pos-1 {
    transform: translate(0, 60px) scale(1.1);
    z-index: 4;
    opacity: 1;
}

.custom-3d-carousel .pos-2 {
    transform: translate(230px, 10px) scale(0.85);
    z-index: 3;
    opacity: 0.8;
}

.custom-3d-carousel .pos-3 {
    transform: translate(0, -30px) scale(0.65);
    z-index: 2;
    opacity: 0.5;
}

.custom-3d-carousel .pos-4 {
    transform: translate(-230px, 10px) scale(0.85);
    z-index: 3;
    opacity: 0.8;
}

.carousel-base {
    position: absolute;
    bottom: -110px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    z-index: -1;
}

.carousel-base img.pedestal-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


/*=========================================================
                FLOATING HIGHLIGHTS (OLD - KEPT FOR REFERENCE/OTHER SECTIONS IF ANY)
=========================================================*/

.product-highlights {

    margin-top: -65px;

    position: relative;

    z-index: 20;

}

.product-highlight-wrapper {

    background: #fff;

    border-radius: 24px;

    padding: 28px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    box-shadow: 0 20px 55px rgba(0, 0, 0, .08);

}

.product-highlight-item {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 18px;

    border-radius: 18px;

    transition: .35s;

}

.product-highlight-item:hover {

    background: #F4F8FC;

    transform: translateY(-4px);

}

.product-highlight-item i {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #EAF3FB;

    color: #0D3D68;

    font-size: 22px;

    transition: .35s;

}

.product-highlight-item:hover i {

    background: #0D3D68;

    color: #fff;

}

.product-highlight-item span {

    font-size: 16px;

    font-weight: 600;

    color: #222;

    line-height: 1.5;

}

/*=========================================================
                TABLET
=========================================================*/

@media(max-width:991px) {

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .product-hero-content {
        text-align: center;
    }

    .product-hero-content p,
    .product-search {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-inline-highlights {
        justify-content: center;
    }

    .product-hero-content h1 {

        font-size: 46px;

    }

    .product-hero-content p {

        font-size: 17px;

    }

    .product-highlight-wrapper {

        grid-template-columns: repeat(2, 1fr);

    }

    .product-search {

        max-width: 100%;

    }

}

/*=========================================================
                MOBILE
=========================================================*/

@media(max-width:767px) {

    .products-hero {
        padding: 40px 0 60px;
        overflow: hidden;
    }

    .hero-grid {
        gap: 20px;
    }

    .product-hero-content h1 {
        font-size: 34px;
    }

    .product-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .product-hero-subtitle {
        font-size: 12px;
    }

    .product-search {
        height: 58px;
    }

    .product-search input {
        padding: 15px 18px;
        font-size: 15px;
    }

    .product-search button {
        width: 58px;
        height: 58px;
    }

    .product-highlight-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .product-highlight-item {
        justify-content: flex-start;
    }

    /* Mobile 3D Carousel Fix */
    .hero-3d-wrapper {
        width: 280px; /* Increased width */
        padding-bottom: 70px;
    }

    .custom-3d-carousel {
        height: 200px; /* Increased height */
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .custom-3d-carousel .carousel-item {
        width: 200px; /* Increased width */
        margin-left: -100px;
        margin-top: -20px;
    }

    .custom-3d-carousel .carousel-item:nth-child(1) img {
        transform: translateY(-20px);
    }

    .custom-3d-carousel .pos-1 { transform: translate(0, 15px) scale(1.35); }
    .custom-3d-carousel .pos-2 { transform: translate(95px, 0px) scale(1.05); }
    .custom-3d-carousel .pos-3 { transform: translate(0, -20px) scale(0.8); }
    .custom-3d-carousel .pos-4 { transform: translate(-95px, 0px) scale(1.05); }

    .carousel-base {
        bottom: -25px;
        width: 145%; /* Slightly larger base oval */
    }
}

/*=========================================================
                    PRODUCTS SECTION
=========================================================*/

.products-section {
    padding: 80px 0;
    background: #F7F9FC;
}

.products-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 35px;
    align-items: flex-start;
}

/*=========================================================
                    SIDEBAR
=========================================================*/

.product-sidebar {

    position: sticky;

    top: 110px;

}

.product-sidebar h3 {

    font-size: 28px;

    font-weight: 700;

    color: #0D3D68;

    margin-bottom: 25px;

}

.product-sidebar-box {

    background: #fff;

    border-radius: 18px;

    padding: 28px;

    margin-bottom: 25px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    border: 1px solid #EEF2F6;

}

.product-sidebar-box h4 {

    font-size: 18px;

    color: #222;

    margin-bottom: 22px;

    padding-bottom: 15px;

    border-bottom: 1px solid #ECECEC;

}

/*=========================================================
                    FILTER GROUP
=========================================================*/

.filter-group {

    display: flex;

    flex-direction: column;

    gap: 16px;

}

/*=========================================================
                    FILTER ITEM
=========================================================*/

.filter-item {

    display: flex;

    align-items: center;

    gap: 14px;

    cursor: pointer;

    font-size: 15px;

    color: #444;

    transition: .3s;

    user-select: none;

}

.filter-item:hover {

    color: #0D3D68;

    transform: translateX(4px);

}

.filter-item input {

    display: none;

}

/*=========================================================
                    CUSTOM RADIO
=========================================================*/

.radio-circle {

    width: 18px;

    height: 18px;

    border: 2px solid #CBD5E1;

    border-radius: 50%;

    position: relative;

    flex-shrink: 0;

    transition: .3s;

}

.filter-item input:checked+.radio-circle {

    border-color: #0D3D68;

}

.filter-item input:checked+.radio-circle::after {

    content: "";

    position: absolute;

    width: 10px;

    height: 10px;

    background: #0D3D68;

    border-radius: 50%;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

}

.filter-item span:last-child {

    transition: .3s;

}

.filter-item input:checked~span:last-child {

    color: #0D3D68;

    font-weight: 700;

}

/*=========================================================
                CLEAR FILTER BUTTON
=========================================================*/

.clear-filter {

    width: 100%;

    height: 52px;

    border: none;

    border-radius: 14px;

    background: #0D3D68;

    color: #fff;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;

    box-shadow: 0 10px 25px rgba(13, 61, 104, .18);

}

.clear-filter:hover {

    background: #F5A623;

    color: #111;

    transform: translateY(-2px);

}

/*=========================================================
                PRODUCT CONTENT
=========================================================*/

.products-content {

    width: 100%;

}

/*=========================================================
                PRODUCT TOOLBAR
=========================================================*/

.product-toolbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: #fff;

    padding: 20px 25px;

    border-radius: 18px;

    margin-bottom: 30px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.product-toolbar p {

    font-size: 16px;

    font-weight: 600;

    color: #444;

}

/*=========================================================
                VIEW ICONS
=========================================================*/

.view-icons {

    display: flex;

    gap: 10px;

}

.view-icons button {

    width: 46px;

    height: 46px;

    border: none;

    border-radius: 12px;

    background: #EEF5FB;

    color: #0D3D68;

    cursor: pointer;

    transition: .3s;

    font-size: 18px;

}

.view-icons button:hover {

    background: #0D3D68;

    color: #fff;

}

/*=========================================================
                TABLET
=========================================================*/

@media(max-width:991px) {

    .products-layout {

        grid-template-columns: 1fr;

    }

    .product-sidebar {

        position: relative;

        top: 0;

    }

    .product-sidebar-box {

        margin-bottom: 20px;

    }

}

/*=========================================================
                MOBILE
=========================================================*/

@media(max-width:767px) {

    .products-section {

        padding: 60px 0;

    }

    .product-sidebar h3 {

        display: none;
        /* Hide main title to save space, keeping just the bars */

    }

    .product-sidebar-box {

        padding: 0;
        margin-bottom: 10px;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #eee;

    }

    .product-sidebar-box h4 {

        margin: 0;
        padding: 15px 20px;
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        background: #fff;
        border-radius: 8px;

    }

    .product-sidebar-box h4::after {
        content: '\f078';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        transition: transform 0.3s ease;
        font-size: 14px;
        color: #0D3D68;
    }

    .product-sidebar-box.active h4::after {
        transform: rotate(180deg);
    }

    .product-sidebar-box h4 {
        border-bottom: 1px solid transparent;
    }

    .product-sidebar-box.active h4 {
        border-bottom-color: #eee;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .filter-group {
        display: none;
        padding: 15px 20px;
    }

    .product-sidebar-box.active .filter-group {
        display: block;
    }

    .product-toolbar {

        flex-direction: column;

        gap: 15px;

        align-items: flex-start;

    }

    .view-icons {

        width: 100%;

    }

    .view-icons button {

        flex: 1;

    }

    .filter-item {

        font-size: 14px;

    }

}

/*=========================================================
                PRODUCT GRID
=========================================================*/

.product-grid {
    display: grid;
    /*  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));*/
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* List Layout Modifiers */
.product-grid.list-layout {
    grid-template-columns: 1fr;
}

.product-grid.list-layout .product-card {
    display: flex;
    flex-direction: row;
    height: auto;
    min-height: 220px;
    align-items: center;
}

.product-grid.list-layout .product-image {
    width: 280px;
    height: 240px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-grid.list-layout .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-grid.list-layout .product-info {
    position: static;
    flex: 1;
    background: transparent !important;
    justify-content: center;
    padding: 30px;
    text-align: left;
}

.product-grid.list-layout .product-title {
    color: #1B3A6B !important;
}

.product-grid.list-layout .product-short-description,
.product-grid.list-layout .view-btn {
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 1000px;
    margin-top: 15px !important;
}

.product-grid.list-layout .product-short-description {
    color: #555;
}

.product-grid.list-layout .view-btn {
    background: #003399;
    color: #fff;
}

.product-grid.list-layout .view-btn:hover {
    background: #F4A825;
}

/*=========================================
        PRODUCT CARD
=========================================*/

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    height: 300px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transition: .35s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .15);
}

/*=========================================
        IMAGE
=========================================*/

.product-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /* Image centered */
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 85%;
    max-height: 80%;
    object-fit: cover;
    object-position: bottom center;
    transition: .45s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/*=========================================
        OVERLAY
=========================================*/

.product-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;

    justify-content: flex-end;

    min-height: 90px;

    padding: 20px;

    z-index: 2;
}

/*=========================================
        TITLE
=========================================*/

.product-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;

    display: -webkit-box;
    /* -webkit-line-clamp:2;*/
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title,
.product-title a,
.product-title a:link,
.product-title a:visited,
.product-title a:hover,
.product-title a:active,
.product-title a:focus {
    color: #1B3A6B !important;
    text-decoration: none !important;
}

/*=========================================
    Hidden Initially
=========================================*/

.product-short-description,
.view-btn {

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: all .35s ease;

    max-height: 0;

    margin-top: 0 !important;

    padding-top: 0 !important;

    padding-bottom: 0 !important;

    overflow: hidden;

}

/*=========================================
        Description
=========================================*/

.product-short-description {

    color: #fff;

    font-size: 15px;

    line-height: 1.7;

}

/*=========================================
        Button
=========================================*/

.view-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    width: max-content;

    padding-left: 24px;

    padding-right: 24px;

    border-radius: 40px;

    background: #fff;

    color: #0D3D68;

    font-weight: 600;

    text-decoration: none;

}

.view-btn:hover {

    background: #F5A623;

    color: #111;

}

/*=========================================
        HOVER
=========================================*/

.product-card:hover .product-info {

    background: linear-gradient(to top,
            rgba(13, 61, 104, .92),
            rgba(13, 61, 104, .72),
            rgba(13, 61, 104, 0));

}

.product-card:hover .product-title,
.product-card:hover .product-title a,
.product-card:hover .product-title a:link,
.product-card:hover .product-title a:visited,
.product-card:hover .product-title a:hover,
.product-card:hover .product-title a:active,
.product-card:hover .product-title a:focus {
    color: #1B3A6B !important;
}

.product-card:hover .product-short-description,
.product-card:hover .view-btn {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

    max-height: 150px;

}

.product-card:hover .product-short-description {

    margin-top: 15px !important;

}

.product-card:hover .view-btn {
    margin-top: 20px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

/*==========================
Remove Old Labels
==========================*/

.product-industry,
.product-category {
    display: none;
}

/*=========================================================
                NO PRODUCT
=========================================================*/

.no-product {

    grid-column: 1/-1;

    background: #fff;

    padding: 80px 40px;

    text-align: center;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.no-product h3 {

    font-size: 30px;

    color: #999;

}

/*=========================================================
                PAGINATION
=========================================================*/

.pagination {

    margin-top: 60px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

}

.pagination .page-numbers {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff;

    color: #222;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);

    transition: .3s;

}

.pagination .page-numbers:hover {

    background: #0D3D68;

    color: #fff;

}

.pagination .current {

    background: #0D3D68;

    color: #fff;

}

/*=========================================================
                PRODUCT LOADING
=========================================================*/

.product-grid.loading {

    opacity: .4;

    pointer-events: none;

}

/*=========================================================
                TABLET
=========================================================*/

@media(max-width:991px) {

    .product-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .product-image {

        height: 220px;

    }

}

/*=========================================================
                MOBILE
=========================================================*/

@media(max-width:767px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-grid.list-layout {
        grid-template-columns: 1fr;
    }

    .product-grid.list-layout .product-card {
        display: flex !important;
        flex-direction: row !important;
        padding: 12px !important;
        height: auto !important;
        min-height: 135px !important;
        align-items: stretch !important;
        gap: 15px !important;
    }

    .product-grid.list-layout .product-image {
        width: 155px !important;
        min-width: 155px !important;
        height: 155px !important;
        min-height: 155px !important; /* Override desktop min-height */
        padding: 0 !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .product-grid.list-layout .product-image img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        transform: scale(1.1) !important;
    }

    .product-grid.list-layout .product-info {
        width: calc(100% - 170px) !important;
        padding: 5px 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important; /* pushes button to bottom */
        align-items: flex-start !important;
        text-align: left !important;
    }

    .product-grid.list-layout .product-title {
        font-size: 15px !important;
        margin-bottom: 5px !important;
        -webkit-line-clamp: 2 !important;
        text-align: left !important;
    }

    .product-grid.list-layout .product-short-description {
        font-size: 12px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-align: left !important;
    }

    .product-grid.list-layout .view-btn {
        font-size: 11px !important;
        padding: 6px 12px !important;
        margin-top: auto !important;
        width: max-content !important;
    }

    .product-card {
        border-radius: 12px;
        height: 210px;
        /* Reduced height to fit 2 per row better */
    }

    .product-image {
        height: 140px;
        /* Increased to remove empty gap */
        padding: 5px;
        align-items: flex-end; /* Push image closer to text */
    }

    .product-image img {
        max-width: 95%;
        max-height: 95%;
    }

    .product-info {

        padding: 10px;
        transition: height 0.3s ease, background 0.3s ease;

    }

    .product-card:hover .product-info {
        height: 100%;
        justify-content: flex-end;
    }

    .product-info h3 {

        font-size: 14px;
        /* Reduced font size to prevent overflow */

        min-height: auto;

    }

    .product-card:hover .product-short-description {
        font-size: 11px !important;
        line-height: 1.4 !important;
        margin-top: 8px !important;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .view-btn {

        width: 100%;

        justify-content: center;
        padding: 6px 10px;
        /* Thinner button */
        font-size: 12px;

    }

    .product-card:hover .view-btn {
        margin-top: 10px !important;
    }

    .pagination {

        flex-wrap: wrap;

    }

    #load-more-products {
        background: #1A56DB !important; /* Vibrant blue requested */
        color: #fff !important;
        width: 100%;
        max-width: 250px; /* Looks like a pill */
        padding: 15px 30px;
        text-align: center;
        justify-content: center;
    }

    #load-more-products:hover,
    #load-more-products:active,
    #load-more-products:focus {
        background: #154aba !important; /* Slightly darker on active/hover, no orange */
        color: #fff !important;
        transform: translateY(0); /* Remove the jump effect */
    }

    #load-more-products i {
        display: none; /* Hide arrow to match screenshot */
    }

}

/*Loading effects for the filteration */
.product-grid.loading {

    opacity: .45;

    pointer-events: none;

    transition: .3s;

}

.product-grid.loading::after {

    content: "Loading Products...";

    display: block;

    text-align: center;

    width: 100%;

    font-size: 18px;

    color: #0D3D68;

    padding: 30px;

}

.product-count {

    font-size: 17px;

    color: #555;

}

.product-count strong {

    color: #0D3D68;

    font-size: 20px;

    font-weight: 700;

}

/*==========================================
            LOAD MORE
==========================================*/

.load-more-wrapper {

    margin-top: 50px;

    display: flex;

    justify-content: center;

}

#load-more-products {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 18px 42px;

    border: none;

    border-radius: 60px;

    background: #1A56DB;

    color: #fff;

    cursor: pointer;

    font-size: 16px;

    font-weight: 600;

    transition: .35s;

    box-shadow: 0 15px 35px rgba(13, 61, 104, .18);

}

#load-more-products i {

    transition: .35s;

}

#load-more-products:hover {

    background: #F5A623;

    color: #111;

    transform: translateY(-3px);

}

#load-more-products:hover i {

    transform: translateY(4px);

}

#load-more-products.loading {

    pointer-events: none;

    opacity: .6;

}

#load-more-products.loading::after {

    content: " Loading...";

}