body {
     margin: 0;
     font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     line-height: 1.6;
     background: #f7f7f7;
     color: #222;
   }
   header {
     position: sticky;
     top: 0;
     z-index: 10;
     background: #ffffffcc;
     backdrop-filter: blur(10px);
     border-bottom: 1px solid #eee;
   }
   .container {
     width: 90%;
     max-width: 1100px;
     margin: 0 auto;
   }
   nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0.5rem 0;
     gap: 1.5rem;
   }
   .brand {
     display: flex;
     align-items: center;
     gap: 0.75rem;
   }
  .brand img {
    height: 70px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }
   .brand-text {
     display: flex;
     flex-direction: column;
     font-size: 0.8rem;
     letter-spacing: 0.08em;
     text-transform: uppercase;
   }
   .brand-text strong {
     font-size: 0.9rem;
   }
   nav ul {
     list-style: none;
     display: flex;
     gap: 1rem;
     margin: 0;
     padding: 0;
     font-size: 0.95rem;
   }
   nav a {
     text-decoration: none;
     color: #333;
   }
   nav a:hover {
     text-decoration: underline;
   }
   .nav-actions {
     display: flex;
     gap: 0.5rem;
     align-items: center;
   }
   .nav-actions button {
     border-radius: 999px;
     border: 1px solid #444;
     background: #fff;
     cursor: pointer;
     padding: 0.35rem 0.9rem;
     font-size: 0.8rem;
   }

   .hero-wrapper {
     background: #fff;
   }
   .hero {
     padding: 3.5rem 0 3rem;
     display: grid;
     grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
     gap: 2rem;
     align-items: center;
   }
   .hero h1 {
     font-size: clamp(2rem, 3vw + 1rem, 3rem);
     margin-bottom: 1rem;
   }
   .hero-subtitle {
     font-weight: 600;
     color: #555;
     margin-bottom: 0.25rem;
     font-size: 0.95rem;
     text-transform: uppercase;
     letter-spacing: 0.12em;
   }
   .hero p {
     font-size: 1.02rem;
     margin-bottom: 1rem;
   }
   .hero-tagline {
     font-weight: 600;
     margin-bottom: 1.3rem;
   }
   .hero-price {
     font-weight: 700;
     font-size: 1.1rem;
     margin-bottom: 1.2rem;
   }
   .hero-bullets {
     font-size: 0.93rem;
     margin-bottom: 1.5rem;
     color: #444;
   }
   .hero-bullets span {
     display: inline-block;
     margin-right: 0.7rem;
   }
   .hero-buttons {
     display: flex;
     flex-wrap: wrap;
     gap: 0.75rem;
   }
   .btn-primary,
   .btn-secondary {
     border: none;
     cursor: pointer;
     padding: 0.8rem 1.6rem;
     border-radius: 999px;
     font-size: 0.95rem;
   }
   .btn-primary {
     background: #e53935;
     color: #fff;
   }
   .btn-primary:hover {
     background: #c62828;
   }
   .btn-secondary {
     background: #fff;
     color: #e53935;
     border: 1px solid #e53935;
   }
  .hero-image img {
    width: auto;
    height: auto;
    max-width: 500px;
    border-radius: 1rem;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    object-fit: contain;
    aspect-ratio: 1 / 1;
  }

   section {
     padding: 3rem 0;
   }
   section:nth-of-type(odd) {
     background: #ffffff;
   }
   section:nth-of-type(even) {
     background: #f1f1f1;
   }
   section h2 {
     font-size: 1.8rem;
     margin-bottom: 1rem;
     text-align: center;
   }
   section p.section-intro {
     max-width: 700px;
     margin: 0 auto 2rem;
     text-align: center;
     font-size: 1rem;
     color: #555;
   }

   .grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
     gap: 1.5rem;
   }
   .card {
     background: #fff;
     border-radius: 1rem;
     padding: 1.5rem;
     box-shadow: 0 6px 15px rgba(0,0,0,0.04);
   }
   .card h3 {
     margin-top: 0;
     margin-bottom: 0.5rem;
     font-size: 1.1rem;
     color: #333;
   }
   .card p {
     margin: 0;
     font-size: 0.95rem;
     color: #555;
   }

   .family-list {
     display: grid;
     gap: 1rem;
     max-width: 800px;
     margin: 0 auto;
   }
   .family-list li {
     list-style: none;
     padding-left: 1.8rem;
     position: relative;
     font-size: 0.97rem;
   }
   .family-list li::before {
     content: "•";
     position: absolute;
     left: 0.5rem;
     top: 0.1rem;
     color: #e53935;
     font-size: 1.3rem;
   }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }
  .gallery-grid img {
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 0.75rem;
    display: block;
    max-width: 100%;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  .gallery-grid img:hover {
    transform: scale(1.02);
  }
  .gallery-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: opacity 0.3s ease;
    opacity: 0;
  }
  .gallery-popup img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    pointer-events: auto;
  }
  .order-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
  }
  .order-popup.success {
    background: rgba(46, 125, 50, 0.2);
  }
  .order-popup.error {
    background: rgba(198, 40, 40, 0.2);
  }
  .order-popup-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
  }
  .order-popup-content h2 {
    margin-top: 0;
    color: #e53935;
    font-size: 1.8rem;
  }
  .order-popup-content p {
    margin: 1rem 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
  }
  .order-popup-content strong {
    color: #e53935;
  }
  .order-popup-messages {
    margin: 1rem 0 1.5rem;
  }
  .order-popup-messages p {
    margin: 0.4rem 0;
    color: #444;
  }
  .order-popup.success .order-popup-content {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
  }
  .order-popup.success .order-popup-content h2,
  .order-popup.success .order-popup-content strong {
    color: #2e7d32;
  }
  .order-popup.error .order-popup-content {
    background: #fdecea;
    border: 1px solid #f5c6cb;
  }
  .order-popup.error .order-popup-content h2,
  .order-popup.error .order-popup-content strong {
    color: #c62828;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes slideDown {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .about-image-wrapper {
    margin-top: 2.5rem;
  }
  .about-image-wrapper img {
    width: auto;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: block;
    margin: 0 auto;
  }

  .card-image {
    width: auto;
    height: auto;
    max-height: 230px;
    max-width: 100%;
    object-fit: cover;
    margin: 0.75rem auto;
    border-radius: 0.75rem;
    display: block;
  }

  .how-it-works-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 0 auto;
    border-radius: 1rem;
  }

   .testimonials {
     max-width: 800px;
     margin: 0 auto;
     display: grid;
     gap: 1rem;
   }
   .testimonial {
     background: #fff;
     border-left: 4px solid #e53935;
     padding: 1rem 1.25rem;
     border-radius: 0.75rem;
     font-size: 0.95rem;
   }
   .testimonial .name {
     margin-top: 0.5rem;
     font-weight: 600;
     font-size: 0.9rem;
     color: #333;
   }

   .cta-box {
     max-width: 800px;
     margin: 0 auto;
     background: #333;
     color: #fff;
     border-radius: 1rem;
     padding: 2rem;
     text-align: center;
   }
   .cta-box p {
     margin-bottom: 1.5rem;
   }

   .contact-row {
     display: grid;
     grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
     gap: 2rem;
     margin-top: 2rem;
     align-items: start;
   }
   form {
     display: grid;
     gap: 0.75rem;
   }
   label {
     font-size: 0.9rem;
     font-weight: 600;
   }
   input, textarea {
     width: 100%;
     padding: 0.6rem 0.75rem;
     border-radius: 0.5rem;
     border: 1px solid #ccc;
     font-size: 0.95rem;
     font-family: inherit;
   }
   textarea {
     min-height: 120px;
     resize: vertical;
   }
   .social-links a {
     color: #e53935;
     text-decoration: none;
   }
   .social-links a:hover {
     text-decoration: underline;
   }
   footer {
     text-align: center;
     padding: 1.5rem 0 2rem;
     font-size: 0.85rem;
     color: #666;
   }

  #order-form.order-form-single {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .order-form-single input,
  .order-form-single textarea,
  .order-form-single select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    color: #333;
  }
  .order-form-single textarea {
    min-height: 120px;
    resize: vertical;
  }
  .order-form-single input::placeholder,
  .order-form-single textarea::placeholder {
    color: #999;
  }
  .order-form-single .qty-row,
  .order-form-single .payment-row {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .order-form-single .qty-row label,
  .order-form-single .payment-row label {
    font-weight: 600;
    color: #f5f5f5;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .order-form-single .qty-input {
    width: auto;
    min-width: 100px;
    max-width: 150px;
    background: #f5f5f5;
  }
  .order-form-single .payment-row select {
    width: auto;
    flex: 1;
  }
  .order-summary {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    margin: 1rem 0;
  }
  .order-summary span {
    color: #f5f5f5;
  }
  .order-summary strong {
    color: #fff;
    font-size: 1.1rem;
  }
  .btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    width: auto;
    align-self: flex-start;
  }
  .order-hint {
    font-size: 0.85rem;
    color: #e0e0e0;
    margin-top: 0.5rem;
  }
  .order-hint.small {
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }
  .order-hint a {
    color: #fff;
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    nav ul {
      display: none; /* simple mobile version – can add burger menu later */
    }
    .nav-actions {
      display: none;
    }
    .hero {
      grid-template-columns: 1fr;
    }
    .hero-image img {
      max-width: 100%;
      aspect-ratio: 4 / 3;
    }
    .contact-row {
      grid-template-columns: 1fr;
    }
    .gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .gallery-grid img {
      height: 180px;
    }
    .about-image-wrapper img {
      max-height: 300px;
    }
    .order-form-single .qty-row,
    .order-form-single .payment-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .order-form-single .qty-input,
    .order-form-single .payment-row select {
      width: 100%;
      max-width: 100%;
    }
    .card-image {
      max-height: 180px;
    }
    .how-it-works-image {
      max-width: 100%;
    }
  }