* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }

  /* HEADER */
  .header {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;       
}


  .logo {
  height: 65px;           
}

  /* NAVIGATION */
  nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;      
  margin-right: 24px;     
}

  nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;       
  font-size: 17px;        
  padding: 6px 14px;
  border-radius: 4px;
  transition: color 0.2s ease;
}

  nav a:hover {
  color: #e53935;
}

  nav a.active {
  color: #e53935;
  font-weight: 700;
  border-bottom: 2px solid #e53935; 
  border-radius: 0;
}

  /* RIGHT ACTIONS (CART + SIGN IN) */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  /* CART ROUND BUTTON */
  .cart-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #333;
    font-size: 18px;
    text-decoration: none;

    transition: all 0.25s ease;
  }

  .cart-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
  }

  /* SIGN IN BUTTON */
  .sign-in-btn {
    padding: 9px 18px;
    border-radius: 20px;
    border: 1px solid #ddd;

    background: #ffffff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    transition: all 0.3s ease;
  }

  .sign-in-btn:hover {
    background: #f5f5f5;
  }

  .menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
  }

  /* HERO SECTION */
  .hero {
    position: relative;
    height: 80vh;
    background: url("../images/back1.png") center/cover no-repeat;
    display: flex;
    align-items: center;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
  }

  .hero-content {
    position: relative;
    color: white;
    max-width: 650px;
    text-align: left;
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  /* BUTTONS */
  .hero-buttons {
    display: flex;
    gap: 15px;
  }

  .btn {
    padding: 12px 22px 12px 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

  .btn-red {
    background: #e53935;
  }

  .btn-green {
    background: #2e7d32;
  }

  .btn-red:hover {
    background: #e53935;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.4);
  }

  .btn-green:hover {
    background: #2e7d32;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      top: 90px;
      right: 0;
      width: 100%;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      z-index: 999;
    }

    nav.show {
      display: flex;
    }

    .menu-toggle {
      display: block;
    }

    .hero {
      height: auto;
      padding: 70px 0;
    }

    .hero-content h1 {
      font-size: 30px;
    }

    .hero-buttons {
      flex-direction: column;
      width: fit-content;
    }
  }

  /* ABOUT HALF BACKGROUND */
  .about-half {
    position: relative;
    height: 50vh;
    background: url("../images/back1.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-half-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
  }

  .about-half-content {
    position: relative;
    color: white;
  }

  .about-half-content h1 {
    font-size: 42px;
  }

  /* TWO IMAGES SIDE BY SIDE */
  .about-two-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom: 60px;
  }

  .image-card {
    overflow: hidden;
    border-radius: 6px;
  }

  .image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .image-card:hover img {
    transform: scale(1.1);
  }

  @media (max-width: 768px) {
    .about-half {
      height: 40vh;
    }

    .about-half-content h1 {
      font-size: 30px;
    }

    .about-two-images {
      grid-template-columns: 1fr;
    }
  }

  /* LEGACY SECTION */
  .legacy-section {
    padding: 80px 0;
    background: #fdfaf6;
  }

  .legacy-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;

    align-items: stretch;
  }

  .legacy-content {
    background: #fffaf0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
  }

  .legacy-content h2 {
    font-size: 36px;
    color: #3b5d3b;
    margin-bottom: 20px;
  }

  .legacy-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
  }

  .legacy-image {
    height: 100%;
  }

  .legacy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  @media (max-width: 768px) {
    .legacy-container {
      grid-template-columns: 1fr;
    }

    .legacy-image img {
      height: 300px;
    }

    .legacy-content h2 {
      font-size: 28px;
    }
  }

  /* PRODUCT RANGE SECTION */
  .product-range {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
  }

  .product-range h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: black;
  }

  .product-range p {
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
  }

  @media (max-width: 768px) {
    .product-range h1 {
      font-size: 30px;
    }
  }

  /* PRODUCT GRID */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto 0;
  }

  .product-card {
    background: #ffffff;
    padding: 22px 15px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;

    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .product-card img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 10px;
  }

  .product-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  }

  @media (max-width: 992px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .products-grid {
      grid-template-columns: 1fr;
    }
  }

  /* VIEW PRODUCTS BUTTON */
  .view-products-wrapper {
    display: flex;
    justify-content: center;
    margin: 60px 0;
  }

  .view-products-btn {
    background: #e53935;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;

    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.35);
    transition: all 0.3s ease;
  }

  .view-products-btn:hover {
    background: #c62828;
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(198, 40, 40, 0.45);
  }

  /* WHY CHOOSE US SECTION */
  .why-choose-us {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
  }

  .why-choose-us h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2e7d32;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
  }

  .why-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;

    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .why-card img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 15px;
  }

  .why-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
  }

  .why-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
  }

  .why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  }

  @media (max-width: 992px) {
    .why-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .why-grid {
      grid-template-columns: 1fr;
    }

    .why-choose-us h1 {
      font-size: 28px;
    }
  }

  /* BULK ORDER CTA */
  .bulk-cta {
    background: url("../images/indexlast.jpg") center/cover no-repeat;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bulk-cta-card {
    max-width: 650px;
    padding: 40px 35px;
    text-align: center;

    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .bulk-cta-card h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 15px;
  }

  .bulk-cta-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
  }

  .bulk-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: #2e7d32;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;

    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
  }

  .bulk-btn:hover {
    background: #1b5e20;
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(27, 94, 32, 0.5);
  }

  @media (max-width: 768px) {
    .bulk-cta {
      padding: 80px 15px;
    }

    .bulk-cta-card h2 {
      font-size: 26px;
    }
  }

  /* FOOTER */
  .footer {
    background: #099754;
    color: #ffffff;
    padding: 70px 20px;
  }

  .footer-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
  }

  .footer-column li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-column a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
  }

  .footer-column a:hover {
    opacity: 0.8;
  }

  .footer-column i {
    font-size: 15px;
  }

  .brand-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer-column li,
    .footer-column a {
      justify-content: center;
    }
  }

  /* FOOTER BOTTOM BAR */
  .footer-bottom {
    background: #057b44;
    padding: 15px 20px;
  }

  .footer-bottom-container {
    max-width: 1200px;
    margin: auto;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-left {
    font-size: 14px;
    color: #ffffff;
  }

  .footer-right {
    display: flex;
    gap: 20px;
  }

  .footer-right a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .footer-right a:hover {
    opacity: 0.8;
  }

  @media (max-width: 768px) {
    .footer-bottom-container {
      flex-direction: row;
      justify-content: space-between;
    }

    .footer-left,
    .footer-right {
      font-size: 13px;
    }

    .footer-right {
      gap: 12px;
    }
  }

  /* ================= WISHLIST ================= */

  .wishlist-page h2 {
    margin-bottom: 10px;
  }

  .wishlist-checkbox {
    display: block;
    margin-bottom: 20px;
  }

  .wishlist-table {
    width: 100%;
    border-collapse: collapse;
  }

  .wishlist-table th,
  .wishlist-table td {
    border-bottom: 1px solid #eee;
    padding: 14px;
    vertical-align: middle;
  }

  .wishlist-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
  }

  .wishlist-name a {
    color: #e53935;
    font-size: 14px;
  }

  .wishlist-price {
    font-weight: 600;
  }

  .wishlist-add-btn {
    background: #e53935;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
  }

  /* MOBILE PRODUCT CARDS */
  @media (max-width: 480px) {
    .products-grid {
      grid-template-columns: 1fr;
      gap: 25px;
      padding: 0 20px;
    }

    .product-card {
      padding: 30px 20px;
      border-radius: 10px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

    .product-card img {
      width: 55px;
      height: 55px;
      margin-bottom: 15px;
    }

    .product-card h3 {
      font-size: 15px;
      font-weight: 600;
    }
  }

  /* ================= GLOBAL CART BADGE ================= */

  .cart-btn {
    position: relative;
  }

  #cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #2e7d32;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
  }

  #cart-count:empty {
    display: none;
  }

  /* ================= CART ANIMATION ================= */
  @keyframes cartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
  }

  .cart-pop {
    animation: cartPop 0.35s ease;
  }

  /* ================= CART TOAST ================= */
  #cart-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #2e7d32;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
  }

  #cart-toast.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* ================= MINI CART POPUP ================= */

  .mini-cart {
    position: fixed;
    top: 90px;
    right: 25px;
    width: 320px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    padding: 15px;
    z-index: 9999;

    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;

    transition: all 0.3s ease;
  }

  .mini-cart.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .mini-cart-header button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }

  .mini-cart-body {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .mini-cart-body img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
  }

  .mini-cart-info p {
    font-size: 14px;
    margin: 2px 0;
  }

  .mini-cart-btn {
    display: block;
    margin-top: 12px;
    background: #2e7d32;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
  }

  .mini-cart-btn:hover {
    background: #1b5e20;
  }

  /* ================= WISHLIST BADGE ================= */

  .wishlist-header {
    position: relative;
  }

  .wishlist-badge {
    position: absolute;
    top: -6px;
    right: -8px;

    background: #2e7d32;
    color: #fff;

    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
  }