/* Assuming you have defined "prev-button" and "next-button" classes in your style.css */

/* Position the buttons on the sides */
/* .prev-button,
.next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
} */

.prev-button {
    left: -5px; /* Adjust the value as needed */
}

.next-button {
    right: -55px; /* Adjust the value as needed */
}

/* Style the arrow images */
.prev-button img,
.next-button img {
    width: 30px; /* Adjust the size as needed */
    height: 30px; /* Adjust the size as needed */
}

/* Center the arrows vertically */
.prev-button img,
.next-button img {
    display: block;
    margin: 0 auto;
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: #f4ece4;
    opacity: 100% !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    color: #fff;
    background: #f4ece4;
    opacity: 50%;
}

.banner-swiper {
    position: relative;
}

.pagination-style {
    z-index: 4;
    position: absolute !important;
    bottom: 2% !important; /* Adjust this value to control the vertical position */
    left: 50% !important;
    transform: translateX(-50%) !important;
}

#cartList::-webkit-scrollbar {
    -webkit-appearance: none;
}
#cartList::-webkit-scrollbar:vertical {
    width: 11px;
}
#cartList::-webkit-scrollbar:horizontal {
    height: 5px;
}
#cartList::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white; /* should match background, can't be transparent */
    background-color: rgba(0, 0, 0, 0.5);
}
#cartList::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 8px;
}

/* The container */
.radio-input-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

/* Hide the browser's default radio button */
.radio-input-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: relative;
    height: 25px;
    width: 25px;
    border: 1px solid #bbb1af;
    border-radius: 50%;
    margin-right: 10px; /* Adjust this value as needed */
}

/* On mouse-over, add a grey background color */
.radio-input-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-input-container input:checked ~ .checkmark {
    background-color: #f4ece4;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%);
    width: 18px; /* Adjust this value as needed */
    height: 18px; /* Adjust this value as needed */
    border-radius: 50%;
    background: #bbb1af;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-input-container input:checked ~ .checkmark::before {
    display: block;
}

.max-w-screen-2xl {
    max-width: 1536px;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-2xl {
    max-width: 42rem;
}

body {
    position: absolute;
    width: 99vw;
}

.filament-notifications-notification {
    width: 80%;
    max-width: 350px;
}

.filament-notifications-title {
    font-weight: 700 !important;
    font-size: 16px !important;
}

.filament-button {
    color: white !important;
    background-color: rgb(67, 53, 51) !important;
    border: 0px !important;
}

label > span.text-sm {
    font-size: 16px !important;
}

@media (min-width: 969px) {
    .md\:max-w-fit {
        max-width: fit-content !important;
    }
}
