    /* Reset and Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      padding-top: 80px;
      overflow-x: hidden;
    }

    body.no-scroll {
      overflow: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    button {
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    section {
      padding: 50px 0;
    }

    h1, h2, h3 {
      font-family: 'Poppins', 'Inter', Arial, sans-serif;
      margin-bottom: 1rem;
    }

    /* Header & Navigation */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background-color: #ffffff;
      box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.06);
      z-index: 2000;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo {
      font-size: 24px;
      font-weight: 700;
      color: #111827;
      font-family: 'Poppins', 'Inter', Arial, sans-serif;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .nav-links a {
      font-weight: 500;
      font-size: 16px;
      transition: color 0.2s;
    }

    .nav-links a.active {
      color: #4caf50;
    }

    .nav-links a:hover {
      color: #4caf50;
    }

    .cart-icon {
      background-color: #4caf50;
      padding: 6px 12px;
      border-radius: 8px;
      color: #fff;
    }

    .menu-toggle {
      display: none;
      font-size: 24px;
      padding: 8px;
    }

    .menu-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1500;
    }

    .menu-overlay.show {
      display: block;
    }

    /* Hero Section */
    .hero {
      position: relative;
      background: url("https://images.unsplash.com/photo-1542838132-92c53300491e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80") no-repeat center center/cover;
      color: white;
      text-align: center;
      padding: 80px 20px;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.25);
    }

    .hero h1,
    .hero p,
    .hero .cta-button {
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 16px;
    }

    .hero p {
      font-size: 1.25rem;
      margin-bottom: 24px;
      max-width: 600px;
    }

    .cta-button {
      display: inline-block;
      background-color: #4caf50;
      color: #fff;
      padding: 12px 24px;
      border-radius: 10px;
      font-weight: 600;
      transition: background-color 0.3s;
    }

    .cta-button:hover {
      background-color: #3d8b40;
    }

    /* Features Section */
    .features {
      padding: 30px 0;
      background-color: #f8f9fa;
    }

    .features-scroller {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .feature-item {
      font-size: 1.1rem;
      font-weight: 500;
    }

    /* Category Chips */
    .category-chips {
      padding: 30px 0;
    }

    .chip-scroller {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .chip {
      display: inline-block;
      background-color: #f1f1f1;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.9rem;
      transition: background-color 0.2s;
    }

    .chip:hover {
      background-color: #e0e0e0;
    }

    /* Categories Section */
    .categories {
      text-align: center;
    }

    .category-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin-top: 30px;
    }

    .category-card {
      background-color: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-align: center;
      border: 1px solid #e5e7eb;
    }

    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .category-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .category-card p {
      padding: 16px;
      font-weight: 500;
    }

    /* Promo Banner */
    .promo-banner {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 20px;
      margin: 20px auto;
      background: #fff9db;
      border: 1px solid #ffe58f;
      border-radius: 8px;
      max-width: 800px;
      text-align: center;
    }

    .promo-banner .promo-cta {
      background: #ffc107;
      color: #000;
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .promo-banner .promo-cta:hover {
      background: #e0a800;
    }

    /* Featured Products */
    .featured-products {
      text-align: center;
    }

    .products-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin-top: 30px;
    }

    .product-card {
      background-color: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-align: center;
      border: 1px solid #e5e7eb;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .product-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .product-card p {
      padding: 16px;
      font-weight: 500;
    }

    /* Testimonials */
    .testimonials {
      text-align: center;
      background-color: #f8f9fa;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 30px;
    }

    .testimonial-card {
      background: #ffffff;
      border-radius: 10px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }

    .testimonial-card img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
    }

    .testimonial-card p {
      font-style: italic;
    }

    .testimonial-card span {
      font-weight: 500;
    }

    /* Newsletter */
    .newsletter {
      text-align: center;
    }

    .newsletter-form {
      display: flex;
      justify-content: center;
      gap: 10px;
      max-width: 480px;
      margin: 20px auto 0;
    }

    .newsletter-form input[type="email"] {
      flex: 1;
      padding: 12px 16px;
      border-radius: 6px;
      border: 1px solid #ddd;
      font-size: 1rem;
    }

    .newsletter-form button {
      padding: 12px 24px;
      background: #4caf50;
      color: #fff;
      border-radius: 6px;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .newsletter-form button:hover {
      background: #3d8b40;
    }

    /* Footer */
    footer {
      background-color: #4caf50;
      color: #fff;
      padding: 40px 20px 20px;
      margin-top: 50px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-section h3 {
      margin-bottom: 16px;
      font-size: 1.2rem;
    }

    .footer-section p,
    .footer-section a {
      margin: 8px 0;
      color: #fff;
      display: block;
    }

    .footer-section a:hover {
      text-decoration: underline;
    }

    .send-email input[type="email"] {
      padding: 10px;
      margin-top: 5px;
      margin-bottom: 10px;
      width: 100%;
      border: none;
      border-radius: 4px;
    }

    .send-email button {
      padding: 10px 20px;
      background-color: #ffc107;
      color: #000;
      border: none;
      border-radius: 4px;
      font-weight: 500;
      transition: background-color 0.3s;
    }

    .send-email button:hover {
      background-color: #e0a800;
    }

    .payment-icons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .payment-icons img {
      width: 50px;
      height: auto;
    }

    .copyright {
      text-align: center;
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.2);
    }

    /* Cart Popup */
    .cart-popup-container {
      position: fixed;
      right: 0;
      top: 84px;
      width: 100%;
      max-width: 400px;
      height: 70vh;
      padding: 0;
      display: flex;
      flex-direction: column;
      border: 1px solid rgb(53, 51, 51);
      background-color: rgb(238, 238, 238);
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
      z-index: 1000;
    }

    .cart-popup-container.show {
      transform: translateX(0%);
    }

    .cart-items-container {
      flex: 1;
      overflow-y: auto;
      padding: 16px;
    }

    .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 1px solid rgb(177, 177, 177);
      margin-bottom: 12px;
      padding: 12px;
      border-radius: 10px;
      background: white;
    }

    .cart-item .item-img-container img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 8px;
    }

    .item-details-container {
      flex: 1;
      margin-left: 12px;
    }

    .item-details-container p {
      margin: 0 0 8px 0;
      font-size: 16px;
    }

    .update-quantity-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .update-quantity-btn {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #4caf50;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .cart-footer {
      padding: 16px;
      border-top: 1px solid rgb(177, 177, 177);
      background: white;
    }

    .subtotal-container {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 16px;
      text-align: center;
    }

    .checkout-btn {
      width: 100%;
      height: 50px;
      border-radius: 10px;
      margin-bottom: 16px;
      font-size: 18px;
      font-weight: bold;
      background-color: #ffc107;
      color: #000;
      transition: background-color 0.3s;
    }

    .checkout-btn:hover {
      background-color: #e0a800;
    }

    .cart-note-container p {
      margin: 0;
      font-size: 14px;
      color: #666;
      text-align: center;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      body {
        padding-top: 70px;
      }

      .nav {
        padding: 10px 15px;
      }

      .menu-toggle {
        display: block;
      }

      .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 75%;
        max-width: 300px;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        gap: 16px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 2001;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
      }

      .nav-links.open {
        transform: translateX(0%);
      }

      .nav-links a {
        font-size: 18px;
        padding: 8px 0;
        width: 100%;
      }

      .hero {
        padding: 60px 15px;
        min-height: 350px;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .hero p {
        font-size: 1.1rem;
      }

      .features-scroller {
        flex-direction: column;
        gap: 20px;
      }

      .category-container,
      .products-container,
      .testimonial-grid {
        grid-template-columns: 1fr;
      }

      .promo-banner {
        flex-direction: column;
        text-align: center;
        margin: 20px 15px;
      }

      .newsletter-form {
        flex-direction: column;
        width: 100%;
      }

      .newsletter-form button {
        width: 100%;
      }

      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .cart-popup-container {
        top: 70px;
        max-width: 100%;
        height: calc(100vh - 70px);
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .category-container,
      .products-container {
        grid-template-columns: repeat(2, 1fr);
      }

      .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1025px) {
      .category-container,
      .products-container {
        grid-template-columns: repeat(4, 1fr);
      }

      .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }