/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.8s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1 {
    font-weight: 400 !important;
    font-family: "Poppins", sans-serif;
}

h2,
h3,
h4,
h5,
h6,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif !important;
}

.my-6 {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.py-6 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.wow,
.animated {
    animation-duration: 2s !important;
}

/*** Button Start ***/
.btn.btn-primary {
    border: 0;
}

.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 38px;
    height: 38px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
/*** Button End ***/

/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-weight: 600;
    font-size: 20px;
    transition: 0.5s;
    color: #052c65;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #1572e8;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: 0.5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}

.dropdown .dropdown-menu a:hover {
    color: #052c65 !important;
}

#searchModal .modal-content {
    background-color: rgba(255, 255, 255, 0.95);
}
/*** Navbar End ***/

/*** Events Start ***/
.event .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(212, 167, 98, 0.7);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.event .event-img:hover .event-overlay {
    opacity: 1;
}
/*** Events End ***/

/*** service start ***/
.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.service-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: var(--bs-primary);
    border-radius: 8px;
    transition: 1s;
}

.service-item:hover .service-content::after {
    height: 100%;
    opacity: 1;
}

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
}

.service-item .service-content-icon i,
.service-item .service-content-icon p {
    transition: 1s;
}

.service-item:hover .service-content-icon i {
    color: var(--bs-dark) !important;
}

.service-item:hover .service-content-icon p {
    color: var(--bs-white);
}

.service-item:hover .service-content-icon a.btn-primary {
    background: var(--bs-white);
    color: var(--bs-dark);
}

.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;
}
/*** Services End ***/

/*** Menu Start ***/
.menu .nav-item a.active {
    background: #4591ff!important;
    font-weight: bold !important;
}

.menu .menu-item .border-bottom {
    border-bottom-style: dashed !important;
}
/*** Menu End ***/

/*** Youtube Video start ***/
.video {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(
            rgba(254, 218, 154, 0.1),
            rgba(254, 218, 154, 0.1)
        ),
        url(../img/fact.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-white);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/

/*** Blog Start ***/
.blog-item {
    position: relative;
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.3);
}

