   /* Reset */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html,body {
      font-family: 'Poppins', sans-serif;
      background: #fff;
      overflow-x: hidden;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      background: white;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 15px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo and Store Name */
    .logo-container {
      display: flex;
      align-items: center;
      cursor: pointer;
      text-decoration: none;
      color: black;
    }
    .logo-container img {
      height: 100px;
      width: auto;
      margin-right: 10px;
      transition: transform 0.3s ease;
    }
    .logo-container:hover img {
      transform: scale(1.1);
    }
    .store-name {
      font-weight: 700;
      font-size: 1.5rem;
      user-select: none;
    }

    /* Navigation */
    nav {
      display: flex;
      gap: 24px;
      font-weight: 500;
    }
    nav a {
      text-decoration: none;
      color: black;
      font-size: 1rem;
      position: relative;
      transition: color 0.3s ease;
    }
    nav a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: #f5c518; /* Yellow underline */
      left: 0;
      bottom: -6px;
      transition: width 0.3s ease;
    }
    nav a:hover,
    nav a:focus {
      color: #f5c518;
    }
    nav a:hover::after,
    nav a:focus::after {
      width: 100%;
    }

    /* Right section */
    .header-right {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    /* Search */
    .search-box {
      position: relative;
    }
    .search-box input[type='search'] {
      padding: 6px 12px;
      border-radius: 20px;
      border: 1.5px solid #ccc;
      width: 180px;
      transition: transform 0.3s ease, border-color 0.3s ease;
      font-size: 0.9rem;
    }
    .search-box input[type='search']:focus {
      outline: none;
      border-color: #f5c518;
      transform: scale(1.1);
    }

    /* Call Now Button */
    .call-btn {
      background: #f5c518;
      border: none;
      padding: 8px 16px;
      border-radius: 30px;
      color: black;
      font-weight: 600;
      cursor: pointer;
      font-size: 1rem;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 6px;
      user-select: none;
      text-decoration: none;
    }
    .call-btn:hover,
    .call-btn:focus {
      background-color: #d4b80c;
      transform: scale(1.1);
      color: black;
    }

    /* Cart Icon */
    .cart-icon {
      position: relative;
      font-size: 1.5rem;
      color: black;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .cart-icon:hover,
    .cart-icon:focus {
      transform: scale(1.1);
    }
    .cart-badge {
      position: absolute;
      top: -6px;
      right: -8px;
      background: red;
      color: white;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 12px;
      animation: pulse 2s infinite;
      user-select: none;
    }
    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.2);
        opacity: 0.7;
      }
    }

    /* Hamburger Menu (Mobile) */
    .hamburger {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      border: none;
      background: none;
      color: black;
      transition: transform 0.3s ease;
    }
    .hamburger:hover,
    .hamburger:focus {
      transform: scale(1.1);
    }

    /* Mobile menu (hidden by default) */
 .mobile-menu {
    display: none;
    position: absolute;
    top: 85px;
    text-align: center;
    left: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px 20px;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    z-index: 9999;
}
    .mobile-menu a {
      color: black;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      padding: 6px 0;
      border-bottom: 1px solid #eee;
      transition: color 0.3s ease;
    }
    .mobile-menu a:last-child {
      border-bottom: none;
    }
    .mobile-menu a:hover,
    .mobile-menu a:focus {
      color: #f5c518;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
      nav {
        display: none;
      }
      .search-box input[type='search'] {
        width: 120px;
      }
      .call-btn {
        display: none;
      }
      .hamburger {
        display: block;
      }
        .header{
        padding: 15px !important;
      }
    }

    @media (max-width: 576px) {
      .search-box {
        display: none;
      }
      .header{
        padding: 15px !important;
      }
    }





    /* ====== Footer Styles ====== */
    .footer-section {
      background-color: black;
      color:white;
      padding: 40px 20px 25px 20px;
      font-size: 0.9rem;
    }
    .footer-section h5 {
      font-weight: 700;
      color: var(--primary-yellow);
      margin-bottom: 15px;
      font-size: 1.2rem;
    }
    .footer-section p,
    .footer-section li,
    .footer-section a {
      color: var(--text-light);
    }
    .footer-section ul {
      padding-left: 0;
      list-style: none;
    }
    .footer-section ul li {
      margin-bottom: 8px;
    }
    /* Footer links zoom on hover */
    .footer-section ul li a {
      transition: color 0.3s ease, transform 0.3s ease;
      text-decoration: none;
      display: inline-block;
      padding: 4px 0;
    }
    .footer-section ul li a:hover {
      color: lightgoldenrodyellow !important;
      text-decoration: wavy !important;
      transform: scale(1.1);
      text-decoration: none;
    }
    .footer-section p i {
      color: var(--primary-yellow);
      margin-right: 6px;
    }
    .footer-section hr {
      border-color: rgba(255, 235, 59, 0.4);
      margin-top: 25px;
      margin-bottom: 20px;
    }

    /* Footer social icons moved below contact info */
    .footer-contact-social {
      margin-top: 10px;
    }
    .footer-contact-social a {
      background: transparent;
      padding: 0;
      margin-right: 15px;
      font-size: 1.6rem;
      color: var(--primary-yellow);
      transition: transform 0.3s ease, color 0.3s ease;
      box-shadow: none;
    }
    .footer-contact-social a:hover {
      color: var(--primary-green);
      transform: scale(1.3);
      text-decoration: none;
    }

    .footer-bottom {
      display: flex;
      justify-content: center; /* Center align copyright */
      align-items: center;
      font-weight: 500;
      font-size: 0.9rem;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    /* ====== Zoom hover class for general use ====== */
    .zoom-hover {
      transition: transform 0.3s ease;
      cursor: pointer;
      display: inline-block;
    }
    .zoom-hover:hover {
      transform: scale(1.1);
    }

    /* ====== Responsive ====== */
    @media (max-width: 991px) {
      .header-contact {
        display: none; /* Hide contact info on tablet and smaller */
      }
    }
    @media (max-width: 576px) {
      .navbar-nav {
        background: var(--header-bg);
        padding: 10px 20px;
        border-radius: 8px;
      }
      .navbar-nav .nav-link {
        padding: 10px 12px;
        font-size: 1.1rem;
      }
    }

    /* products-header-section */

     .products-header-section {
    background: #f9fef6;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #6d4c41;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.15);
  }

  .products-header-section .breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #4caf50;
  }
  .products-header-section .breadcrumb ul li {
    position: relative;
  }
  .products-header-section .breadcrumb ul li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: #9ccc65;
  }
  .products-header-section .breadcrumb ul li a {
    color: #4caf50;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .products-header-section .breadcrumb ul li a:hover,
  .products-header-section .breadcrumb ul li a:focus {
    color: #81c784;
    outline: none;
  }

  .products-header-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #4caf50;
  }

  .products-header-subtitle {
    font-size: 1.2rem;
    margin-bottom: 28px;
    color: #555;
  }

  .products-search-form {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 6px;
  }
  .products-search-form input[type="search"] {
    flex-grow: 1;
    padding: 14px 20px;
    font-size: 1.1rem;
    border: 2px solid #4caf50;
    border-radius: 40px;
    outline-offset: 2px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .products-search-form input[type="search"]:focus {
    border-color: #ffeb3b;
    box-shadow: 0 0 8px #ffeb3b;
  }
  .products-search-form button {
    background-color: #4caf50;
    border: none;
    padding: 0 24px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1.4rem;
    color: white;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    user-select: none;
  }
  .products-search-form button:hover,
  .products-search-form button:focus {
    background-color: #81c784;
    outline: none;
    transform: scale(1.1);
  }

  /* Responsive */
  @media (max-width: 600px) {
    .products-header-title {
      font-size: 2.2rem;
    }
    .products-header-subtitle {
      font-size: 1rem;
      margin-bottom: 20px;
    }
    .products-search-form {
      flex-direction: column;
      gap: 12px;
      max-width: 100%;
    }
    .products-search-form button {
      padding: 14px 0;
      font-size: 1.2rem;
      border-radius: 30px;
      justify-content: center;
    }
  }

/* product-categories-section */
  .product-categories-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #6d4c41;
  }
  .product-categories-section .section-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 40px;
  }
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
  }
  .category-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.15);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    outline-offset: 2px;
  }
  .category-card:focus,
  .category-card:hover {
    transform: scale(1.06);
    box-shadow: 0 0 18px 4px rgba(76, 175, 80, 0.45);
    outline: none;
  }
  .category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    pointer-events: none;
    user-select: none;
  }
  .category-name {
    margin-top: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4caf50;
  }
  .category-desc {
    font-size: 1rem;
    color: #555;
    margin-top: 6px;
    padding: 0 15px;
    text-align: center;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .product-categories-section {
      padding: 0 10px;
    }
    .category-card img {
      height: 160px;
    }
    .category-name {
      font-size: 1.3rem;
    }
  }

    /* featured-products-section */
   .featured-products-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #6d4c41;
  }
  .featured-products-section .section-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 40px;
  }
  .carousel-wrapper {
    position: relative;
    overflow: hidden;
  }
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    scroll-behavior: smooth;
  }
  .product-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.15);
    flex: 0 0 calc((100% - 40px) / 3); /* 3 cards visible with 20px gap */
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .product-card:hover,
  .product-card:focus {
    transform: scale(1.05);
    box-shadow: 0 0 18px 6px rgba(76, 175, 80, 0.45);
    outline: none;
  }
  .product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    user-select: none;
    pointer-events: none;
  }
  .product-name {
    font-size: 1.2rem;
    margin: 12px 0 6px;
    font-weight: 700;
    color: #4caf50;
  }
  .product-price {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
  }
  .add-cart-btn {
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  .add-cart-btn:hover,
  .add-cart-btn:focus {
    background-color: #81c784;
    box-shadow: 0 0 10px #81c784;
    outline: none;
  }
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #4caf50;
    border: none;
    color: white;
    font-size: 2.8rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.6);
  }
  .carousel-btn:hover,
  .carousel-btn:focus {
    background-color: #81c784;
    outline: none;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 14px rgba(129, 199, 132, 0.8);
  }
  .carousel-btn.prev {
    left: 10px;
  }
  .carousel-btn.next {
    right: 10px;
  }
  /* Responsive */
  @media (max-width: 900px) {
    .product-card {
      flex: 0 0 calc((100% - 20px) / 2); /* 2 cards on medium */
    }
  }
  @media (max-width: 600px) {
    .product-card {
      flex: 0 0 100%; /* 1 card on small */
    }
    .carousel-btn {
      width: 44px;
      height: 44px;
      font-size: 2rem;
    }
  }


  /* filter section  */

  