﻿.breadscrumb-section {
    background-color: #f8f9fa;
    padding: 10px 0;
    font-family: Arial, sans-serif;
}

    .breadscrumb-section .breadscrumb-contain {
        padding: 10px 20px;
        border-radius: 5px;
    }

.breadcrumb {
    background: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb-item {
    display: inline-block;
}

    .breadcrumb-item a {
        text-decoration: none;
        color: #000;
        transition: color 0.2s ease-in-out;
    }

        .breadcrumb-item a:hover {
            color: #0056b3;
        }

    .breadcrumb-item.active {
        color: #000;
        font-weight: bold;
    }

    .breadcrumb-item i {
        margin-right: 5px;
        color: #000;
    }

@media (max-width: 768px) {
    .breadscrumb-section {
        padding: 5px 0;
    }

    .breadcrumb {
        font-size: 12px;
    }
}


.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: #000;
    content: var(--bs-breadcrumb-divider, "/");
}


.product-details-section {
    background-color: #f8f9fa;
    
}
    .product-details-section .row {
        display: flex;
        align-items: stretch;
        flex-wrap: wrap; /* Ensure proper wrapping on smaller screens */
    }


.product-image-box {
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position:relative;
}

.product-image-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 75%;
    height: 600px;
}

    .product-image-box img {
        max-width: 100%;
        width: 100%;
        height: 100%; /* Ensure it fills the height */
        object-fit: cover;
        border-radius: 8px;
    }
.product-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}



.product-details-box {
    width: 55% !important;
    height: 100%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Center align if smaller than the column */
}

@media(max-width:1024px) {
    

    .product-details-box {
        width: 90% !important;
    }

    .product-class {
        width: 50% !important;
    }
    .product-image-box {
        width: 60%;
        height: 340px;
    }
}

