
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* overflow-y: hidden; */
            /* outline: 1px solid red;  */
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

/* ===== Fixed container only on the outer section ===== */
.top-content {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  width: 100%;
}

/* Currency dropdown (in top bar) */
.top-content .custom-dropdown { position: relative; display: inline-block; }
.top-content .dropdown-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 0; color: #fff; padding: 6px 10px;
  cursor: pointer; font: inherit;
}
.top-content .dropdown-content {
  position: absolute; top: 100%; right: 0; min-width: 140px;
  background: #fff; border-radius: 6px; padding: 6px 0;
  box-shadow: 0 8px 18px rgba(0,0,0,.15); z-index: 1300; display: none;
}
.top-content .dropdown-content a { display: block; padding: 8px 12px; color: #333; text-decoration: none; font-size: 14px; }
.top-content .dropdown-content a:hover { background: #f5f7f7; color: #5fb3b3; }
.top-content .custom-dropdown.open > .dropdown-content { display: block; }
@media (hover: hover) and (pointer: fine) {
  .top-content .custom-dropdown:hover > .dropdown-content { display: block; }
}

/* ===== Top bar ===== */
.top-content .top-header {
  background: #529892; color: white; padding: 10px 0; line-height: 150%;
  font-family: 'DM Sans', sans-serif; margin: 0; font-weight: 200;
}
.top-content .top-header .container { display:flex; justify-content:space-between; align-items:center; gap: 16px; }
.top-content .shipping-info { display:flex; align-items:center; gap:8px; }
.top-content .shipping-info i { font-size:18px; }
.top-content .header-right { display:flex; align-items:center; gap:20px; }
.top-content .phone-number { display:flex; align-items:center; gap:5px; }
.top-content .language-currency { display:flex; align-items:center; gap:12px; }

/* ===== Main nav ===== */
.top-content .main-nav { background:white; box-shadow:0 2px 10px rgba(0,0,0,0.1); position:relative; }

/* Logo */
.top-content .logo { font-size:28px; font-weight:bold; color:#5fb3b3; text-decoration:none; display:flex; align-items:center; gap:10px; }

/* Search */
.top-content .search-container { position:relative; flex:1; max-width:720px; }
.top-content .search-form { display:flex; border:1px solid #529892; border-radius:15px; overflow:hidden; background:white; }
.top-content .search-form > * { border:0!important; outline:none; margin:0; background:transparent; }
.top-content .category-dropdown {
  flex: 0 0 clamp(140px, 18vw, 220px);
  max-width: 220px; width: auto; padding: 12px 20px; cursor: pointer;
  font-weight: 500; font-family: 'Poppins', sans-serif; letter-spacing: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  -webkit-appearance: none; appearance: none;
}
.top-content .search-input { flex:1 1 auto; min-width:0; }
.top-content .search-input::placeholder { color:#999; font-family:'Poppins',sans-serif; font-weight:500; }
.top-content .search-btn { background:transparent; border:none; padding:12px 20px; color:#050505; cursor:pointer; white-space:nowrap; font-family:'Poppins',sans-serif; font-weight:400; flex:0 0 auto; }

/* Desktop nav links */
.top-content .nav-menu { display:flex; list-style:none; align-items:center; gap:40px; margin:0; padding:0; }
.top-content .nav-menu a { text-decoration:none; color:#333; font-weight:600; transition:color .3s; font-family:'Manrope',sans-serif; }
.top-content .nav-menu a:hover, .top-content .nav-menu a.active { color:#5fb3b3; }

/* Desktop dropdown behavior */
.top-content .nav-item.dropdown .dropdown-menu { display:none; }
.top-content .nav-item.dropdown .dropdown-menu {
  margin: 0;                
}
.top-content .nav-item.dropdown.show > .dropdown-menu { display:block; }
.top-content .dropdown-menu { z-index:1055; }
.top-content .dropdown-submenu { position:relative; }
.top-content .dropdown-submenu > .dropdown-menu {
  top: 0;                    /* no vertical gap */
  left: calc(100% - 4px);    /* overlap by 4px so pointer never leaves */
  margin: 0;                 /* kill the .25rem margin that adds a gap */
  display: none;
  z-index: 1060;
}
.top-content .dropdown-submenu > .dropdown-menu.show { display:block; }
@media (min-width: 1200px) {
  .top-content .dropdown-submenu:hover > .dropdown-menu { display:block; }
}

/* Icons */
.top-content .header-icons { display:flex; align-items:center; gap:40px; }
.top-content .icon-link { color:#333; font-size:20px; text-decoration:none; position:relative; transition:color .3s; }
.top-content .icon-link:hover { color:#5fb3b3; }
.top-content .cart-badge { position:absolute; top:-8px; right:-8px; background:#5fb3b3; color:white; border-radius:50%; width:20px; height:20px; font-size:12px; display:flex; align-items:center; justify-content:center; font-weight:bold; }

/* Mobile toggle */
.top-content .mobile-toggle {
  background-color:transparent; color:#343333; border:none; border-radius:2px; width:44px; height:44px;
  opacity:1; padding:0; display:flex; align-items:center; justify-content:center; transition:.2s;
  position: relative; z-index: 1400; /* keeps on top of search pill */
}
.top-content .mobile-toggle:hover { background:#ececec; }

/* ===== Mobile drawer (scrollable) ===== */
.top-content .mobile-menu {
  background:white; border-top:1px solid #e0e0e0;
  max-height: 0; opacity: 0; overflow: hidden;
  transform: translateY(-10px);
  transition: transform .25s ease, opacity .25s ease, max-height .25s ease;
  z-index: 1200;
}
.top-content .mobile-menu.show {
  max-height: calc(100vh - 110px);
  opacity: 1; transform: translateY(0);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.top-content .mobile-menu .nav-menu {
  display:flex; flex-direction:column; align-items: stretch; gap:0;
  list-style:none; margin:0; padding:.5rem 0;
}
.top-content .mobile-menu .nav-menu li { width:100%; border-bottom:1px solid #f0f0f0; }
.top-content .mobile-menu .nav-menu a { display:block; width:100%; padding:12px 16px; text-decoration:none; color:#333; font-weight:600; font-size:16px; }

/* Accordion toggles + panels */
.top-content .mobile-subtoggle {
  width:100%; padding:12px 16px; background:#fff; border:0; text-align:left;
  font-size:16px; display:flex; justify-content:space-between; align-items:center;
}
.top-content .mobile-submenu {
  max-height:0; overflow:hidden; transition:max-height .25s ease; background:#fafafa;
  list-style:none; margin:0; padding:0;
}
.top-content .mobile-submenu a { display:block; padding:10px 18px; font-size:15px; }
/* Hide Bootstrap's auto-caret only for the currency dropdown */
.top-content .custom-dropdown > .dropdown-toggle::after {
  display: none !important;
  content: none !important;
}

/* ===== Mobile layout: match the proposed design ===== */
@media (max-width: 768px) {
  /* Slimmer top bar */
  .top-content .top-header { padding: 6px 0; }
  .top-content .top-header .container { gap:10px; }
  .top-content .shipping-info span { font-size: 10px; }
  .top-content .phone-number span { font-size: 10px; }
  .top-content .dropdown-toggle { padding: 4px 8px; }

  /* Single line top bar (shipping left, phone middle/right, currency at far right) */
  .top-content .top-header .container { flex-wrap: nowrap; }
  .top-content .shipping-info { flex: 1 1 auto; min-width: 0; }
  .top-content .header-right { flex: 0 0 auto; gap: 12px; }

  /* Main row: logo | search (flex, center) | icons + toggle (right) */
  .top-content .main-nav .container > .main-row {
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap: nowrap;     /* keep in one line like the design */
  }

  .top-content .logo { width: 64px; height: auto; flex: 0 0 auto; }

  .top-content .search-container {
    order: 2;
    flex: 1 1 auto;        /* take the middle space */
    min-width: 0;          /* allow shrinking */
    margin: 0 4px;
  }

  .top-content .header-icons {
    order: 3;
    flex: 0 0 auto;
    gap: 16px;
    margin-left: 6px;      /* little spacing from search */
  }

  .top-content .mobile-toggle {
    order: 4;
    flex: 0 0 auto;
    margin-left: 6px;
  }

  /* tighten the search pill */
  .top-content .search-form { border-radius: 20px; }
  .top-content .search-input { padding: 10px 14px; font-size: 13px; }
  .top-content .search-btn { padding: 10px 12px; }
  .top-content .category-dropdown { display: none; } /* hide category select on mobile like your layout */
}

/* Even narrower phones */
@media (max-width: 420px) {
  .top-content .shipping-info span,
  .top-content .phone-number span { font-size: 12px; }
  .top-content .icon-link { font-size: 18px; }
  .top-content .search-input { font-size: 12.5px; }
}



 
        




        /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


        /* .hero {
            height: 660px;
            width: 100%;
            background: url('image (7).png') ;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative; 
            border-bottom-right-radius: 150px;
            border-bottom-left-radius: 150px;

            } */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}


        .hero-section {
            min-height: 100vh;
            /* background: linear-gradient(135deg, #1a5f5f 0%, #2d8b8b 50%, #40b5b5 100%); */
            color: white;
            background: url('static/images/image (7).png') ;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative; 
            border-bottom-right-radius: 150px;
            border-bottom-left-radius: 150px;
            height: 660px;
            width: 100%;
            margin-top: 13rem;
        }

        .hero-title {
            font-size: 76px;
            font-weight: 400;
            /* letter-spacing: 2px; */
            line-height: 1.2;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Volkhov', serif;
        }

        .dropdown-button {
            background: transparent;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            /* padding: 1rem 0.1rem; */
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: white;
            font-weight: 500;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dropdown-button:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .dropdown-menu {
            background: #529892;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-top: 0.5rem;
            color: white;
        }

        .dropdown-item {
            color: #f5f3f3;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            /* margin: 0.25rem; */
        }

        .dropdown-item:hover {
            background: #3e827d;
            color: #f5f2f2;
        }



        .shop-button-container {
            position: relative;
            display: inline-flex;
            align-items: center;
        }

        .shop-button {
            background: transparent;
            /* backdrop-filter: blur(10px); */
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            padding: 1rem 3rem;
            color: white;
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .shop-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border-color: rgba(255, 255, 255, 0.5);
            color: white;
            text-decoration: none;
        }

        .arrow-icon {
            background:#0CCCBB;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            color: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .shop-button-container:hover .arrow-icon {
            background: #2d8b8b;
            transform: translateY(-50%) translateX(5px);
        }

        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3.8rem;
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 3.2rem;
                margin-bottom: 2.5rem;
            }

            .hero-section{
                height: 580px;
                min-height: 50px;
                border-bottom-right-radius: 100px;
                border-bottom-left-radius: 100px;
                /* margin-top: 12rem; */



            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
                letter-spacing: 1px;
                margin-bottom: 2rem;
            }
            
            .shop-button {
                padding: 0.9rem 2.5rem;
                font-size: 1rem;
            }

            .arrow-icon {
                width: 45px;
                height: 45px;
                right: -25px;
            }

            .hero-section{
                height: 510px;
                min-height: 50px;
                border-bottom-right-radius: 100px;
                border-bottom-left-radius: 100px;
                margin-top: 12rem;




            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
                line-height: 1.3;
            }
            
            .dropdown-button {
                font-size: 0.85rem;

            }

            .hero-section{
                height: 510px;
                min-height: 50px;
                border-bottom-right-radius: 100px;
                border-bottom-left-radius: 100px;
                margin-top: 6.5rem;


            }
        }

        @media (max-width: 400px) {
            .hero-title {
                font-size: 1.7rem;
            }
            
            .shop-button {
                padding: 0.7rem 2rem;
                font-size: 0.95rem;
            }


            .hero-section{
                height: 560px;
                min-height: 50px;

            }
        }






        /* BANNERR????????????????????????????????????????????? */


.banner img {
    margin: 0 2px;
}

.banner{
    top: -120px;
}


@media (max-width: 1400px) {
            .banner .img-1{
                
                width:150px ;
                height: 100px;
            }
            

        }






























        

        /* footer????????????????????????????????????????/ */

        .footer{
            background-color: #225D58;
            font-family: 'Outfit', sans-serif;
        }

.footer .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgb(248, 247, 247);
    border-radius: 50%;
    text-decoration: none;
    color: white; 
    background-color: transparent;
    transition: all 0.3s ease;
}

.footer .social a:hover {
    background-color: white; 
    color: black; 
}



.footer-column h6 {
    margin-bottom: 1rem;
    line-height: 1.8; 
  }

  .footer-column ul li {
    margin-bottom: 0.5rem; 
    color: grey;

  }

  .footer-column a {
    line-height: 1.8;
    display: inline-block;
    transition: color 0.2s ease-in-out;
    color: rgb(165, 164, 164);
  }

  .footer-column a:hover {
    color: #fdfcfb; 
  }



  /* TEstimonial???????????????????????????? */



  .testimonial-head h1{

            font-family: 'Outfit', sans-serif;
            font-weight: 600;
           
            font-size: clamp(28px, 6vw, 65px);
}



.carousel-item {
            padding: 0 50px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition:  0.7s ease;
            border: 1px solid #e9ecef;
        }
        
        .testimonial-card:hover {
            /* transform: translateY(-5px); */
            background: #1A9C91;
            color: white;

        }

        .testimonial-card.featured:hover {
            transform: translateY(-5px);
        }
        
        .testimonial-card.featured {
            background: #1A9C91;
            color: white;
            transform: scale(1);
            z-index: 2;
            position: relative;




        }
        
        .stars {
            color: #ffc107;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            font-family: 'Outfit', sans-serif;
            font-weight: 300;
            flex-grow: 1;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .client-details h5 {
            margin: 0;
            font-weight: 600;
            font-size: 1rem;
        }
        
        .client-details p {
            margin: 0;
            opacity: 0.8;
            font-size: 0.9rem;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            color: #26a69a;
        }
        
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: #26a69a;
            border-radius: 50%;
            width: 40px;
            height: 40px;
        }
        
        .carousel-indicators {
            bottom: -50px;
        }
        
        .carousel-indicators button {
            background-color: #26a69a;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }
        
@media (max-width: 991px) {
    .carousel-item .col-lg-4:not(:first-child) {
        display: none;
    }
    
    .carousel-item .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .carousel-item {
        padding: 0 20px;
    }

    .carousel-indicators {
        display: none;
    }
    
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 8%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }
    
    .carousel-item {
        padding: 0 10px;
    }
}

        



/* PRoductssss??????????????????????????? */


.most-popular-section {
    padding: 60px 0;
    background-color: white;
}

.most-popular-section .section-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-left: 15px;
}

.most-popular-section .section-title h2 {
    font-size: 62px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Volkhov', serif;
}

.most-popular-section .section-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 500px;
    font-family: 'Outfit', sans-serif;
}

.most-popular-section .view-more-btn {
    background: #529892;
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-more-btns{
 background: #529892;
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;   
}
.view-more-btns:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 166, 154, 0.4);
    color: white !important; 
    background-color: #000000 !important;
}
.most-popular-section .view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 166, 154, 0.4);
    color: white;
}

.most-popular-section .products-container {
    position: relative;
    overflow: hidden;
    /* padding-left: 15px; */
    margin-left: 20px;
    /* font-family: 'Libre Baskerville', serif; */
}

.most-popular-section .products-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.most-popular-section .products-scroll::-webkit-scrollbar {
    display: none;
}

.most-popular-section .product-card {
    flex: 0 0 280px;
    background: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;

    overflow: hidden;
    box-shadow: 0 4px 15px rgba(81, 80, 80, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}
.product-card {
    background: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;

    overflow: hidden;
    box-shadow: 0 4px 15px rgba(81, 80, 80, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}

.most-popular-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.most-popular-section .product-image {
    min-height: 250px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-image {
    min-height: 250px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.most-popular-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

 .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.most-popular-section .product-info {
    padding: 20px;
}

.product-info {
    padding: 20px;
}
.most-popular-section .product-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #272727;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #272727;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}
.most-popular-section .brand-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.brand-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.most-popular-section .brand-name {
    font-size: 0.9rem;
    color: #272727;
    margin: 0;
    font-weight: 400;
     font-family: 'Poppins', sans-serif;
}

.brand-name {
    font-size: 0.9rem;
    color: #272727;
    margin: 0;
    font-weight: 400;
     font-family: 'Poppins', sans-serif;
}
.most-popular-section .rating {
    display: flex;
    align-items: center;
    /* gap: 2px; */
}

.rating {
    display: flex;
    align-items: center;
    /* gap: 2px; */
}

.most-popular-section .rating-stars {
    color: #545453;
    font-size: 0.8rem;
}
.rating-stars {
    color: #545453;
    font-size: 0.8rem;
}

.most-popular-section .rating-text {
    font-size: 0.8rem;
    color: #6c757d;
}
.rating-text {
    font-size: 0.8rem;
    color: #6c757d;
}

.most-popular-section .price-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.most-popular-section .current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a0a0a;
     font-family: 'Poppins', sans-serif;

}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a0a0a;
     font-family: 'Poppins', sans-serif;

}

.most-popular-section .original-price {
    font-size: 0.8rem;
    color: #6c757d;
    text-decoration: line-through;
}

.original-price {
    font-size: 0.8rem;
    color: #6c757d;
    text-decoration: line-through;
}

.most-popular-section .discount {
    color: rgb(6, 80, 5);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Libre Baskerville', serif;

}
.discount {
    color: rgb(6, 80, 5);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Libre Baskerville', serif;

}

@media (max-width: 1199px) {
    .most-popular-section .product-card {
        flex: 0 0 360px;
    }
}

@media (max-width: 991px) {
    .most-popular-section .section-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .most-popular-section .section-title h2 {
        font-size: 2.2rem;
    }

    .most-popular-section .product-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 767px) {
    .most-popular-section .section-title h2 {
        font-size: 1.8rem;
    }

    .most-popular-section .product-card {
        flex: 0 0 300px;
    }


    .most-popular-section .products-container {
        padding-left: 10px;
    }
    .products-container {
        padding-left: 10px;
    }

    .most-popular-section .section-header {
        padding-left: 10px;
    }
}

@media (max-width: 575px) {
    .most-popular-section{
        flex: 0 0 300px;
    }



    .most-popular-section .product-image {
        height: auto;
        background: none;
        /* padding: 10px; */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-image {
        height: auto;
        background: none;
        /* padding: 10px; */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .most-popular-section .product-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

     .product-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .most-popular-section .product-info {
        padding: 15px;
    }

    .product-info {
        padding: 15px;
    }


    .most-popular-section .section-title h2 {
        font-size: 1.6rem;
    }
}














        .showcase-section {
            padding: 80px 0;
            background-color:#C7D8B72B;
        }
        
        .showcase-section .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-family: 'Volkhov', serif;
        }
        
        .showcase-section .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1.2;
            margin-bottom: 0;
        }
        
        .showcase-section .highlight-text {
            background-color: #B2E6E2;
            padding: 0px 5px 1px 10px ;
            border-radius: 30px;
            margin-top: 3px;
        }
        
        .showcase-section .product-grid {
            margin-bottom: 50px;
        }
        
        .showcase-section .product-item {
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            /* border: 2px solid red; */
            
        }
        
        /* .showcase-section .product-item .product-image img:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        } */
        
        .showcase-section .product-image {
            width: 100%;
            height: 470px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            /* color: #666; */
            /* border: 50px solid rgb(14, 218, 69); */

            
            position: relative;
        }

        /* .showcase-section .product-image img{
            border: 50px solid rgb(152, 7, 7);

        } */
         
        
        .showcase-section .view-more-btn {
            background: #529892;
            border: none;
            color: white;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(38, 166, 154, 0.3);
            transition: 1.5s;
        }
        
        .showcase-section .view-more-btn:hover {
            background: linear-gradient(135deg, #00897b 0%, #8de7de 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(38, 166, 154, 0.4);
            color: white;
   
        }
        
        .showcase-section .btn-container {
            text-align: center;
        }



        @media (min-width: 100px) {
    .showcase-section .product-item {
        background: none !important;
        box-shadow: none;

    }
    
    .showcase-section .product-image {
        border-radius: 15px;
    }
}
        
        /* Responsive adjustments */
        /* @media (max-width: 1199px) {
            .product-image {
                height: 400px;
            }
        }
        
        @media (max-width: 991px) {
            .product-image {
                height: 350px;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 767px) {
            .product-image {
                height: 300px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .showcase-section {
                padding: 60px 0;
            }
            
            .product-item {
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 575px) {
            .product-image {
                height: 250px;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
                padding: 0 15px;
            }
        } */
        
        /* Desktop specific width control */
        /* @media (min-width: 1200px) {
            .product-item {
                max-width: 350px;
                margin: 0 auto 30px;
            }
        } */


        @media (max-width: 575px) {
    .showcase-section .product-image {
        height: auto; 
        text-align: center; 
    }

    .showcase-section .product-image img {
       
        height: auto;
        object-fit: contain; 
    }

    .showcase-section .section-title h2 {
        font-size: 1.6rem;
        padding: 0 15px;
    }
}




/* categoryy??????????????????????????????????/ */


.category-section .main-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}

.category-section .header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 40px;
}

.category-section .title-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
    font-family: 'Volkhov', serif;
}

.category-section .description-section {
    max-width: 400px;
    flex-shrink: 0;
}

.category-section .description-section p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.category-section .content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.category-section .left-section {
    flex: 1;
    min-width: 300px;
}

.category-section .main-image-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.category-section .main-image {
    width: 100%;
    height: 100%;
    background-image: url('images/Frame 1000011653.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
}

.category-section .main-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent 60%);
    border-radius: 20px;
}

.category-section .explore-button {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    color: #050505;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.category-section .explore-button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.category-section .arrow-circle {
    background: #2d6a4f;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.category-section .main-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #529892;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 500;
    z-index: 2;
    transition: 0.3s ease;
    font-family: 'Libre Caslon Text', serif;
}

.category-section .main-title:hover {
    background: #2d6a4f;
    transform: translateY(-2px);
}

.category-section .right-section {
    flex: 1;
    min-width: 300px;
}

.category-section .image-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Libre Caslon Text', serif;
}

.category-section .row-1,
.category-section .row-2,
.category-section .row-3 {
    display: flex;
    gap: 15px;
}

.category-section .circle-item {
    width: 150px;
    height: 130px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; 
}


.category-section .circle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* .category-section .rect-item-1,
.category-section .large-rect-item,
.category-section .small-rect-item {
    border-radius: 15px;
    overflow: hidden;
} */

.category-section .rect-item-1 {
    flex: 1;
    height: 130px;
}

.category-section .large-rect-item {
    flex: 2;
    height: 150px;
}

.category-section .small-rect-item {
    flex: 1;
    height: 150px;
}

.category-section .image-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
   

}

.category-section .image-item:hover {
    transform: translateY(-3px);
}

.category-section .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 15px;

}

.category-section .image-button {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #529892;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.category-section .image-button:hover {
    background: #2d6a4f;
    transform: translateY(-2px);
}

.category-section .image-button::after {
    content: '→';
    background: white;
    color: #2d6a4f;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}


@media (min-width: 993px) {
    .category-section .circle-item {
        border-radius: 50% !important; 
    }
}



@media (max-width: 992px) {
    .category-section .content-wrapper {
        flex-direction: column;
    }

    .category-section .left-section,
    .category-section .right-section {
        width: 100%;
    }

    .category-section .right-section {
        margin-top: 20px;
    }

    .category-section .image-grid {
        height: auto;
    }

    .category-section .row-1,
    .category-section .row-2,
    .category-section .row-3 {
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .category-section .circle-item {
        width: 150px;
        height: 130px;
        border-radius: 50%;
    }

    .category-section .rect-item-1,
    .category-section .large-rect-item,
    .category-section .small-rect-item {
        width: 100%;
        height: 150px;
        border-radius: 15px;
    }
}

@media (max-width: 768px) {
    .category-section .header-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .category-section .title-section h1 {
        font-size: 2rem;
    }

    .category-section .main-image-container {
        height: 350px;
    }

    .category-section .row-1,
    .category-section .row-2,
    .category-section .row-3 {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    .category-section .circle-item,
    .category-section .rect-item-1,
    .category-section .large-rect-item,
    .category-section .small-rect-item {
        width: 100%;
        height: 120px;
        border-radius: 15px !important;
    }
}

@media (max-width: 576px) {
    .category-section .title-section h1 {
        font-size: 1.8rem;
    }

    .category-section .main-image-container {
        height: 300px;
    }

    .category-section .explore-button {
        padding: 10px 15px;
        font-size: 12px;
    }

    .category-section .arrow-circle {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .category-section .main-title {
        font-size: 13px;
        padding: 12px 20px;
    }

    .category-section .circle-item,
    .category-section .rect-item-1,
    .category-section .large-rect-item,
    .category-section .small-rect-item {
        width: 100%;
        height: 120px;
        border-radius: 15px !important;
    }
}









    .whatspp-icon{
    position: fixed; 
    right: 20px; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 80px; 
    height: 80px; 
    background-color: #25D366; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 1000;
    text-decoration: none;
  } 


  .whatspp-icon i{
    font-size: 40px; 
    color: white;
  }



  @media (max-width: 576px) {

    .whatspp-icon{
        width: 40px;
        height: 40px;
    }
    .whatspp-icon i{
        font-size: 25px;
    }
    
  }


