*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
.navbar{
    background: #FAF9F6;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;  
    position: sticky;
    top: 0;
    z-index:999;
    font-size: 1.2rem; 
}
.navbar_logo--container {
    margin-left: 5px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px; /* adjust spacing between logo and text */
}
.logo_img {
    width: 30px;
    height: 40px;
    object-fit: contain;
    /* Remove position: fixed if you want the image to align naturally */
}
.navbar_logo--container h1 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}
.navbar_container{
    display: flex;
    justify-content: space-between;
    height: 70px;
    align-items: center;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}
.navbar_menu{
    display: flex;
    margin-left:auto;
    list-style: none;
}
.navbar_item{
    height: 70px;
    padding: 20px 15px;
    font-weight: bold;
    font-size: 0.9rem;
}
.navbar_links{
    color: #000;
    text-decoration: none;
    padding: 10px;
    height: 100%;
    transition: color 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
}
.navbar_links:hover{
    color: #555;
}
.wholesaler-hero {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/assistants-check-warehouse-inventory.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  filter: brightness(60%);
}
.wholesaler-hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px 20px;
  border-radius: 12px;
}
.wholesaler-hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.wholesaler-hero-overlay p {
  font-size: 1.2rem;
}
.wholesaler-info {
    background-color: #fefefe;
    padding: 60px 20px;
    text-align: center;
    color: #333;
}
.info-container {
    max-width: 900px;
    margin: auto;
}
.info-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.info-container ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.info-container ul li {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #333;
}
.product-categories {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}
.product-categories h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.category-card {
    background: #f1f1f1;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}
.category-card h3 {
    margin-top: 15px;
    font-size: 1.2rem;
}
.wholesaler-contact {
    background-color: #eaeaea;
    padding: 60px 20px;
    text-align: center;
}
.contact-button {
    display: inline-block;
    margin-top: 20px;
    background-color: #0b5f2a;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.contact-options {
    display: flex;
    flex-direction: column; /* or row, if you want them side by side */
    align-items: center;
    gap: 20px; /* Adjust the space between the buttons */
    margin-top: 30px; /* optional spacing above the button group */
}
.contact-button:hover {
    background-color: #20b858;
}


/******************************* Whatsapp *********************************/
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0b5f2a;
  color: white;
  border-radius: 12px;
  padding: 10px 16px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.whatsapp-widget:hover {
  background-color: #20b858;
}
.whatsapp-widget img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.whatsapp-widget span {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}


/**************** Catalog ************************/
.catalog-download {
    background-color: #f0f0f0;
    padding: 60px 20px;
    text-align: center;
}
.catalog-download h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.catalog-download p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.catalog-button {
    background-color: #0b5f2a;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}
.catalog-button:hover {
    background-color: #1ca34a;
}
.contact-button{
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.catalog-button {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.category-card i {
    font-size: 3rem;
    color: #0b5f2a;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.category-card:hover i {
    color: #1ca34a;
}
.featured-products h2 {
    color: white;
    margin-bottom: 30px;
    font-size: 2rem;
}
.gallery img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}.gallery img {
    max-height: 220px;
    width: auto;
    max-width: 100%;
}


/*************** Store Location & hours ************/
.store-locations {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}
.store-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.store-card {
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.store-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}
.store-card p {
    margin: 5px 0;
}


/********************** Footer ***********************/
.footer_container {
  background-color: #141414;
  color: #f1f1f1;
  padding: 4rem 1rem;
  font-family: Arial, sans-serif;
}
.footer_top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.footer_col {
  flex: 1 1 200px;
  min-width: 200px;
}
.footer_col h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.footer_col a {
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}
.footer_col a:hover {
  color: #ffffff;
}
.footer_col p {
  margin: 0.3rem 0;
  color: #bbb;
  font-size: 0.95rem;
}
.footer_bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
}
.footer_brand {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.footer_socials {
  margin-top: 1rem;
}
.footer_socials a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}
.footer_socials a:hover {
  color: #0f9d58; /* subtle highlight */
}
.copyright {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
      .navbar_container {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
      }

      .navbar_toggle {
        display: block;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1001;
      }

      .navbar_toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #000;
        transition: all 0.3s ease;
      }

      .navbar_menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #FAF9F6;
        margin-top: 10px;
        padding: 10px;
        max-height: 0;
      }

      .navbar_menu.active {
        display: flex;
        max-height: 500px;
      }

      .navbar_item {
        width: 100%;
        text-align: left;
        padding: 10px 0;
      }
  .navbar_toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar_toggle.is-active .bar:nth-child(2) { opacity: 0; }
.navbar_toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.navbar_toggle .bar { transition: all .3s ease; }
      .wholesaler-hero-overlay h1 {
        font-size: 2rem;
      }
      .wholesaler-hero-overlay p {
        font-size: 1rem;
      }
      .categories-grid {
        grid-template-columns: 1fr;
      }
      .store-info {
        flex-direction: column;
        align-items: center;
      }
      .gallery img {
        height: 150px;
      }
      .contact-button, .catalog-button {
        width: 90%;
        font-size: 0.9rem;
      }
      .product-categories h2, .catalog-download h2, .store-locations h2, .featured-products h2, .wholesaler-contact h2 {
        font-size: 1.6rem;
      }
      .info-container h2 {
        font-size: 1.8rem;
      }
      .category-card h3 {
        font-size: 1rem;
      }


    }