

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.owl-nav .owl-prev, .owl-nav .owl-next {
    background: white;
    border-radius: 50%;
    padding: 10px;
    color: black;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.owl-nav .owl-prev:hover, .owl-nav .owl-next:hover {
    background-color: #ddd;
}

.owl-nav .owl-prev {
    left: -20px;
}

.owl-nav .owl-next {
    right: -20px;
}

.owl-dots {
    text-align: center;
    padding-top: 15px;
}

.owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.owl-dot.active {
    background-color: #333;
}

.toast {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background-color: #333;
    color: #fff;
    padding: 12px 16px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    text-align: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease, bottom 0.5s ease;
}

.toast.show {
    display: block;
    opacity: 1;
    bottom: 30px; /* Slightly raise when shown */
}

.toast-link {
    color: white;
    font-weight: bold;
    margin-left: 10px;
    text-decoration: underline;
}

        .owl-carousel .item {
            margin-right: 0px;
        }


        /* Mobile-only styles */
        @media (max-width: 768px) {
            .services-icons .col-3 {
                padding-left: 2px;
                padding-right: 2px;
            }
            .services-icons p {
                font-size: 11px;
            }
            .services-icons .service-icon {
                padding: 0px;
                padding-top: 10px;
            }
            .related-product h2 {
                font-size: 26px;
            }
            .discount-percentage {
                display: none;
            }
        }

        .customer-reviews {
    background-color: #f9f9f9;
}

.review-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Mobile-only styles */
@media (max-width: 768px) {
    .review-card {
        background-color: transparent;
        box-shadow: unset;
        border-radius: unset;
        border-bottom: 1px solid #A2A3A4;
    }
}

.review-avatar {
    background-color: #eaeaea;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.review-name {
    font-size: 16px;
    font-weight: bold;
}

.review-verified {
    font-size: 14px;
    color: #888;
}

.review-stars .fa-star {
    color: #ffd700;
}

.review-text {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 40px; /* Adjust height to fit two lines */
}

.view-more-circle {
    width: 80px;
    height: 80px;
    background-color: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    text-align: center;
}


.modal-title {
    font-size: 18px;
}

.product-title {
    font-weight: 700 !important;
}

.color-options {
    gap: 2px;
}

.short-description span, .care-instruction span {
    color: #505050 !important;
    /* font-family: 'Poppins', sans-serif !important; */
    text-align: justify !important;

}


.short-description ul, .care-instruction ul {
    padding-left: 18px !important;
}

.category-desc a {
    color: unset;
}

.breadcrumb {
    background-color: transparent;
    /* margin-bottom: 1rem;
    font-size: 0.875rem; */
    
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #6c757d;
    padding: 0 15px;
}

.breadcrumb a {
    color: #2E2E2E;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Make breadcrumb scrollable and display in a single line */
.breadcrumb {
    display: flex;
    flex-wrap: nowrap; /* Prevent items from wrapping to the next line */
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
}

.breadcrumb-item {
    flex-shrink: 0;
    margin-right: 10px; /* Optional spacing between breadcrumb items */
}

/* Hide scrollbar on Webkit browsers */
.breadcrumb::-webkit-scrollbar {
    display: none;
}

.form-control:disabled, .form-control[readonly] {
    background-color: transparent;
}

.description-div p {
    font-size: 14px;
    color: #424242;
    margin-bottom: 0.2rem;
}

.description-div b {
    color: #212121;
    font-weight: 600;
    margin-top: 4px;
}

a, a:hover {
    color: #767C8F;
}

/* Style the select element */
select {
    padding-right: 30px; /* Adjust the padding to control spacing around the icon */
    appearance: none; /* Remove default styling for the dropdown */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('https://backbenchersindia.in/assets/img/down.svg'); /* Path to your custom icon */
    background-position: right 10px center; /* Control the position of the icon */
    background-repeat: no-repeat;
    border: 1px solid #E6E9EF;
    border-radius: 4px;
}

/* Adjust padding if needed */
select:focus {
    outline: none; /* Remove the outline on focus */
}