                * {
            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; }
}



        

        /* Contact Section Styles - Fixed */
        .contact-section {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 40px;
            text-align: center;
            font-family: 'DM Sans', sans-serif;
            padding-top: 14rem;
        }
        
        .contact-title {
            color: #529892;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            letter-spacing: 1px;
            text-align: center;
        }
        
        .contact-description {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 50px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            text-align: justify;
        }
        
        .form-container {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .form-group {
            flex: 1;
            text-align: left;
        }
        
        .form-group.full-width {
            flex: none;
            width: 100%;
        }
        
        .form-label {
            display: block;
            color: black;
            font-size: 1rem;
            font-weight: 400;
            margin-bottom: 8px;
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e8e8e8;
            border-radius: 8px;
            font-size: 16px;
            font-family: 'Volkhov', serif;
            background-color: #fafafa;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #529892;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(82, 152, 146, 0.1);
        }
        
        .form-control::placeholder {
            color: #aaa;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            background-color: #529892;
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 400;
            font-family: 'Volkhov', serif;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .submit-btn:hover {
            background-color: #4a8a82;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(82, 152, 146, 0.3);
        }

        @media (max-width: 768px) {
            /* .contact-section {
                padding-top: 12rem;
            } */
            
            .contact-title {
                font-size: 2.5rem;
                margin-bottom: 30px;
            }
            
            .contact-description {
                font-size: 1rem;
                margin-bottom: 40px;
                text-align: left;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .form-group {
                margin-bottom: 20px;
            }
            
            .form-control {
                padding: 12px 15px;
                font-size: 16px;
            }
            
            .submit-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }

        @media (max-width: 575px ) {

                        .contact-section {
                padding-top: 8rem;
            }


            
        }
        
        @media (max-width: 480px) {
            .contact-section {
                padding-top: 8rem;
            }
            
            .contact-title {
                font-size: 2rem;
            }
            
            .contact-description {
                font-size: 0.95rem;
            }
        }

        /* Footer Styles */
        .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;
    }
    
  }