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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: #292524;
      background: linear-gradient(135deg, #fff1f2, #fdf2f8, #ecfdf5);
      min-height: 100vh;
    }

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

    .container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 70px 0 55px;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      filter: blur(55px);
      opacity: 0.7;
      z-index: 0;
    }

    .hero::before {
      width: 260px;
      height: 260px;
      background: #fbcfe8;
      left: -90px;
      top: 40px;
    }

    .hero::after {
      width: 300px;
      height: 300px;
      background: #bbf7d0;
      right: -90px;
      bottom: 0;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 48px;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.8);
      color: #e11d48;
      border-radius: 999px;
      padding: 10px 16px;
      font-size: 14px;
      font-weight: 700;
      box-shadow: 0 8px 22px rgba(244, 63, 94, 0.12);
      margin-bottom: 24px;
    }

    h1 {
      font-size: clamp(42px, 7vw, 76px);
      line-height: 0.95;
      letter-spacing: -3px;
      color: #1c1917;
      margin-bottom: 24px;
    }

    .hero p {
      max-width: 650px;
      color: #57534e;
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      border: none;
      border-radius: 999px;
      padding: 15px 24px;
      cursor: pointer;
      font-weight: 800;
      font-size: 15px;
      transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

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

    .btn-primary {
      color: white;
      background: #f43f5e;
      box-shadow: 0 14px 28px rgba(244, 63, 94, 0.28);
    }

    .btn-primary:hover {
      background: #e11d48;
    }

    .btn-outline {
      color: #292524;
      border: 1px solid #fecdd3;
      background: rgba(255, 255, 255, 0.72);
    }

    .hero-image-card {
      position: relative;
      background: white;
      padding: 16px;
      border-radius: 42px;
      box-shadow: 0 28px 70px rgba(244, 63, 94, 0.25);
    }

    .hero-image-card img {
      width: 100%;
      height: 460px;
      object-fit: cover;
      border-radius: 32px;
      display: block;
    }

    .price-floating {
      position: absolute;
      left: 38px;
      bottom: -24px;
      background: rgba(255, 255, 255, 0.92);
      border-radius: 28px;
      padding: 16px 24px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

    .price-floating small {
      color: #78716c;
    }

    .price-floating strong {
      display: block;
      font-size: 34px;
      color: #f43f5e;
    }

    section {
      padding: 55px 0;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: end;
      margin-bottom: 34px;
    }

    .eyebrow {
      color: #f43f5e;
      font-weight: 800;
      margin-bottom: 8px;
    }

    h2 {
      color: #1c1917;
      font-size: clamp(32px, 4vw, 46px);
      letter-spacing: -1.5px;
    }

    .section-header p {
      max-width: 520px;
      color: #57534e;
      line-height: 1.7;
    }

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

    .product-card {
      overflow: hidden;
      border-radius: 32px;
      background: rgba(255, 255, 255, 0.86);
      box-shadow: 0 18px 40px rgba(244, 63, 94, 0.12);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(244, 63, 94, 0.22);
    }

    .product-image {
      position: relative;
      height: 255px;
      overflow: hidden;
    }

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

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

    .product-price {
      position: absolute;
      right: 16px;
      top: 16px;
      background: rgba(255, 255, 255, 0.92);
      color: #f43f5e;
      font-size: 20px;
      font-weight: 900;
      border-radius: 999px;
      padding: 9px 15px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    }

    .product-body {
      padding: 24px;
    }

    .product-body h3 {
      color: #1c1917;
      font-size: 24px;
      margin-bottom: 10px;
    }

    .product-body p {
      color: #57534e;
      line-height: 1.65;
      font-size: 14px;
      margin-bottom: 18px;
    }

    .btn-cart {
      width: 100%;
      background: #10b981;
      color: white;
    }

    .btn-cart:hover {
      background: #059669;
    }

    .cart-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 28px;
      align-items: start;
    }

    .cart-box,
    .summary-box {
      border-radius: 32px;
      padding: 26px;
      box-shadow: 0 18px 45px rgba(244, 63, 94, 0.14);
    }

    .cart-box {
      background: rgba(255, 255, 255, 0.86);
    }

    .summary-box {
      background: #1c1917;
      color: white;
      position: sticky;
      top: 20px;
    }

    .cart-empty {
      background: #fff1f2;
      border-radius: 26px;
      color: #57534e;
      padding: 34px;
      text-align: center;
      margin-top: 20px;
    }

    .cart-items {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 20px;
    }

    .cart-item {
      display: grid;
      grid-template-columns: 86px 1fr auto auto auto;
      gap: 14px;
      align-items: center;
      background: rgba(255, 241, 242, 0.8);
      border-radius: 24px;
      padding: 14px;
    }

    .cart-item img {
      width: 86px;
      height: 86px;
      object-fit: cover;
      border-radius: 18px;
    }

    .cart-item h3 {
      font-size: 16px;
      margin-bottom: 5px;
    }

    .cart-item small {
      color: #78716c;
    }

    .quantity-controls {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .qty-btn,
    .delete-btn {
      width: 34px;
      height: 34px;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      font-weight: 900;
      background: white;
      color: #292524;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    }

    .delete-btn {
      color: #e11d48;
      font-size: 17px;
    }

    .cart-subtotal {
      color: #f43f5e;
      font-weight: 900;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      color: #d6d3d1;
      margin: 18px 0;
    }

    .summary-total {
      display: flex;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 20px;
      margin: 22px 0;
      font-size: 22px;
      font-weight: 900;
    }

    .btn-whatsapp {
      width: 100%;
      background: #22c55e;
      color: white;
      margin-top: 6px;
    }

    .btn-whatsapp:hover {
      background: #16a34a;
    }

    .btn-whatsapp:disabled {
      background: #57534e;
      cursor: not-allowed;
      transform: none;
    }

    .summary-note {
      text-align: center;
      color: #a8a29e;
      font-size: 12px;
      line-height: 1.6;
      margin-top: 14px;
    }

    footer {
      text-align: center;
      color: #78716c;
      padding: 34px 16px;
      font-size: 14px;
    }

    @media (max-width: 960px) {
      .hero-grid,
      .cart-grid {
        grid-template-columns: 1fr;
      }

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

      .summary-box {
        position: static;
      }
    }

    @media (max-width: 640px) {
      .section-header {
        display: block;
      }

      .section-header p {
        margin-top: 12px;
      }

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

      .hero-image-card img {
        height: 340px;
      }

      .cart-item {
        grid-template-columns: 76px 1fr;
      }

      .cart-item img {
        width: 76px;
        height: 76px;
      }

      .quantity-controls,
      .cart-subtotal,
      .delete-btn {
        grid-column: 2;
      }

      h1 {
        letter-spacing: -2px;
      }
    }