.product-title {
    display: flex;
    justify-content: left;
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.product-price {
    font-size: 24px;
    font-weight: 500;
    color: #079761;
    margin-bottom: 15px;
}

.product-description {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

@media screen and (max-width: 1200px) {
    .product-details-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .product-title {
        font-size: 24px;
    }

    .product-price {
        font-size: 22px;
    }

    .product-description {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {

    
    button.sub-image-button {
        padding: 0rem;
    }

    .product-title {
        font-size: 20px;
    }

    .product-price {
        font-size: 20px;
    }

    .product-description {
        font-size: 14px;
    }

    .col-lg-6 {
        flex: 0 0 100%;
    }
    
}


.product-class {
    flex: 0 0 auto;
    width: 40%;
}

.pickup-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: center;
    margin-top: 0px;
    margin-left: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 261px;
    height: 332px;
}
.product-info {
    text-align: left;
}



    .product-info-list li {
        font-size: 16px;
        color: #555;
        line-height: 4;
        margin-left: 20px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        padding-left: 0px;
    }
        .product-info-list li a {
            color: #079761;
            text-decoration: none;
            font-weight: 500;
            margin-left: 10px;
        }

            .product-info-list li a:hover {
                text-decoration: underline;
            }

        .product-info-list li:not(:last-child) {
            margin-bottom: 9px;
        }

@media screen and (max-width: 768px) {
    .pickup-box {
        padding: 15px;
    }

    .product-info-list li {
        font-size: 14px;
    }
}


.product-info-list li i.product-icons {
    margin-right: 10px;
    font-size: 20px;
    color: #000;
    display: inline-block;
    text-align: center;
}

.sub-image-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #ddd;
}

/* Sub-image button styling */
.sub-image-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}


        .sub-image-button img:hover {
            border-color: #000;
        }



/* Container for the entire product slider */
.product-slider-container {
    width: 100%;
    padding: 20px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

/* Slider container setup */
.product-slider {
    display: flex;
    justify-content: flex-start;
    animation: continuousSlide 30s linear infinite;
}

/* Styling for individual product images */
.product-img {
    width: 300px; /* Set width of each image */
    height: 300px; /* Set height of each image */
    object-fit: cover; /* Ensure images cover the area without distortion */
    margin-right: 20px;
    border-radius: 8px;
}

/* Continuous sliding animation */
@keyframes continuousSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Shop All Products button styling */
.shop-all-btn-container {
    text-align: center;
    margin-top: 20px;
}

.shop-all-btn {
    display: inline-block;
    padding: 10px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    background-color: #868589;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-decoration:none;
}

    .shop-all-btn:hover {
        background-color: #f7a422;
        border-color: #f7a422;
        color: white;
    }


.product-info-list {
    width: 100% !important;
    display: flex;
    list-style: none;
    flex-wrap: wrap; /* Allows items to wrap to the next line if necessary */
    gap: 24px !important; /* Adds space between items */
    list-style: none; /* Removes default list styling */
    padding-left: 0;
    margin: 0;
    justify-content: flex-start;
    padding: 1rem 0rem;
}

/* Scoped Styling for Product Tabs Section */
.product-tabs-section {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 30px 0;
    background-color: #f8f8f8;
}

    .product-tabs-section .nav-tabs {
        border-bottom: 2px solid #ddd;
        
        margin-bottom: 20px;
    }

        .product-tabs-section .nav-tabs .nav-item {
            margin: 0 10px;
        }

        .product-tabs-section .nav-tabs .nav-link {
            color: #555;
            padding: 10px 20px;
            font-weight: bold;
           
            border-radius: 13px;
            transition: all 0.3s ease-in-out;
        }

            .product-tabs-section .nav-tabs .nav-link.active {
                color: #fff;
                background-color: #868589;
                border-color: #868589;
            }

            .product-tabs-section .nav-tabs .nav-link:hover {
                color: #fff;
                border-color: #f7a422;
                background-color: #f7a422;
            }

    /* Tab Content */
    .product-tabs-section .tab-content {
        padding: 20px;
        background-color: #ffffff;
        border-radius: 30px;
        overflow: hidden;
    }

    .product-tabs-section .product-description p {
        color: #000000;
        font-size: 16px;
    }

    /* Review Form Styling */
.review-box {
    width: 80%;
    margin: auto;
    border-radius: 8px;
    padding: 20px;
    background: linear-gradient(to right, #fbc2eb, #a6c1ee);
    color:white;
}

.banner-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.star-rating i {
    color: #ddd;
    font-size: 20px;
    margin-right: 5px;
    cursor: pointer;
}

    .star-rating i:hover,
    .star-rating i.active {
        color: #ffc107;
    }


/* Banner Box Styles */
.banner-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    position: relative;
    color: #fff;
    padding: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px; 
}

/* Semi-transparent overlay for better text readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
}

/* Content Styling */
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 80%; /* Limit the width for better readability */
    margin: 0 auto;
    margin-top:395px;

}

/* Ensure both the form and banner have the same height in a container */
.row {
    display: flex;
    align-items: stretch; /* Ensures both sides have equal height */
}

/* Optional: Add a specific height if necessary */
.banner-box, .form-container {
    height: 498px;
}




/* Responsive Design */
@media (max-width: 768px) {
    .product-tabs-section .nav-tabs .nav-item {
        margin: 0 5px;
    }

    .product-tabs-section .tab-content {
        padding: 15px;
    }

    /*.review-box .review-form {
        width: 40%;*/ /* Set form width to 40% */
        /*margin: 0 auto;*/ /* Center the form */
    /*}*/

    .product-tabs-section #reviewForm .form-control {
        font-size: 13px;
        padding: 8px;
        border-radius: 9px;
        padding-left: 1rem;
    }

    .product-tabs-section #reviewForm button {
        font-size: 14px;
        padding: 8px 15px;
    }

}




.d-flex.align-items-center.view-all-products {
    display: flex;
    justify-content: end;
}

.view-btn {
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
}

    .view-btn:hover {
        background-color: #f7a422;
    }

.wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.rating-component .stars-box i.star {
    font-size: 24px;
    color: white;
    cursor: pointer;
}

    .rating-component .stars-box i.star.hover,
    .rating-component .stars-box i.star.selected {
        color: gold;
    }

.button-box .btn {
    margin-top: 10px;
    padding: 10px 20px;
    cursor: not-allowed;
}

    .button-box .btn:enabled {
        cursor: pointer;
    }

