/* Extra Styles for Bargain Bottles */

/* Toast Notifications */
#toast-container .toast-progress { 
    background: var(--toast-accent) !important; 
}

#toast-container .toast .toast-close-button:hover { 
    color: var(--toast-accent) !important; 
}

/* Header Styles */
.header-default {
    background: #fac705 !important;
}

.logo {
    width: 100px !important;
}

/* Slideshow Styles */
.tf-slideshow.style-4 {
    background-color: #d9d8d4 !important;
}

/* Navigation Styles */
.box-nav-ul .item-link {
    display: flex !important;
    gap: 4px !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Header Navigation Centering */
.header-default .box-nav-ul {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Top Bar Centering */
.tf-topbar .topbar-left,
.tf-topbar .topbar-right {
    display: flex !important;
    align-items: center !important;
}

/* Nav Icons Centering */
.header-default .nav-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: end !important;
}

/* Cart Count Styling - Fixed for all pages including index */
.header-default .nav-icon .count-box,
.count-box.text-button-small,
.nav-cart .count-box,
.js-cart-count {
    display: flex !important;
    visibility: visible !important;
    text-align: center !important;
    line-height: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    background-color: var(--Primary) !important;
    color: var(--White) !important;
    top: -4px !important;
    right: -4px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    z-index: 10 !important;
}

/* Force cart badge to stay visible */
.cart-badge-active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Prevent other scripts from hiding cart count */
.count-box[style*="display: none"],
.js-cart-count[style*="display: none"] {
    display: flex !important;
    visibility: visible !important;
}

/* Progress Bar */
/*.tf-progress-bar .value {*/
/*    width: 0% !important;*/
/*}*/

/* Error/Success Messages */
#zipcode-message.error.mb_12 {
    display: none !important;
}

#zipcode-success.success.mb_12 {
    display: none !important;
}

/* Loading State */
.loading-content {
    padding: 50px !important;
    text-align: center !important;
}

/* General Text Centering Fixes */
.text-center {
    text-align: center !important;
}

/* Button Centering */
.tf-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Product Info Centering */
.tf-product-info-choose-option {
    text-align: center !important;
}

/* Mini Cart Centering */
.tf-mini-cart-bottom-wrap {
    text-align: center !important;
}

.tf-mini-cart-bottom-wrap .tf-cart-totals-discounts {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Modal Centering */

/* Form Centering */
.form-group {
    text-align: center !important;
}

/* Icon Centering */
.icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Related Products Card Styling - Match shop.php design */
.related-products .card-product {
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
}

.related-products .card-product:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    transform: translateY(-2px) !important;
}

.related-products .card-product-wrapper {
    position: relative !important;
    overflow: hidden !important;
}

.related-products .card-product-wrapper .image-wrap {
    display: block !important;
    width: 100% !important;
    height: 250px !important;
    position: relative !important;
    background: #f8f9fa !important;
}

.related-products .card-product-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease !important;
}

.related-products .card-product:hover .img-hover {
    transform: scale(1.05) !important;
}

.related-products .on-sale-wrap {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 2 !important;
}

.related-products .on-sale-item {
    background: #ff4444 !important;
    color: white !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.related-products .list-product-btn {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.related-products .card-product:hover .list-product-btn {
    opacity: 1 !important;
}

.related-products .card-product-info {
    padding: 15px !important;
}

.related-products .card-product-info .title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-decoration: none !important;
    display: block !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

.related-products .card-product-info .title:hover {
    color: var(--Primary) !important;
}

.related-products .variant-picker-item {
    margin-bottom: 10px !important;
}

.related-products .variant-picker-values {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.related-products .variant-picker-values input[type="radio"] {
    display: none !important;
}

.related-products .variant-picker-values .size-btn {
    padding: 6px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-size: 12px !important;
    background: #fff !important;
}

.related-products .variant-picker-values .size-btn:hover,
.related-products .variant-picker-values input[type="radio"]:checked + .size-btn {
    border-color: var(--Primary) !important;
    background: var(--Primary) !important;
    color: white !important;
}

.related-products .price {
    margin-bottom: 15px !important;
}

.related-products .current-price {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #333 !important;
}

.related-products .old-price {
    font-size: 14px !important;
    color: #999 !important;
    text-decoration: line-through !important;
    margin-right: 8px !important;
}

.related-products .shop_button {
    width: 100% !important;
}

.related-products .btn-main-product {
    width: 100% !important;
    padding: 12px 20px !important;
    background: #fac705 !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-decoration: none !important;
    display: block !important;
    transition: all 0.3s ease !important;
}

.related-products .btn-main-product:hover {
    background: #333 !important;
    transform: translateY(-1px) !important;
}

/* Pagination Styling */
.pagination-container {
    margin-top: 40px !important;
    padding: 20px 0 !important;
}

.pagination-info {
    color: #666 !important;
    font-size: 14px !important;
    margin-top: 15px !important;
}

#pagination-controls {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#pagination-controls li {
    display: inline-block !important;
    margin: 0 2px !important;
}

.pagination-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    color: #333 !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
}

.pagination-item:hover {
    background: var(--Primary) !important;
    color: white !important;
    border-color: var(--Primary) !important;
    transform: translateY(-1px) !important;
}

#pagination-controls li.active .pagination-item {
    background: var(--Primary) !important;
    color: white !important;
    border-color: var(--Primary) !important;
}

