
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", Arial, sans-serif;
    }

    body {
      color: #2f2f2f;
      background: #fff8f6;
    }

    header {
      min-height: 100vh;
      background:
        linear-gradient(rgba(60, 20, 40, 0.55), rgba(60, 20, 40, 0.55)),
        url("https://images.unsplash.com/photo-1490750967868-88aa4486c946?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
      color: white;
      display: flex;
      flex-direction: column;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 8%;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .logo {
      font-size: 28px;
      font-weight: 800;
      letter-spacing: 1px;
    }

    .logo span {
      color: #ffd3df;
    }

    nav ul {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 600;
    }

    nav a:hover {
      color: #ffd3df;
    }

    .hero {
      flex: 1;
      display: flex;
      align-items: center;
      padding: 0 8%;
      max-width: 900px;
    }

    .hero h1 {
      font-size: clamp(42px, 7vw, 78px);
      line-height: 1;
      margin-bottom: 22px;
    }

    .hero p {
      font-size: 20px;
      max-width: 650px;
      margin-bottom: 32px;
      color: #fff2f6;
    }

    .btn {
      display: inline-block;
      border: none;
      background: #c83f6b;
      color: white;
      padding: 15px 26px;
      border-radius: 999px;
      cursor: pointer;
      font-weight: 800;
      text-decoration: none;
      transition: 0.25s ease;
    }

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

    section {
      padding: 80px 8%;
    }

    .section-title {
      text-align: center;
      margin-bottom: 45px;
    }

    .section-title h2 {
      font-size: 40px;
      color: #84324f;
      margin-bottom: 12px;
    }

    .section-title p {
      color: #6e5d63;
      font-size: 18px;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      background:
        linear-gradient(rgba(255, 248, 246, 0.92), rgba(255, 248, 246, 0.92)),
        url("https://images.unsplash.com/photo-1468327768560-75b778cbb551?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
    }

    .feature {
      background: white;
      border-radius: 22px;
      padding: 28px;
      box-shadow: 0 15px 35px rgba(132, 50, 79, 0.12);
      text-align: center;
    }

    .feature div {
      font-size: 38px;
      margin-bottom: 14px;
    }

    .products {
      background: #fff;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 28px;
    }

    .product-card {
      background: #fff8f6;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 16px 36px rgba(60, 20, 40, 0.12);
      transition: 0.25s ease;
    }

    .product-card:hover {
      transform: translateY(-6px);
    }

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

    .product-info {
      padding: 22px;
    }

    .product-info h3 {
      color: #84324f;
      margin-bottom: 10px;
      font-size: 22px;
    }

    .product-info p {
      color: #6e5d63;
      margin-bottom: 16px;
      min-height: 48px;
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
    }

    .price {
      color: #c83f6b;
      font-size: 22px;
      font-weight: 900;
    }

    .cart-button {
      background: #84324f;
      color: white;
      border: none;
      padding: 12px 16px;
      border-radius: 999px;
      cursor: pointer;
      font-weight: 800;
    }

    .cart-button:hover {
      background: #c83f6b;
    }

    .extras-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 22px;
    }

    .extra-card {
      background: white;
      border: 2px solid #f4d7df;
      border-radius: 22px;
      padding: 24px;
      box-shadow: 0 12px 28px rgba(132, 50, 79, 0.08);
    }

    .extra-card h3 {
      color: #84324f;
      margin-bottom: 10px;
    }

    .extra-card p {
      color: #6e5d63;
      margin-bottom: 14px;
    }

    .extra-card strong {
      color: #c83f6b;
      font-size: 22px;
    }

    .cart-section {
      background:
        linear-gradient(rgba(132, 50, 79, 0.9), rgba(132, 50, 79, 0.9)),
        url("https://images.unsplash.com/photo-1487530811176-3780de880c2d?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
      color: white;
    }

    .cart-box {
      max-width: 850px;
      margin: auto;
      background: white;
      color: #2f2f2f;
      border-radius: 26px;
      padding: 28px;
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    }

    .cart-item {
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 16px;
      align-items: center;
      border-bottom: 1px solid #f0d4dc;
      padding: 14px 0;
    }

    .cart-item strong {
      color: #84324f;
    }

    .cart-actions {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .small-btn {
      width: 30px;
      height: 30px;
      border: none;
      border-radius: 50%;
      background: #f4d7df;
      color: #84324f;
      font-weight: 900;
      cursor: pointer;
    }

    .remove-btn {
      border: none;
      background: transparent;
      color: #c83f6b;
      font-weight: 800;
      cursor: pointer;
    }

    .total {
      display: flex;
      justify-content: space-between;
      font-size: 24px;
      font-weight: 900;
      color: #84324f;
      margin-top: 24px;
    }

    .whatsapp-btn {
      width: 100%;
      margin-top: 22px;
      background: #25d366;
      color: white;
      border: none;
      padding: 16px;
      border-radius: 16px;
      cursor: pointer;
      font-size: 17px;
      font-weight: 900;
    }

    .whatsapp-btn:hover {
      background: #1fb557;
    }

    .contact {
      background: #fff8f6;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      max-width: 1000px;
      margin: auto;
    }

    .contact-card {
      background: white;
      border-radius: 22px;
      padding: 28px;
      box-shadow: 0 12px 30px rgba(132, 50, 79, 0.1);
      text-align: center;
    }

    footer {
      background: #3c1428;
      color: white;
      text-align: center;
      padding: 28px 8%;
    }

    .empty-cart {
      text-align: center;
      color: #6e5d63;
      padding: 20px 0;
    }

    @media (max-width: 720px) {
      nav {
        flex-direction: column;
        gap: 16px;
      }

      nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
      }

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