
/* =========================================================
   B2B WHOLESALE PAGE STYLES & TARGET LAYOUT
   ========================================================= */

/* =========================================================
   B2B HERO BANNER - EXACT DESIRED LAYOUT & RESPONSIVE SCALING
   ========================================================= */

.b2b-hero-section {
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-bottom: 2.5rem;
    padding: 0;
}

.b2b-banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.b2b-banner-slider .b2b-hero-banner {
    display: none;
    width: 100%;
    aspect-ratio: 1280 / 511; /* Locks exact banner proportions from your design */
    min-height: 220px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 0 4%;
    align-items: center;
    justify-content: flex-start;
    animation: fadeIn 0.4s ease-in-out;
}

.b2b-banner-slider .b2b-hero-banner.active {
    display: flex;
}

/* Text and Button Block aligned to the left, internally centered */
.b2b-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers button under text block */
    text-align: center;
    width: 35%;          /* Takes up left portion of the banner */
    max-width: 400px;
    margin-left: 4%;     /* Indent from left edge */
}

/* Stacks "Wholesale" and "B2B" cleanly */
.b2b-hero-text h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(1.2rem, 3.4vw, 3.4rem); /* Fluid scaling for all screen sizes */
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    text-transform: uppercase;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.35);
    margin-bottom: 1rem;
    width: 100%;
}

.b2b-order-btn {
    background-color: var(--blue-900, #1e3a8a);
    color: var(--white);
    border: none;
    border-radius: 9999px;
    padding: clamp(0.35rem, 1.1vw, 0.75rem) clamp(1rem, 2.2vw, 2rem);
    font-size: clamp(0.6rem, 1.2vw, 1rem);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s, transform 0.2s;
    white-space: nowrap;
}

.b2b-order-btn:hover {
    background-color: var(--blue-700, #1d4ed8);
    transform: translateY(-2px);
}

/* Indicator Dots */
.b2b-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    width: 100%;
}

.b2b-dot {
    width: 10px;
    height: 10px;
    background-color: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.b2b-dot.active {
    background-color: var(--blue-900);
    width: 26px;
    border-radius: 5px;
}

@keyframes fadeIn {
    from { opacity: 0.4; }
    to { opacity: 1; }
}




/* =========================================================
   FILTER BAR STYLES (Matching Reference Image)
   ========================================================= */
.b2b-filters-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.filter-group {
    position: relative; /* Essential so dropdowns align directly under each box */
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.filter-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue-900, #1e3a8a);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-dropdown-wrapper {
    position: relative;
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--blue-200, #bfdbfe);
    border-radius: 9999px; /* Pill shape matching your reference */
    box-shadow: 0 2px 5px rgba(30, 58, 138, 0.04);
    display: flex;
    align-items: center;
}

.filter-select {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--blue-900, #1e3a8a);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 2rem;
}

.filter-dropdown-wrapper i {
    position: absolute;
    right: 1rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    pointer-events: none;
}

/* =========================================================
   CUSTOM FILTER DROPDOWNS (Anchored Directly Below)
   ========================================================= */
.custom-filter-dropdown {
    position: relative;
}

.filter-dropdown-wrapper {
    position: relative;
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--blue-200, #bfdbfe);
    border-radius: 9999px;
    padding: 0.6rem 1rem;
    box-shadow: 0 2px 5px rgba(30, 58, 138, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.filter-dropdown-wrapper span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--blue-900, #1e3a8a);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-dropdown-wrapper i {
    font-size: 0.75rem;
    color: var(--gray-500);
    transition: transform 0.2s ease;
}

/* Custom Dropdown Menu Popup */
.custom-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px; /* Ensures it's wide enough for long text like Equipment and Spare Parts */
    white-space: nowrap; /* Prevents awkward text wrapping */
    background-color: var(--white);
    border: 1px solid var(--blue-200, #bfdbfe);
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
    z-index: 1000;
    padding: 0.5rem 0;
    overflow: hidden;
}

.custom-dropdown-menu.show {
    display: block;
}

.filter-option {
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    color: var(--gray-800);
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.filter-option:hover {
    background-color: var(--blue-50, #eff6ff);
    color: var(--blue-600, #2563eb);
}



/* =========================================================
   PRODUCTS GRID & CARDS
   ========================================================= */
.b2b-products-section {
    margin-bottom: 4rem;
}

.b2b-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue-900);
    margin-bottom: 1.5rem;
}

.b2b-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.b2b-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.08);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    border: 2px solid #bfdbfe;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.b2b-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
}

.b2b-card-img {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.b2b-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.b2b-product-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue-900);
    line-height: 1.3;
    min-height: 2.6rem;
}

.b2b-price {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--gray-800);
}