.blog-item .blog-content {
    position: relative;
    transform: translateY(-50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.blog-item .blog-content a.btn h5 {
    transition: 0.5s;
}

.blog-item:hover .blog-content a.btn h5 {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/

/*** Team Start ***/
.team-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-item .team-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.team-item .team-icon .share-link {
    opacity: 0;
    transition: 0.9s;
}

.team-item:hover .share-link {
    opacity: 1;
}

.team-item .team-content {
    transition: 0.9s;
}

.team-item:hover .team-content {
    background: var(--bs-primary) !important;
    color: var(--bs-dark) !important;
}

.team-item .team-content h4,
.team-item .team-content p {
    transition: 0.5s;
}

.team-item:hover .team-content h4 {
    color: black !important;
}

.team-item:hover .team-content p {
    color: black !important;
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial-item {
    border: 1px solid var(--bs-primary);
    padding: 20px 20px;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel.owl-rtl .testimonial-item {
    direction: ltr !important;
}
/*** testimonial End ***/

/*** Contact start ***/
.contact-form {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

/*** Contact End ***/

/*** Footer Start ***/
.footer .footer-item a.text-body:hover {
    color: #1572e8 !important;
}
/*** Footer End ***/

/* my styles */
/* Badge styling */
.cart-badge {
    position: absolute;
    top: -22px;
    right: -13px;
    background-color: red;
    color: white;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: shake 0.1s ease-in-out;
}

.cart-badge-2 {
    position: absolute;
    top: -12px;
    right: -2px;
    background-color: red;
    color: white;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: shake 0.1s ease-in-out;
}
/* Bounce animation for the badge */
@keyframes shake {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Trigger animation class */
.bounce-once {
    animation: bounce 0.5s ease-in-out;
}

/* Ensure proper spacing for the cart icon */
.cart-container {
    margin-right: 45px;
    cursor: pointer;
}

.small-select {
    width: 100px !important;
    font-size: 16px;
    text-align: left;
    appearance: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
}

.btn-sm {
    font-size: 0.8rem;
    padding: 4px 8px;
}

.wishlist-badge {
    position: absolute;
    top: -11px;
    right: 2px;
    background-color: red;
    color: white;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: shake 0.1s ease-in-out;
}

@keyframes shake {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Trigger animation class */
.bounce-once {
    animation: bounce 0.5s ease-in-out;
}

/* wishlis items styles  */
.wishlist-item {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.wishlist-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    width: 100%;
    max-width: 320px;
}

.wishlist-card:hover {
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.wishlist-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.wishlist-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.wishlist-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555;
}

.wishlist-info i {
    color: #3498db;
}

.delete-form {
    margin: 0;
}

.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #e74c3c;
    font-size: 18px;
    transition: color 0.2s;
}

.delete-btn:hover {
    color: #c0392b;
}

.add-to-cart-btn {
    background: #16a085;
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.add-to-cart-btn:hover {
    background: #13896e;
}
.wishlist-item {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.wishlist-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    width: 100%;
    max-width: 320px;
}

.wishlist-card:hover {
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.wishlist-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.wishlist-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.wishlist-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555;
}

.wishlist-info i {
    color: #3498db;
}

.wishlist-actions {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.delete-form {
    margin: 0;
}

.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #e74c3c;
    font-size: 18px;
    transition: color 0.2s;
}

.delete-btn:hover {
    color: #c0392b;
}

.add-to-cart-btn {
    background: #16a085;
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    margin-left: 15px;
}

.add-to-cart-btn:hover {
    background: #13896e;
}

/* Hide number input arrows in Chrome, Safari, Edge, and Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide number input arrows in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.alert {
    border: 0;
    position: relative;
    padding: 0.95rem 1.25rem;
    border-radius: 1px;
    color: inherit;
    background-color: #fff;
    -webkit-box-shadow: 1px 1px 14px 0 rgba(18, 38, 63, 0.26);
    -moz-box-shadow: 1px 1px 14px 0 rgba(18, 38, 63, 0.26);
    box-shadow: 1px 1px 14px 0 rgba(18, 38, 63, 0.26);
}

.alert [data-notify="icon"] {
    display: block;
}

.alert [data-notify="icon"]::before {
    line-height: 35px;
    font-size: 22px;
    display: block;
    left: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
}

.alert [data-notify="title"] {
    display: block;
    color: #2b2b2b;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.alert [data-notify="message"] {
    font-size: 13px;
    color: #908e8e;
}

.alert .close {
    background: rgba(255, 255, 255, 0.8);
    width: 25px;
    height: 25px;
    line-height: 25px;
    top: 12px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-black {
    border-left: 4px solid #1a2035;
}

.alert-black [data-notify="icon"]:before {
    background: #1a2035;
}

.alert-primary {
    border-left: 4px solid #1572e8;
}

.alert-primary [data-notify="icon"]:before {
    background: #1572e8;
}

.alert-secondary {
    border-left: 4px solid #6861ce;
}

.alert-secondary [data-notify="icon"]:before {
    background: #6861ce;
}

.alert-info {
    border-left: 4px solid #48abf7;
}

.alert-info [data-notify="icon"]:before {
    background: #48abf7;
}

.alert-success {
    border-left: 4px solid #31ce36;
}

.alert-success [data-notify="icon"]:before {
    background: #31ce36;
}

.alert-warning {
    border-left: 4px solid #ffad46;
}

.alert-warning [data-notify="icon"]:before {
    background: #ffad46;
}

.alert-danger {
    border-left: 4px solid #f25961;
}

.alert-danger [data-notify="icon"]:before {
    background: #f25961;
}

.cart__item-block .cart__item .cart__punit {
    max-width: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jsPrice {
    font-size: 1.5em !important;
    color: black;
}

.cart__compare-price {
    display: block;
    font-size: 1.2em !important;
    text-decoration: line-through;
    color: black;
}

.trash-button {
    border: none;
    cursor: pointer;
    color: white;
    padding: 0;
    background-color: #e74c3c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.order-summary {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.savings {
    color: #ef0000 !important;
    /* Bootstrap Red */
    font-weight: bold;
    background: rgba(239, 0, 0, 0.1);
    padding: 6px;
}

.adding {
    color: green !important;
    /* Bootstrap Red */
    font-weight: bold;
    background: rgb(81 255 79 / 10%);
    padding: 6px;
}

span {
    color: black;
}

.cart-container {
    position: relative;
    display: inline-block;
}

/* Hide Bootstrap dropdown arrow */
#messageDropdown::after {
    display: none !important;
}

/* Ensure message dropdown is hidden by default */
.messages-notif-box {
    display: none;
}

.messages-notif-box.show {
    display: block;
}

/* Ensure dropdown is fully visible within screen */
#mobileMessageDropdown {
    right: -13pc;
    top: 4pc;
    left: auto; /* Prevent it from overflowing on the left */
    transform: translateX(-50%); /* Center it under the icon */
    min-width: 250px; /* Ensure consistent width */
    max-width: 90vw; /* Prevent it from overflowing on small screens */
}

/* Optional: Adjust dropdown arrow (if needed) */
#mobileMessageDropdown::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: #fff;
}

/* welomeblade menu design  */
/* Menu Item */
.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Spacing between image and content */
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Image Styling (Fixed Size) */
.menu-item .img-responsive {
    width: 150px;
    object-fit: cover;
    position: relative;
    /* Prevents image shrinking */
}

/* Responsive Adjustments */
/* Desktop View - Categories Side by Side */
.category-tabs-wrapper {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
    padding-top: 10px;
}

.category-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    justify-content: center;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.nav-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    margin-right: 10px;
}

.dish-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.dish-card:hover {
    transform: scale(1.02);
}

/* Make sure the button appears properly */
.dish-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Darken the background on hover */
/* Darken background on hover */
.overlay-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark overlay */
    border-radius: 10px;
}

/* Show View Button */
.view-button {
    display: inline-block;
    background: black;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 10px;
    transition: background 0.3s ease-in-out;
    text-align: center;
}

/* View Button should appear on hover (desktop) & touch (mobile) */
.dish-card:hover .dish-overlay {
    opacity: 1;
}

/* Overlay Effect (Hidden on Mobile) */
.d-none.d-md-block {
    display: none !important;
    /* Hide overlay on mobile */
}

@media (min-width: 768px) {
    /* Desktop styles */
    .d-none.d-md-block {
        display: block !important;
        /* Show overlay on desktop */
    }

    .dish-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .overlay-effect {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

    .dish-card:hover .dish-overlay {
        opacity: 1;
    }
}

/* View Button (Always Visible on Mobile) */
.view-button {
    z-index: 2;
    position: relative;
    text-align: center;
    font-size: 14px;
}

/* Ensure View Button is always visible on mobile */
.d-inline.d-md-none {
    display: inline-block !important;
}

/* Mobile View - Side Scroll */
@media (max-width: 768px) {
    .category-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        scroll-padding-left: 15px;
        /* Ensures first category is visible */
        padding-left: 15px;
        justify-content: normal;
        /* Prevents cutoff */
    }

    .nav-item {
        flex: 0 0 auto;
        /* Prevent items from shrinking */
        scroll-snap-align: start;
    }

    .nav-item:first-child {
        margin-left: 5px;
        /* Ensures the first item is visible */
    }

    /* Hide scrollbar but allow smooth scrolling */
    .category-tabs::-webkit-scrollbar {
        display: none;
    }

    .category-tabs {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* pagiantion style */
.pagination-container {
    margin-top: 20px;
}

/* Pagination Flexbox */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    border-radius: 8px;
    gap: 10px; /* 🔹 Adds spacing between elements */
}

/* Page Number Buttons */
.page-item .page-link {
    color: #333;
    font-weight: 600;
    padding: 10px 16px;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

/* Add spacing between page numbers */
.page-item {
    margin: 0 6px; /* 🔹 Space around each page number */
}

/* Hover Effect */
.page-item .page-link:hover {
    background: #ff5722;
    color: #fff;
    border-color: #ff5722;
}

/* Active Page (Current Page) */
.page-item.active .page-link {
    background: #ff5722;
    color: #fff;
    border-color: #ff5722;
}

/* Disabled Button (Previous & Next) */
.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f0f0f0;
}

/* Custom Prev & Next Arrows */
.custom-prev,
.custom-next {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 6px;
}

/* 🔹 Next Button Styling (Make it Stand Out) */
.page-item .custom-next {
    background: #ff5722;
    color: #fff;
    font-weight: bold;
    border: 2px solid #ff5722;
    margin-left: 10px; /* 🔹 Adds spacing between numbers and Next arrow */
}

.page-item .custom-next:hover {
    background: #d84315;
    border-color: #d84315;
}

/* 🔹 Prev Button Styling */
.page-item .custom-prev {
    margin-right: 10px; /* 🔹 Adds spacing between numbers and Prev arrow */
}

/* 🔹 Next Button Disabled */
.page-item.disabled .custom-next {
    background: #ccc;
    border-color: #ccc;
    color: #777;
}
