    :root {
      --primary: #254b43;
      --secondary: #d68d60;
      --primary-dark: #1c3933;
      --secondary-dark: #bf7950;
      --bg-light: #f7f4ef;
      --white: #ffffff;
      --text: #1f2a28;
      --muted: #6b7280;
      --border: rgba(37, 75, 67, 0.10);
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --radius: 18px;
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(180deg, #fcfbf8 0%, #f7f4ef 100%);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .products-page {
      padding: 70px 20px 80px;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .page-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .page-header .tag {
      display: inline-block;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(214, 141, 96, 0.12);
      color: var(--secondary-dark);
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 14px;
    }

    .page-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 46px;
      line-height: 1.15;
      color: var(--primary);
      margin-bottom: 14px;
    }

    .page-header p {
      max-width: 760px;
      margin: 0 auto;
      font-size: 16px;
      color: var(--muted);
    }

    .category-section {
      margin-bottom: 60px;
    }

    .category-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .category-title-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .category-badge {
      width: 42px;
      height: 42px;
      min-width: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 700;
      box-shadow: var(--shadow);
    }

    .category-title {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      color: var(--primary);
      margin: 0;
    }

    .category-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, rgba(37,75,67,0.2), rgba(214,141,96,0.25));
      min-width: 120px;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .product-card {
      background: rgba(255,255,255,0.92);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
      backdrop-filter: blur(6px);
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 35px rgba(37, 75, 67, 0.14);
    }

    .product-image {
      position: relative;
      height: 230px;
      overflow: hidden;
      background: #e9ece8;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-card:hover .product-image img {
      transform: scale(1.06);
    }

    .product-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(37,75,67,0.30), rgba(37,75,67,0.05));
    }

    .product-body {
      padding: 20px 18px 22px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .product-title {
      font-size: 18px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 16px;
      min-height: 54px;
    }

    .quick-btn {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 18px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      color: var(--white);
      font-weight: 600;
      font-size: 15px;
      transition: var(--transition);
      box-shadow: 0 8px 20px rgba(37, 75, 67, 0.16);
    }

    .quick-btn:hover {
      transform: translateY(-2px);
      opacity: 0.95;
    }

    .quick-btn span {
      font-size: 18px;
      line-height: 1;
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .products-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .products-page {
        padding: 50px 15px 60px;
      }

      .page-header h1 {
        font-size: 34px;
      }

      .page-header p {
        font-size: 15px;
      }

      .category-title {
        font-size: 24px;
      }

      .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
      }

      .product-image {
        height: 190px;
      }

      .product-title {
        font-size: 16px;
        min-height: 48px;
      }
    }

    @media (max-width: 480px) {
      .page-header h1 {
        font-size: 28px;
      }

      .products-grid {
        grid-template-columns: 1fr;
      }

      .product-image {
        height: 220px;
      }

      .product-body {
        padding: 18px 16px 20px;
      }
    }