/* Active state for div elements (current page) */
#pagination-controls li.active div.pagination-item {
    background: var(--Primary) !important;
    color: white !important;
    border-color: var(--Primary) !important;
    cursor: default !important;
}

/* Disable hover for active div */
#pagination-controls li.active div.pagination-item:hover {
    background: var(--Primary) !important;
    color: white !important;
    transform: none !important;
}

.pagination-prev,
.pagination-next {
    width: auto !important;
    padding: 0 12px !important;
}

.pagination-prev i,
.pagination-next i {
    font-size: 14px !important;
}

/* Ellipsis styling */
#pagination-controls li span.pagination-item {
    cursor: default !important;
    background: #f8f9fa !important;
    color: #6c757d !important;
    border-color: #dee2e6 !important;
}

#pagination-controls li span.pagination-item:hover {
    background: #f8f9fa !important;
    color: #6c757d !important;
    transform: none !important;
}

/* Product item pagination visibility */
.product-item {
    transition: opacity 0.3s ease !important;
}

.product-item.pagination-visible {
    opacity: 1 !important;
}

/* Smooth transitions for pagination */
.tf-product .row {
    transition: all 0.3s ease !important;
}
.box-nav-ul .item-link {
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 18px;
    line-height: 22px;
    position: relative;
    font-weight: 600;
    color: white;
}
.title.mb_12 {
    text-align: left;
}

/* ========== HEADER CONTROLS (from header1.php) ========== */

.bb-header-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

/* PROMINENT SEARCH BAR - Main Focus */
.bb-search-wrapper {
    position: relative;
    flex: 1;
    max-width: 100%;
}

.bb-search-input {
    width: 100%;
    padding: 14px 60px 14px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bb-search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.bb-search-input:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.bb-search-input:focus {
    border-color: #fac705;
    box-shadow: 0 0 0 4px rgba(250, 199, 5, 0.15), 0 4px 16px rgba(250, 199, 5, 0.1);
    background: #ffffff;
}

/* Search Icon Button - Clickable Submit */
.bb-search-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bb-search-icon.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bb-search-icon:hover {
    color: #6b7280;
    transform: translateY(-50%) scale(1.1);
}

.bb-search-wrapper:focus-within .bb-search-icon {
    color: #fac705;
}

.bb-search-icon:active {
    transform: translateY(-50%) scale(0.95);
}

/* Close Button - Appears when typing */
.bb-search-clear {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 0;
}

.bb-search-clear.visible {
    opacity: 1;
    visibility: visible;
}

.bb-search-clear:hover {
    background: #dc2626;
    transform: translateY(-50%) scale(1.1);
}

.bb-search-clear:active {
    transform: translateY(-50%) scale(0.95);
}

/* SUBTLE STORE SELECTOR - Secondary Element */
.bb-store-wrapper {
    position: relative;
    min-width: 200px;
    flex-shrink: 0;
}

.bb-store-select {
    width: 100%;
    padding: 10px 32px 10px 36px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.bb-store-select:hover {
    background: #ffffff;
    border-color: #d1d5db;
}

.bb-store-select:focus {
    border-color: #fac705;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(250, 199, 5, 0.1);
}

.bb-store-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    transition: color 0.3s ease;
}

.bb-store-wrapper:hover .bb-store-icon {
    color: #6b7280;
}

.bb-store-wrapper:focus-within .bb-store-icon {
    color: #fac705;
}

.bb-store-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    transition: all 0.3s ease;
}