.b2b-rating {
    font-size: 0.8rem;
    color: var(--yellow-400);
    margin-bottom: 0.5rem;
}

.b2b-card .btn-add {
    background-color: var(--blue-900);
    color: var(--white);
    padding: 0.6rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    width: 100%;
    margin-top: 0.5rem;
}

.b2b-card-link-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.b2b-card .btn-add:hover {
    background-color: var(--blue-700);
}

/* =========================================================
   PAGINATION STYLING (Matching Reference Image)
   ========================================================= */
/* =========================================================
   PAGINATION STYLING (Boxed Active, Clean Text Numbers)
   ========================================================= */
.b2b-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Allows items to wrap neatly on smaller screens if needed */
    gap: 0.75rem;
    margin-top: 3rem;
    width: 100%;
}

/* Arrow buttons (Back / Next) */
.b2b-pagination .page-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 1rem;
    background-color: var(--white);
    color: var(--blue-900, #1e3a8a);
    border: 1px solid var(--blue-200, #bfdbfe);
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.b2b-pagination .page-arrow:hover {
    border-color: var(--blue-500, #3b82f6);
    background-color: var(--blue-50, #eff6ff);
}

.b2b-pagination .page-arrow.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Page number links */
.b2b-pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 42px;
    background-color: transparent;
    color: var(--gray-700, #374151);
    border: none;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.b2b-pagination .page-link:hover {
    color: var(--blue-600, #2563eb);
}

/* Active page number highlight box */
.b2b-pagination .page-link.active {
    background-color: var(--blue-900, #1e3a8a);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.25);
}

.b2b-pagination .page-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 42px;
    font-weight: 700;
    color: var(--gray-500, #6b7280);
    font-size: 0.9rem;
}


/* =========================================================
   Alert Message Box
   ========================================================= */

/* Under Construction Modal */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 1rem;
}

.custom-modal-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #bfdbfe;
}

.modal-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.custom-modal-card h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.custom-modal-card p {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.4;
}

.contact-info-box {
    background-color: #f0f6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 1.25rem 0;
    text-align: left;
    font-size: 0.85rem;
    color: #1e3a8a;
}

.contact-info-box div {
    margin-bottom: 0.4rem;
}

.contact-info-box div:last-child {
    margin-bottom: 0;
}

.btn-close-notice {
    background-color: #1e3a8a;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-close-notice:hover {
    background-color: #1d4ed8;
}


/* =========================================================
   Alert Message Box
   ========================================================= */
   

/* =========================================================
   RESPONSIVE MEDIA QUERIES FOR ALL DEVICES
   (1200px, 1024px, 768px, 640px, 480px, 360px)
   ========================================================= */

@media screen and (max-width: 1200px) {
   
    .b2b-hero-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .nav-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        gap: 1.25rem;
        justify-content: flex-start;
    }
    .b2b-banner-slider .b2b-hero-banner {
        height: 450px;
        padding: 3rem 5rem;
    }
    .b2b-hero-text {
        /* margin-left: 4rem;
        max-width: 380px; */
        width: 40%;
        height: 10%;
        /* margin-left: 10%; */
        margin-right: 50%;
    }
    .b2b-hero-text h1 {
        font-size: 4rem;
    }

    .b2b-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    
}

@media screen and (max-width: 1024px) {
  
    .b2b-hero-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .nav-container {
        justify-content: flex-start;
        gap: 1rem;
    }
    .b2b-filters-bar {
        grid-template-columns: repeat(4, 1fr);
    }
    .b2b-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
    .b2b-hero-banner {
        padding: 2.5rem 0;
    }
    .b2b-hero-text h1 {
        font-size: 3rem;
    }
    .b2b-banner-slider .b2b-hero-banner {
        height: 380px;
        padding: 2.5rem 3rem;
    }
    .b2b-hero-text {
        width: 40%;
        margin-left: 3%;
        
    }
    
}

@media screen and (max-width: 768px) {
   
    .b2b-hero-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .main-header {
        padding: 0.75rem 0;
    }
    .header-container {
        display: grid;
        grid-template-columns: 1fr auto;
        row-gap: 0.75rem;
        column-gap: 1.5rem;
        align-items: center;
    }
    .logo-section {
        grid-column: 1 / -1;
        justify-content: center;
        text-align: left;
        gap: 0.4rem;
    }
    .header-logo-img {
        width: 60px;
    }
    .logo-text {
        font-size: 0.9rem;
        font-weight: 800;
        line-height: 1.1;
        white-space: nowrap;
    }
    .logo-tagline {
        display: block !important;
        font-size: 0.65rem;
        margin-left: 0.5rem;
        padding-left: 0.5rem;
        border-left: 1px solid var(--gray-300);
        line-height: 1.2;
    }
    .search-container {
        grid-column: 1 / 2;
        margin: 0;
        min-width: 0;
    }
    .search-input {
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
    }
    .search-btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }
    .header-icons {
        grid-column: 2 / 3;
        display: flex;
        flex-direction: row;
        gap: 0.6rem;
        flex-wrap: nowrap;
    }
    .icon-item {
        font-size: 0.65rem;
    }
    .icon-item i {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }
    .b2b-hero-banner {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    .b2b-hero-text h1 {
        font-size: 2.25rem;
    }
    .b2b-order-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    .b2b-section-title {
        font-size: 1.25rem;
    }

    .b2b-banner-slider .b2b-hero-banner {
        height: 340px;
        padding: 2rem 2.5rem;
    }
    .b2b-hero-text {
        width: 45%;
        height: 10%;
        /* margin-left: 10%; */
        margin-right: 90%;
    }
    .b2b-grid {
        grid-template-columns: repeat(4, 1fr); /* Forces 4 products in 1 row */
        gap: 0.75rem;
    }
    .b2b-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    .b2b-card {
        padding: 0.85rem;
    }
    .b2b-card-img {
        height: 140px;
    }
    .b2b-product-title {
        font-size: 0.8rem;
        min-height: auto;
    }
    .b2b-price {
        font-size: 0.75rem;
    }
    .b2b-pagination {
        gap: 0.5rem;
        margin-top: 2rem;
    }
    .b2b-pagination .page-arrow {
        height: 38px;
        padding: 0 0.75rem;
        font-size: 0.85rem;
    }
    .b2b-pagination .page-link {
        min-width: 32px;
        height: 38px;
        font-size: 0.85rem;
    }
     
    
}
@media screen and (max-width: 640px) {
    .b2b-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .b2b-card {
        max-width: 100%;
    }
    .b2b-banner-slider .b2b-hero-banner {
        height: 300px;
        padding: 1.5rem 2rem;
        justify-content: center;
    }
    .b2b-hero-text {
        width: 45%;
        margin-left: 2%;
    }
    .b2b-filters-bar {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    .b2b-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    .b2b-card {
        padding: 0.85rem;
    }
    .b2b-card-img {
        height: 140px;
    }
    .b2b-product-title {
        font-size: 0.8rem;
        min-height: auto;
    }
    .b2b-price {
        font-size: 0.75rem;
    }
    .b2b-pagination {
        gap: 0.5rem;
        margin-top: 2rem;
    }
    .b2b-pagination .page-arrow {
        height: 38px;
        padding: 0 0.75rem;
        font-size: 0.85rem;
    }
    .b2b-pagination .page-link {
        min-width: 32px;
        height: 38px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
   
    .b2b-hero-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .nav-container {
        font-size: 0.65rem;
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .b2b-banner-slider .b2b-hero-banner {
        height: 250px;
        padding: 1rem 1.25rem;
    }
    .b2b-hero-text {
        width: 40%;
        height: 10%;
        /* margin-left: 10%; */
        margin-right: 50%;
    }
    .b2b-hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .b2b-order-btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    .b2b-filters-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .b2b-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .b2b-section-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    .b2b-pagination .page-link {
        min-width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .b2b-pagination {
        gap: 0.35rem;
    }
    .b2b-pagination .page-arrow {
        height: 34px;
        padding: 0 0.5rem;
        font-size: 0.78rem;
        border-radius: 0.5rem;
    }
    .b2b-pagination .page-link {
        min-width: 28px;
        height: 34px;
        font-size: 0.8rem;
        border-radius: 0.5rem;
    }
    .b2b-pagination .page-dots {
        height: 34px;
        min-width: 18px;
        font-size: 0.8rem;
    }
    
}

@media screen and (max-width: 430px) {
    
    .b2b-hero-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .nav-container {
        font-size: 0.65rem;
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .b2b-banner-slider .b2b-hero-banner {
        height: 250px;
        padding: 1rem 1.25rem;
    }
    .b2b-hero-text {
        width: 40%;
        height: 10%;
        /* margin-left: 10%; */
        margin-right: 50%;
    }
    .b2b-hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .b2b-order-btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    .b2b-filters-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .b2b-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .b2b-section-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    .b2b-pagination .page-link {
        min-width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .b2b-pagination {
        gap: 0.35rem;
    }
    .b2b-pagination .page-arrow {
        height: 34px;
        padding: 0 0.5rem;
        font-size: 0.78rem;
        border-radius: 0.5rem;
    }
    .b2b-pagination .page-link {
        min-width: 28px;
        height: 34px;
        font-size: 0.8rem;
        border-radius: 0.5rem;
    }
    .b2b-pagination .page-dots {
        height: 34px;
        min-width: 18px;
        font-size: 0.8rem;
    }
   
}

@media screen and (max-width: 360px) {

    .b2b-hero-container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .b2b-banner-slider .b2b-hero-banner {
        height: 210px;
        padding: 0.75rem 1rem;
    }
    .b2b-hero-text {
        /* max-width: 200px; */
        width: 50%;
        height: 10%;
        /* margin-left: 10%; */
        margin-right: 45%;
    }
    .b2b-hero-text h1 {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }
    .b2b-order-btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.65rem;
    }
    .b2b-filters-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .b2b-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .b2b-card {
        padding: 0.75rem;
    }
    .b2b-card-img {
        height: 130px;
    }
    .b2b-product-title {
        font-size: 0.8rem;
        min-height: auto;
    }
    .b2b-price {
        font-size: 0.75rem;
    }
    .b2b-pagination {
        gap: 0.25rem;
    }
    .b2b-pagination .page-link {
        min-width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .b2b-pagination {
        gap: 0.25rem;
    }
    .b2b-pagination .page-arrow {
        height: 30px;
        padding: 0 0.4rem;
        font-size: 0.7rem;
    }
    .b2b-pagination .page-link {
        min-width: 24px;
        height: 30px;
        font-size: 0.75rem;
    }
    .b2b-pagination .page-dots {
        height: 30px;
        min-width: 15px;
        font-size: 0.75rem;
    }
    
}

@media screen and (max-width: 320px) {
    
    .b2b-hero-container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .b2b-banner-slider .b2b-hero-banner {
        height: 210px;
        padding: 0.75rem 1rem;
    }
    .b2b-hero-text {
        /* max-width: 200px; */
        width: 50%;
        height: 10%;
        /* margin-left: 10%; */
        margin-right: 40%;
    }
    .b2b-hero-text h1 {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }
    .b2b-order-btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.65rem;
    }
    .b2b-filters-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .b2b-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .b2b-card {
        padding: 0.75rem;
    }
    .b2b-card-img {
        height: 130px;
    }
    .b2b-product-title {
        font-size: 0.8rem;
        min-height: auto;
    }
    .b2b-price {
        font-size: 0.75rem;
    }
    .b2b-pagination {
        gap: 0.25rem;
    }
    .b2b-pagination .page-link {
        min-width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    .b2b-pagination {
        gap: 0.25rem;
    }
    .b2b-pagination .page-arrow {
        height: 30px;
        padding: 0 0.4rem;
        font-size: 0.7rem;
    }
    .b2b-pagination .page-link {
        min-width: 24px;
        height: 30px;
        font-size: 0.75rem;
    }
    .b2b-pagination .page-dots {
        height: 30px;
        min-width: 15px;
        font-size: 0.75rem;
    }

}