.submited-box .loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.submited-box .success-message {
    margin-top: 10px;
    font-size: 18px;
    color: green;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.review-center {
 
    flex: 0 0 auto;
    width: 100%;
    padding: 0 170px;

}

/*form#reviewForm {
    padding: 0 150px;
}*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');

* {
    box-sizing: border-box;
}

body {
    color: #545454;
    font-family: "Open Sans", sans-serif;
}

.wrapper {
    margin: 0 auto;
    max-width: 960px;
    width: 100%;
}

.master {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
}

h1, h2 {
    margin-bottom: 20px;
    text-align: center;
}

.rating-component {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

    .rating-component .status-msg {
        margin-bottom: 10px;
    }

    .rating-component .stars-box {
        margin-bottom: 15px;
    }

    .rating-component .star {
        color: #ccc;
        cursor: pointer;
    }

        .rating-component .star.hover,
        .rating-component .star.selected {
            color: #ff5a49;
        }

.feedback-tags {
    min-height: 119px;
}

    .feedback-tags .tags-container {
        display: none;
    }

        .feedback-tags .tags-container .question-tag {
            text-align: center;
            margin-bottom: 40px;
        }

    .feedback-tags .tags-box {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .feedback-tags .tag {

        border-radius: 5px;
        color: #ff5a49;
        cursor: pointer;
        margin-bottom: 10px;
        margin-left: 10px;
        padding: 10px;
    }

        .feedback-tags .tag.choosed {
            background-color: #ff5a49;
            color: #fff;
        }

.button-box .done {
    background-color: #ff5a49;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    display: none;
    min-width: 100px;
    padding: 10px;
}

    .button-box .done:disabled {
        border: 1px solid #ff9b95;
        background-color: #ff9b95;
        color: #fff;
    }

.submited-box {
    display: none;
    padding: 20px;
}

    .submited-box .loader {
        border: 5px solid transparent;
        border-top: 5px solid #4dc7b7;
        border-bottom: 5px solid #ff5a49;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: spin 2s linear infinite;
    }

    .submited-box .success-message {
        text-align: center;
        font-size: 18px;
        color: #4caf50;
        display: none;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.form-review {
    color: #ff5a49;
}

.compliment-container {
    display: flex;
    margin-bottom: 15px;
    justify-content: center;
    font-size: 22px;
    /* align-items: center; */
}


.fa-smile-wink {
    margin-left: 10px;
    color: gold;
    font-size: 32px;
}

.button-box {
    display: flex;
    justify-content: center;
    width: 100%;
}

.done {
    width: 50%; /* You can adjust the percentage to fit your needs */
    text-align: center;
    padding: 12px 20px; /* Increase padding for larger button size */
    font-size: 16px; /* Adjust font size if needed */
}

/* .head-link-sec {
    display: flex;
    justify-content: center;
}*/

.gap-3-beet-links {
    gap: 4rem !important;
}
.also-like-section {
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

@media(max-width:1076px) {
    input#postalcode {
        width: auto;
    }
}


@media (max-width:768px) {
    button.custom-close-button {
        width: fit-content !important;
    }
    .custom-modal {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
    }
        .sub-image-gallery {
        gap:0px;
    }

    .modal-body {
        width: 70%;
    }


        .modal.show {
        background-color: white;
    }

    button.btn.btn-close {
        padding: 0rem !important;
        margin-left: -8px;
    }


    .product-class {
        width: 80% !important;
        margin: auto;
    }

    .sub-image-button img {
        object-fit: cover;
        border: 2px solid #ddd;
        border-radius: 5px;
        transition: border-color 0.3s;
    }

    button.sub-image-button {
        padding: 0rem;
        width: 100%;
        height: 100%;
    }

    .swiper-slide.product-slide.flex-shrink-0 {
        margin-right: 0 !important;
    }
    .modal-header {
        width: 0% !important;
         margin-left: 0; 
    }
    .modal-content-wrapper {
         margin-left: 0; 
         width: 0; 
    }
    
    .use-location {
        text-align: left;
    }
    input#postalcode {
         width: 100%; 
    }
    .input-field.label-wrapper.text-input.zip-val, p.postalcode-picker-consent, .update-info, span#postalcode-helper-eg {
        padding: 0 0;
    }
    .product-slider-container {
        padding: 10px 20px 20px 20px;
    }
    .section-title {
        margin-bottom: 0px;
    }
   
}

@media(max-width:480px){
    .sub-image-button img {
        width: 80%;
    }
        .review-box {
        width: 90%;
        margin: auto;
    }
    
    .also-like-section {
        height: fit-content;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .product-info-list {
        width: 100% !important;
        display: flex;
        list-style: none;
        flex-wrap: wrap;
        gap: 15px !important;
        list-style: none;
        padding-left: 0;
        margin: 0;
        justify-content: space-between;
        padding: 1rem 0rem;
    }
    
}