.bb-store-wrapper:hover .bb-store-arrow {
    color: #6b7280;
}

.bb-store-wrapper:focus-within .bb-store-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: #fac705;
}

/* Responsive */
@media (max-width: 1199px) {
    .bb-header-controls {
        flex-direction: column;
    }
    .bb-search-wrapper,
    .bb-store-wrapper {
        max-width: 100%;
        width: 100%;
    }
    .bb-store-wrapper {
        min-width: 100%;
    }
}

/* ========== STICKY CART WITH SCROLL (from header1.php) ========== */

/* Sticky cart with scroll - hide on mobile */
.stikey_with_scroll {
    position: fixed;
    top: 50%;
    right: 0;
    background: #636060;
    padding: 10px 17px;
    color: white;
    z-index: 999;
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.stikey_with_scroll:hover {
    background: #4a4747;
    padding-right: 20px;
}

.stikey_with_scroll li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.stikey_with_scroll li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.stikey_with_scroll li a .icon-cart {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.stikey_with_scroll:hover li a .icon-cart {
    transform: scale(1.1);
}

.stikey_with_scroll li .count-box {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    background: #ff6b6b;
    color: white;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 5px;
    border: 2px solid #636060;
}

@media (max-width: 767px) {
    .stikey_with_scroll {
        display: none !important;
    }
}

/* ========== PRODUCT CARD & BEST SELLER SECTION (from index.php) ========== */

/* Product Card Styles - Consistent across all pages */
.current-price {
    font-weight: 900;
    font-size: 20px;
}

.row {
    margin-right: 0px;
    margin-left: 0px;
}

/* Section Background */
.best-seller-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 50px 0 !important;
}

/* Banner Wrapper */
.best-seller-banner-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.best-seller-banner-wrapper .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Best Seller Ribbon on Product Cards */
.best-seller-ribbon {
    position: absolute;
    top: 15px;
    right: -56px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #000;
    padding: 6px 45px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    transform: rotate(47deg);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.6);
    z-index: 100 !important;
    text-transform: uppercase;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.best-seller-ribbon .ribbon-icon {
    font-size: 13px;
    margin-right: 4px;
    color: #fff;
}

/* Product Card Enhancements for Best Sellers */
.best-seller-product {
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    background: white;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Fix z-index stacking for best seller products */
.best-seller-product .card-product-wrapper {
    position: relative;
    z-index: 1;
}

.best-seller-product .on-sale-wrap {
    z-index: 5;
}

.best-seller-product .card-product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 15px;
}

.best-seller-product .shop_button {
    margin-top: auto;
    padding-top: 15px;
}

.best-seller-product:hover {
    border-color: #ffc107;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Hide swiper pagination in Best Sellers section */
.best-seller-section .swiper-pagination,
.best-seller-section .sw-pagination-products,
.best-seller-section .sw-pagination-mb {
    display: none !important;
}

/* Ensure navigation buttons are visible */
.best-seller-section .swiper-button-next,
.best-seller-section .swiper-button-prev,
.best-seller-section .nav-next-products,
.best-seller-section .nav-prev-products {
    display: flex !important;
}

/* Equal height for all best seller cards */
.best-seller-section .swiper-slide {
    height: auto;
    display: flex;
}

.swiper-slide .best-seller-product {
    height: 100%;
    width: 100%;
}

/* Ensure all product images have same height */
.best-seller-product .card-product-wrapper .image-wrap {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.best-seller-product .card-product-wrapper .image-wrap img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .best-seller-product .card-product-wrapper .image-wrap {
        height: 240px;
    }
    
    /* Ensure pagination is hidden on tablet too */
    .best-seller-section .wrap-pagination,
    .best-seller-section .sw-dots {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .best-seller-section {
        padding: 40px 0 !important;
    }
    
    .best-seller-ribbon {
        font-size: 10px;
        padding: 5px 40px;
        right: -60px;
    }
    
    .best-seller-product:hover {
        transform: translateY(-3px);
    }
    
    .best-seller-banner-wrapper {
        margin-bottom: 20px;
    }
    
    .best-seller-product .card-product-wrapper .image-wrap {
        height: 220px;
    }
    
    /* Ensure all pagination elements are hidden on mobile */
    .best-seller-section .wrap-pagination,
    .best-seller-section .sw-dots,
    .best-seller-section .d-lg-none {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .best-seller-ribbon {
        font-size: 9px;
        padding: 4px 35px;
        right: -56px;
    }
    
    .best-seller-product .card-product-wrapper .image-wrap {
        height: 200px;
    }
}

/* ========== CUSTOM PAGINATION STYLES (from index.php) ========== */

/* Custom Pagination Styles */
#recommended-pagination {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    overflow: hidden;
}

.paginationjs-theme-custom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paginationjs-theme-custom .paginationjs-pages {
    width: 100%;
    display: flex;
    justify-content: center;
}

.paginationjs-theme-custom .paginationjs-pages ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.paginationjs .paginationjs-pages li {
    float: left;
    border: none;
    border-right: none;
    list-style: none;
}

.paginationjs-theme-custom .paginationjs-pages li {
    margin: 0;
    flex-shrink: 0;
    border: none !important;
}

.paginationjs-theme-custom .paginationjs-pages li > a,
.paginationjs-theme-custom .paginationjs-go-input > input[type="text"] {
    padding: 10px 16px;
    min-width: 44px;
    height: 44px !important;
    border: 2px solid #e0e0e0;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.paginationjs-theme-custom .paginationjs-pages li > a:hover {
    background: #f8f8f8;
    border-color: #636060;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.paginationjs-theme-custom .paginationjs-pages li.active > a {
    background: linear-gradient(135deg, #fac705 0%, #fac705 100%) !important;
    color: white;
    border-color: #c39c07;
    box-shadow: 0 4px 12px rgba(99, 96, 96, 0.3);
    transform: translateY(-2px);
}

.paginationjs-theme-custom .paginationjs-pages li.active > a:hover {
    background: linear-gradient(135deg, #4a4747 0%, #636060 100%);
}

.paginationjs-theme-custom .paginationjs-pages li.disabled > a {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    background: #f5f5f5;
    border-color: #e0e0e0;
}

.paginationjs-theme-custom .paginationjs-prev,
.paginationjs-theme-custom .paginationjs-next {
    font-weight: 600;
}

.paginationjs-theme-custom .paginationjs-prev > a,
.paginationjs-theme-custom .paginationjs-next > a {
    padding: 10px 20px;
    min-width: auto;
}

/* Ellipsis styling */
.paginationjs-theme-custom .paginationjs-ellipsis {
    padding: 10px 8px;
    color: #999;
    pointer-events: none;
}

/* Responsive Tablet */
@media (max-width: 991px) {
    #recommended-pagination {
        margin: 30px auto;
        padding: 0 10px;
    }
    
    .paginationjs-theme-custom .paginationjs-pages li > a {
        padding: 8px 12px;
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .paginationjs-theme-custom .paginationjs-prev > a,
    .paginationjs-theme-custom .paginationjs-next > a {
        padding: 8px 16px;
    }
    
    .paginationjs-theme-custom .paginationjs-pages ul {
        gap: 6px;
    }
}

/* Responsive Mobile */
@media (max-width: 576px) {
    #recommended-pagination {
        margin: 25px auto;
        padding: 0 5px;
    }
    
    .paginationjs-theme-custom .paginationjs-pages li > a {
        padding: 6px 10px;
        min-width: 36px;
        height: 36px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .paginationjs-theme-custom .paginationjs-prev > a,
    .paginationjs-theme-custom .paginationjs-next > a {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .paginationjs-theme-custom .paginationjs-pages ul {
        gap: 4px;
    }
    
    /* Hide text in prev/next buttons on very small screens, show only icons */
    .paginationjs-theme-custom .paginationjs-prev > a,
    .paginationjs-theme-custom .paginationjs-next > a {
        padding: 6px 10px;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .paginationjs-theme-custom .paginationjs-pages li > a {
        padding: 5px 8px;
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .paginationjs-theme-custom .paginationjs-pages ul {
        gap: 3px;
    }
}