
                        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* overflow-y: hidden; */
            /* outline: 1px solid red;  */
        }



/* ===== 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; }
}
























        .page-header {
            background: #496d6a;
            color: rgb(247, 244, 244);
            padding: 30px 0;
            margin-bottom: 40px;
            padding-top: 15rem;
        }

        .page-title {
            font-size: 3rem;
            font-weight: 700;
            margin: 0;
            text-align: center;
        }

        .filters-section {
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .filter-dropdown, .sort-dropdown {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 10px 15px;
            font-weight: 500;
            background: white;
            transition: all 0.3s ease;
        }

        .filter-dropdown:focus, .sort-dropdown:focus {
            border-color: #66ea87;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }

        .filter-label {
            font-weight: 600;
            color: #3C4242;
            margin-bottom: 8px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

       /* Container adjustments */
.products-container {
    padding: 20px 15px;
    background-color: #fff;
}

/* Product Card */
.products-container .product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.products-container .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.products-container .product-image {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.products-container .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.products-container .product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Discount Badge */
.products-container .badge {
    background: #ff4d4d;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 5px;
}

/* Product Info */
.products-container .product-info {
    padding: 15px;
}

.products-container .product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #272727;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

/* Brand & Rating */
.products-container .brand-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.products-container .brand-name {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.products-container .rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.products-container .rating-text {
    font-size: 0.85rem;
    color: #444;
}

.products-container .rating-stars {
    font-size: 0.9rem;
    color: #f1c40f;
}

/* Price Info */
.products-container .price-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-container .current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}

.products-container .original-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .products-container .product-card {
        margin-bottom: 20px;
    }
}
.products-container .row > div {
    margin-bottom: 20px;
}
/* Mobile View - 2 Cards per Row */
@media (max-width: 575px) {
    .products-container .row > div {
        flex: 0 0 50%; /* 2 cards per row */
        max-width: 50%;
        padding: 5px;
    }

    /* Card adjustments */
    .products-container .product-card {
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        padding-bottom: 10px;
    }

    /* Image height reduction */
    .products-container .product-image {
        min-height: 160px; /* Smaller image */
    }

    .products-container .product-image img {
        height: auto;
        max-height: 160px;
        object-fit: cover;
    }

    /* Badge size smaller */
    .products-container .badge {
        font-size: 10px;
        padding: 3px 6px;
    }

    /* Title adjustments */
    .products-container .product-title {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    /* Brand and Rating */
    .products-container .brand-info {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 5px;
    }
    .products-container .brand-name {
        font-size: 0.75rem;
    }
    .products-container .rating-text {
        font-size: 0.75rem;
    }

    /* Price adjustments */
    .products-container .current-price {
        font-size: 0.95rem;
    }
    .products-container .original-price {
        font-size: 0.7rem;
    }

    /* Info padding reduced */
    .products-container .product-info {
        padding: 10px;
    }
}


        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .product-image-container {
                height: 250px;
            }

            .filters-section {
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 2rem;
            }
            
            .product-image-container {
                height: 220px;
            }

            .product-info {
                padding: 15px;
            }
        }

        @media (max-width:576px){
            .page-header{
                padding-top: 9rem;
            }
        }











       








        /* 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; 
  }




    .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;
    }
    
  }