body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafb; /* Light gray background */
        }
        .product-image-container {
            background-color: #f0f0f0;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #ccc;
            border-radius: .5rem; /* Rounded corners for images */
            overflow: hidden; /* Ensure images don't overflow rounded corners */
        }
        .product-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Cover the container */
        }
        .star-rating .fa-star {
            color: #FFD700; /* Gold color for stars */
        }
        .dropdown-toggle::after {
            display: none; /* Hide default Bootstrap dropdown arrow */
        }
        .custom-dropdown-arrow {
            border: solid #6b7280; /* Gray color for dropdown arrow */
            border-width: 0 2px 2px 0;
            display: inline-block;
            padding: 3px;
            transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            margin-left: 5px; /* Spacing for the custom arrow */
        }
        .scroll-button {
            background-color: white;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }
        .banner {
            background-color: #f8f9fa; /* Light grey for banner background */
            border-radius: .5rem;
            padding: 2rem;
            text-align: center;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
        }
        .banner-image {
            max-width: 100%;
            height: auto;
            border-radius: .5rem;
            margin-bottom: 1rem;
        }
        .carousel-item img {
            width: 100%;
            height: 250px; /* Fixed height for carousel images */
            object-fit: cover; /* Cover the area without distortion */
            border-radius: .5rem;
        }
        .carousel-caption {
            background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
            border-radius: .5rem;
            padding: 10px;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%; /* Ensure caption spans full width */
            margin: 0; /* Remove default margins */
        }
        .contact-section {
            background-color: #ffffff;
            border-radius: .5rem;
            padding: 2rem;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
        }
        .product-image-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 10;
            padding: 0 10px;
        }
        .magin{
            margin-right : 1.5rem;
        }
        .navbar{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: #fff;
            padding: 1rem 7%;
            display: flex;
            align-items: center;
            align-content: center;
            justify-content: space-between;
            z-index: 1000;
            box-shadow: var(--box-shadow);
           
        }
        .tag a:hover{
        color: rgb(0, 172, 60);
        }
        .font_color{
            color: rgb(255, 142, 49);
        }
        .btn_shop{
            background-color: #0091ff;
        }
        .magin_left{
            margin-left: 25px;
            
        }
        .zoom:hover{
            height: 250px;
            transition-duration: 0.2s;
        }
         .btn_color{
        background-color: rgb(249, 246, 240);
        }