:root {
    --light-brown: #8b7c61;
    --medium-brown:#714c1fed;
    --dark-brown: #603813;
    --white: #ffffff;
  }

  
  html {
    scroll-behavior: smooth;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  /* HEADER STRUCTURE */
  .top-header {
    display: flex;
    width: 100%;
    height: 110px;
  }
  
  /* LEFT BROWN BAR */
  .left-box {
    width: 80px;
    background-color: var(--light-brown);
  }
  
  .logo-and-text {
    display: flex;
    align-items: center;
    flex: 1;
    background-color: var(--light-brown);
    padding: 0 20px;
     gap: 150px; 
     flex-wrap: wrap;  
  }
  .text-section {
    color: white;
    text-align: center;
  }
  
  /* LOGO SECTION — just right of brown box */
  .logo-section {
    margin-right: 40px;
  }
  
  .logo-section img {
    height: 130px;
    width: 160px;
  }

  .text-section h1 {
    font-size: 40px;
    font-weight: 60;
  }
  
  .text-section p {
    font-size: 15px;
    margin-top: 10px;
  }
  
  /* BOTTOM BAR */
  .bottom-bar {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-brown);
    background-color: white;
    padding: 10px 30px;
  }
  
  .gst {
    margin-left: 50px;
    font-size: 15px;
    font-weight: 20px;
  }
.navbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.navbar a {
    color:black;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    transition: color 0.3s;
}

.navbar a:hover {
    color: var(--dark-brown);
}

/* Hamburger Icon - Initially hidden */
.hamburger {
    display: none;
    font-size: 20px;
    color:black;
    cursor: pointer;
}


/* Mobile View - Display Hamburger Icon, hide navbar links */
@media screen and (max-width: 768px) {
    .top-header {
        height: 90px; /* Reduced height for mobile */
        padding: 0 0; /* Adjust padding */
      }
    
      .logo-and-text {
        flex: 1;
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
        background-color: var(--light-brown);
        padding: 0 10px;    
      }
      .logo-section{
        order: 0;
        flex-shrink: 0;
        margin-right: 10px;
      }
    
      .logo-section img {
        height: 95px; /* Reduced logo height for mobile */
        width: 110px; /* Reduced logo width for mobile */
      }
      .text-section{
        order: 1;
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 8px;
        color: black;
        flex-wrap: wrap;
    
      }
    
      .text-section h1 {
        margin: 0;
        font-size: 12px; /* Reduced font size for mobile */
        color: black;
        
      }
    
      .text-section p {
        margin: 0;
        font-size: 8px;
        color: black; /* Reduced font size for mobile */
      }
    
      .bottom-bar {
        height: 50px; /* Reduced bottom bar height */
        padding: 5px 20px; /* Adjust padding for mobile */
      }
    
      .gst {
        font-size: 13px; /* Smaller font size for mobile */
      }
    
    .navbar {
        display: none;
        width: 100%;
        height: 300px;
        cursor: pointer;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 130px;
        left: 0;
        background-color:var(--light-brown);
        padding: 10px 0;
        z-index: 10;
    }

    .navbar a {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .navbar.active {
        display: flex;
    }
}

.product-tabs-section {
    text-align: center;
    padding: 50px 20px;
  }
  .product-tabs-section h2 {
    font-size: 28px;
    color: var(--dark-brown);
    margin-bottom: 20px;
  }
  .product-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .tab {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background-color: #ccc;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .tab.active {
    background-color: var(--dark-brown);
    color: white;
  }
  .products-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 20px;
  }
  .products-group {
    display: none;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .products-group.active {
    display: flex;
  }
  .product-card {
    width: 280px;
    background: white;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  .product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  .product-card h4 {
    font-size: 16px;
    margin: 10px 0 6px;
  }
  .product-card p {
    font-size: 14px;
    color: #555;
  }
  .view-details-btn{
    margin-top: 15px;
    background: var(--medium-brown);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
  }
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .modal.hidden {
    display: none;
  }
  .modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    position: relative;
  }
  .modal-content img {
    max-width: 100%;
    height: auto;
  }
  .close-button {
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
    font-size: 28px;
  }

  
  
  @keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .footer {
    background-color: var(--medium-brown);
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: left;
    gap: 40px;
  }
  
  .footer-col h4 {
    margin-bottom: 10px;
  }
  
  .footer-col a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 5px 0;
  }
  
  .footer-col a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    margin-top: 20px;
    font-size: 14px;
  }
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
  }
  
  .whatsapp-float:hover {
    background-color: #1ebe57;
  }
  