.product-search-area {
    padding: 10px 20px;
    background-color: #EEF6EB;
    border-radius: 30px
}

.product-slider {
    display: flex;
    overflow: hidden;
}

.product-slider .product {
    flex: 0 0 50%; /* Default: 2 items per row (mobile view) */
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .product-slider .product {
        flex: 0 0 25%; /* Show 4 items per row on larger screens */
    }
}

.daily-special-slider {
    display: flex;
    overflow: hidden;
}

.daily-special-slider .product {
    flex: 0 0 50%; /* Default: 2 items per row (mobile view) */
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .daily-special-slider .product {
        flex: 0 0 33.33%; /* Show 4 items per row on larger screens */
    }
}


.slider-container {
    position: relative;
}

.slider-container button {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-container .prev-btn {
    left: 0;
}

.slider-container .next-btn {
    right: 0;
}

.theme-primary-color {
    background-color: rgb(241, 84, 18);
    padding: 7px 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.theme-italic-heading {
    font-size: 45px;
    font-family: 'Poppins', sans-serif !important;
    font-style: normal;
    font-weight: 600;
    color: black;
    letter-spacing: 0.5px;
}

.theme-italic-heading-italic {
    font-size: 45px;
    font-family: 'Dancing Script', cursive !important;
    font-style: normal;
    font-weight: 800;
    color: #000000;
    letter-spacing: 1px;
}

.theme-italic-para {
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #484747;
    margin-top: 10px;
}

.theme-product-name-font {
    font-family: 'Barlow', sans-serif !important;
    font-size: 20px;
    font-weight: 700;
    color: #231f40 !important;
    text-decoration: none;
    text-align: center;
    text-transform: capitalize;
    margin: 10px 0px 5px;
    transition: all linear .3s;
    display: block;
}

.action-button {
    color: #007BFF;
    font-weight: bold;
}

.disabled-button {
    color: #007BFF;
    font-weight: bold;
    opacity: 0.5;
}

/* Responsive Font Size for Mobile */
@media screen and (max-width: 768px) {
    .theme-product-name-font {
        font-size: 25px !important;
    }
}

@media screen and (max-width: 480px) {
    .theme-product-name-font {
        font-size: 25px !important;
    }
}


.theme-category-label {
    font-family: 'Barlow', sans-serif !important;
    position: absolute;
    bottom: 15px;
    right: -20px;
    width: calc(100% - 5px);
    background: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 5px 10px;
    transform: translateY(50%);
    border-radius: 10px 10px 0 0;
    opacity: 0.8;
}

.theme-category-label-offer {
    font-family: 'Barlow', sans-serif !important;
    position: absolute;
    bottom: 15px;
    right: -20px;
    width: calc(100% - 50px);
    background: #f6e211;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 5px 10px;
    transform: translateY(50%);
    border-radius: 10px 10px 0 0;
    opacity: 0.9;
}

.sample-image-label {
    font-family: 'Barlow', sans-serif !important;
    position: absolute;
    bottom: 180px;
    width: calc(100% - 150px);
    color: #e8dcdc;
    font-size: 8px;
    font-weight: 600;
    text-align: center;
    padding: 5px 10px;
    transform: translateY(50%);
    opacity: 0.9;
}

.sample-image-label p {
    font-size: 13px;
}

.action-button {
    background-color: #007BFF;
    color: #FFFFFF;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.action-button:hover {
    background-color: #0056b3;
}

.disabled-button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

h2 {
    font-size: 24px; /* Default for desktop */
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 20px !important; /* Force smaller font for tablets */
    }
}

@media screen and (max-width: 480px) {
    h2 {
        font-size: 20px !important; /* Force smaller font for mobile */
    }
}


.order-info {
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* Light white with slight transparency */
    color: #333; /* Darker text for contrast */
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap; /* Ensures that it wraps on mobile */
}


/* Left side: Order Placement info */
.order-placement {
    flex: 1;
    min-width: 350px; /* Keeps the left side from getting too narrow */
    text-align: center;
}

/* Right side: Address and Contact Details */
.address-contact {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

/* Highlight text for order date */
.highlight {
    color: #d39e00;
    font-weight: bold;
    font-size: 13px;
}

/* Order Message */
.order-message {
    font-size: 12px;
    font-style: italic;
    color: #555;
}

/* Change Date Message */
.order-change-message {
    font-size: 10px;
    color: #444;
    margin-top: 5px;
    font-weight: 500;
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    .order-info {
        flex-direction: column; /* Stacks the order and address sections */
        align-items: center;
    }

    .order-placement, .address-contact {
        text-align: center;
        width: 100%;
        margin-bottom: 15px; /* Adds space between sections on mobile */
    }
}

@media screen and (max-width: 480px) {
    .order-placement p, .address-contact p {
        font-size: 12px; /* Reduce font size on small screens */
    }
}


.white-info-space {
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* Light white with slight transparency */
    color: #333; /* Darker text for contrast */
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap; /* Ensures that it wraps on mobile */
    max-width: 100%;
}


.btn-group-custom {
    display: flex;
    flex-wrap: wrap; /* Ensures wrapping on small screens */
    justify-content: center; /* Centers buttons */
    padding: 5px;
    background-color: #f8f9fa;
    border-radius: 50px;
    max-width: 100%;
}

.btn-group-custom .btn {
    flex: 1; /* Makes buttons equal width */
    min-width: 50px; /* Prevents buttons from being too small */
    font-size: 12px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    white-space: nowrap; /* Prevents text from wrapping */
}

.btn-group-custom .btn-dark {
    background-color: #343a40;
    color: white;
}

.btn-group-custom .btn-light {
    background-color: white;
    color: #343a40;
    border: 1px solid #ddd;
}

.btn-group-custom .btn:hover {
    background-color: #212529;
    color: white;
}

@media (max-width: 576px) {
    .btn-group-custom {
        flex-direction: column; /* Stacks buttons on small screens */
        width: 100%;
    }

    .btn-group-custom .btn {
        width: 100%;
        margin-bottom: 5px; /* Adds spacing between stacked buttons */
    }
}
