
    :root {
      --color-bg:        #fdfaf5;
      --color-primary:   #4a7043;     /* forest green */
      --color-accent:    #c97c5d;     /* warm terracotta */
      --color-text:      #2f2f2f;
      --color-text-light:#6b7280;
      --color-card:      #ffffff;
      --radius:          16px;
      --shadow-sm:       0 4px 12px rgba(0,0,0,0.06);
      --shadow-md:       0 8px 24px rgba(0,0,0,0.08);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', system-ui, sans-serif;
      background: var(--color-bg);
      color: var(--color-text);
      line-height: 1.6;
      min-height: 100vh;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }


    .back-link {
      color: var(--color-primary);
      text-decoration: none;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.2s;
    }

    .back-link:hover {
      color: #3a5a35;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      color: var(--color-primary);
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      margin: 1.5rem 0 2.5rem;
      text-align: center;
    }

    /* Hero Product Highlight */
    .hero-product {
      background: linear-gradient(135deg, #e8f0e6 0%, #f5f0eb 100%);
      border-radius: var(--radius);
      padding: 2.5rem 2rem;
      margin-bottom: 3rem;
      box-shadow: var(--shadow-md);
      text-align: center;
    }

    .hero-product h2 {
      color: var(--color-primary);
      font-family: 'Playfair Display', serif;
      margin-bottom: 1rem;
    }

    .hero-product .tag {
      display: inline-block;
      background: var(--color-accent);
      color: white;
      padding: 0.35rem 1rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 1.2rem;
    }

    .benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.2rem;
      margin-top: 1.8rem;
    }

    .benefit-item {
      background: white;
      padding: 1.2rem;
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
    }

    /* Product Grid */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.8rem;
      margin-bottom: 4rem;
    }

    .product-card {
      background: var(--color-card);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.25s ease;
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-md);
    }

    .product-image {
      height: 240px;
      background: #f0f0f0;
      position: relative;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .product-card:hover .product-image img {
      transform: scale(1.06);
    }

    .product-info {
      padding: 1.4rem;
      text-align: center;
    }

    .product-info h3 {
      font-size: 1.22rem;
      margin-bottom: 0.6rem;
      color: var(--color-primary);
    }

    .price {
      font-size: 1.3rem;
      font-weight: 600;
      color: #c2410c;
      margin: 0.8rem 0;
    }

    .quantity {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.8rem;
      margin: 1rem 0;
    }

    .qty-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid #d1d5db;
      background: white;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.2s;
    }

    .qty-btn:hover {
      background: #f3f4f6;
    }

    .qty-display {
      min-width: 40px;
      text-align: center;
      font-weight: 600;
      font-size: 1.1rem;
    }

    .add-btn {
      background: var(--color-primary);
      color: white;
      border: none;
      padding: 0.9rem 1.6rem;
      border-radius: 50px;
      font-weight: 500;
      cursor: pointer;
      width: 100%;
      margin-top: 0.8rem;
      transition: all 0.25s;
    }

    .add-btn:hover {
      background: #3a5a35;
      transform: translateY(-2px);
    }

    /* Floating Cart */
    .floating-cart {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background: var(--color-accent);
      color: white;
      padding: 0.9rem 1.6rem;
      border-radius: 50px;
      box-shadow: 0 6px 20px rgba(201,124,93,0.35);
      text-decoration: none;
      font-weight: 600;
      z-index: 1000;
      transition: all 0.3s;
    }

    .floating-cart:hover {
      transform: scale(1.08);
      box-shadow: 0 10px 30px rgba(201,124,93,0.4);
    }

    @media (max-width: 640px) {
      .container { padding: 0 16px; }
      .hero-product { padding: 2rem 1.4rem; }
      .floating-cart {
        bottom: 16px;
        right: 16px;
        padding: 0.8rem 1.4rem;
        font-size: 0.95rem;
      }
    }
  