  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  :root {
    --pink: #FF6B9D;
    --yellow: #FFD93D;
    --purple: #A855F7;
    --teal: #06B6D4;
    --orange: #FF8C42;
    --bg: #FFF8F0;
    --text: #2D1B4E;
    --card-radius: 24px;
  }

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: white;
    border-bottom: 3px dashed #FFD93D;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--purple);
    letter-spacing: 1px;
    text-decoration: none;
  }
  .nav-logo span { color: var(--pink); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    text-decoration: none;
    font-weight: 700;
    color: var(--text);
    font-size: 1rem;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--purple); }
  .nav-order-button { padding: 0.65rem 1.5rem; font-size: 0.95rem; }

  /* HERO */
  .hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    background: linear-gradient(160deg, #FFF0FA 0%, #F0F0FF 50%, #F0FFF8 100%);
    overflow: hidden;
  }

  /* Floating decorative shapes */
  .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    animation: float 6s ease-in-out infinite;
  }
  .s1 { width: 180px; height: 180px; background: var(--pink); top: 5%; left: 5%; animation-delay: 0s; }
  .s2 { width: 120px; height: 120px; background: var(--yellow); top: 15%; right: 8%; animation-delay: 1s; }
  .s3 { width: 90px; height: 90px; background: var(--teal); bottom: 20%; left: 10%; animation-delay: 2s; }
  .s4 { width: 150px; height: 150px; background: var(--purple); bottom: 10%; right: 5%; animation-delay: 0.5s; }
  .s5 { width: 70px; height: 70px; background: var(--orange); top: 50%; left: 2%; animation-delay: 1.5s; }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
  }

  @media (prefers-reduced-motion: reduce) {
    .shape {
      animation: none;
    }
    .nav-cart-btn.is-bump {
      animation: none;
    }
  }

  .hero-badge {
    background: var(--yellow);
    color: #7A5500;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: inline-block;
  }

  .hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero p {
    font-size: 1.25rem;
    color: #6B5580;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 600;
  }

  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

  .btn-primary {
    background: var(--purple);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px rgba(168,85,247,0.35);
    font-family: 'Nunito', sans-serif;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(168,85,247,0.45); }

  .btn-secondary {
    background: white;
    color: var(--purple);
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2.5px solid var(--purple);
    cursor: pointer;
    transition: transform 0.15s, background 0.15s;
    font-family: 'Nunito', sans-serif;
  }
  .btn-secondary:hover { background: #F5EEFF; transform: translateY(-2px); }

  /* FOUNDERS */
  .section { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.6rem;
    display: block;
  }
  .section-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--text);
    margin-bottom: 2.5rem;
  }

  .founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .founder-card {
    background: white;
    border-radius: var(--card-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2.5px solid transparent;
    transition: transform 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
  }
  .founder-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
  }
  .founder-card.arjun { border-color: #E9D5FF; }
  .founder-card.arjun::before { background: linear-gradient(90deg, var(--purple), var(--teal)); }
  .founder-card.niya { border-color: #FFD6E8; }
  .founder-card.niya::before { background: linear-gradient(90deg, var(--pink), var(--orange)); }
  .founder-card:hover { transform: translateY(-6px); }

  .founder-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    overflow: hidden;
  }
  .arjun .founder-avatar { background: #EDE9FE; }
  .niya .founder-avatar { background: #FFE4F0; }
  .founder-avatar picture,
  .founder-avatar img {
    display: block;
    width: 100%;
    height: 100%;
  }
  .founder-avatar img {
    object-fit: cover;
  }

  .founder-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.7rem;
    margin-bottom: 0.3rem;
  }
  .arjun .founder-name { color: var(--purple); }
  .niya .founder-name { color: var(--pink); }

  .founder-role {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .arjun .founder-role { color: var(--teal); }
  .niya .founder-role { color: var(--orange); }

  .founder-bio {
    font-size: 0.97rem;
    color: #6B5580;
    line-height: 1.75;
  }

  /* WHY ARNI */
  .why-section {
    background: #FFF8F0;
    padding: 5rem 2rem;
  }
  .why-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  .why-card {
    background: white;
    border-radius: 18px;
    padding: 1.8rem 1.5rem;
    border: 2px solid #F0E8FF;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .why-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wi1 { background: #FFF0FA; }
  .wi2 { background: #F0F0FF; }
  .wi3 { background: #FFFBEA; }
  .wi4 { background: #F0FFF8; }

  .why-text h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.35rem;
  }
  .why-text p {
    font-size: 0.9rem;
    color: #6B5580;
    line-height: 1.65;
  }

  /* ORDER SECTION */
  .order-section {
    background: linear-gradient(135deg, #7C3AED, #A855F7, #EC4899);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .order-section::before {
    content: '🎀 ✨ 📌 💜 🎨';
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    opacity: 0.25;
    white-space: nowrap;
    letter-spacing: 2rem;
  }

  .order-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    color: white;
    margin-bottom: 2.5rem;
  }

  .order-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
  }
  .order-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: var(--purple);
    margin-bottom: 0.5rem;
  }
  .order-card p {
    font-size: 0.95rem;
    color: #6B5580;
    margin-bottom: 1.8rem;
    line-height: 1.6;
  }

  /* FOOTER */
  footer {
    background: var(--text);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
  }
  footer .footer-logo {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
  }
  footer p {
    color: #C4B5E8;
    font-size: 0.9rem;
    margin-top: 0.4rem;
    line-height: 1.7;
  }
  footer a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 700;
  }
  footer a:hover { text-decoration: underline; }
  footer picture { display: block; }
  .footer-photo {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--yellow);
    margin: 0 auto 1rem;
    display: block;
  }
  .footer-hearts {
    font-size: 1.5rem;
    margin: 1rem 0;
    letter-spacing: 0.4rem;
  }
  .footer-contact { margin-top: 0.7rem; }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.1rem;
    margin-top: 1.2rem;
  }
  .footer-links a { font-size: 0.9rem; }
  .footer-copyright { margin-top: 1.5rem; font-size: 0.8rem; color: #7C6AA6; }

  /* FORM STYLES */
  .customer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
  .form-group label,
  .form-group legend { font-size: 0.85rem; font-weight: 800; color: var(--text); }
  fieldset.form-group {
    border: 0;
    padding: 0;
    margin: 0 0 1rem;
    min-width: 0;
  }
  .form-group input, .form-group textarea {
    padding: 0.75rem 1rem; border: 2px solid #E9D5FF; border-radius: 12px;
    font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: var(--text);
    outline: none; transition: border-color 0.2s; background: white;
    width: 100%; box-sizing: border-box;
  }
  .form-group input:focus, .form-group textarea:focus { border-color: var(--purple); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .submit-btn {
    width: 100%; margin-top: 0.5rem; text-align: center;
  }
  .success-msg {
    display: none; background: #F0FFF8; border: 2px solid #22C55E;
    border-radius: 14px; padding: 1.5rem; text-align: center; color: #166534;
    font-weight: 700; font-size: 1rem; margin-top: 1rem; line-height: 1.6;
  }
  .success-detail { margin-top: 0.8rem; }
  .honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
  .price-summary {
    display: none;
    background: #FFFBEA;
    border: 2px solid #FFE88A;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    margin: -0.2rem 0 1rem;
    color: var(--purple);
    font-weight: 700;
    font-size: 1.1rem;
  }
  .product-options { display: grid; gap: 0.7rem; }
  .product-option {
    display: grid;
    grid-template-columns: auto 1fr 90px;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    background: white;
    border: 2px solid #E9D5FF;
    border-radius: 12px;
  }
  .product-option label { cursor: pointer; }
  .product-option:has(input[type="checkbox"]:checked) {
    border-color: var(--purple);
    background: #FAF5FF;
  }
  .product-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--purple);
  }
  .product-option input[type="number"] {
    padding: 0.55rem 0.65rem;
    text-align: center;
  }
  .product-option-name { font-weight: 800; }
  .product-option-price { color: #7C6AA6; font-size: 0.85rem; }
  .shipping-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: white;
    border: 2px solid #E9D5FF;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
  }
  .shipping-option:has(input:checked) { border-color: var(--purple); background: #FAF5FF; }
  .shipping-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--purple);
  }

  @media (max-width: 640px) {
    nav {
      padding: 1rem 1.2rem;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    .nav-links {
      order: 3;
      width: 100%;
      gap: 0.75rem 1.1rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .nav-links a { font-size: 0.9rem; }
    .founders-grid, .why-grid, .customer-grid { grid-template-columns: 1fr; }
    .nav-order-button { padding: 0.55rem 1rem; font-size: 0.85rem; }
    .catalog-admin-login-row { flex-direction: column; }
    .catalog-admin-login-row .btn-primary { width: 100%; text-align: center; justify-content: center; }
    .catalog-upload-header { flex-direction: column; align-items: flex-start; }
    .catalog-upload-controls { flex-direction: column; align-items: stretch; }
    .review-form-grid { grid-template-columns: 1fr; }
  }

  /* CATALOG */
  .catalog-section {
    background: linear-gradient(165deg, #F3E8FF 0%, #EDE4FF 45%, #F8F0FF 100%);
    padding: 5rem 0;
  }
  .catalog-inner,
  .reviews-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

  .catalog-intro,
  .reviews-intro {
    max-width: 640px;
    color: #6B5580;
    font-weight: 600;
    line-height: 1.7;
    margin: -0.5rem 0 2rem;
    text-align: left;
  }

  .catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 2rem;
  }
  .catalog-filter {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    border: 2px solid #E9D5FF;
    background: white;
    color: var(--text);
    padding: 0.55rem 1.1rem;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
  }
  .catalog-filter:hover { border-color: var(--purple); transform: translateY(-1px); }
  .catalog-filter.is-active {
    background: var(--purple);
    border-color: var(--purple);
    color: white;
  }

  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
  }

  .catalog-card {
    background: white;
    border: 2px solid #F0E8FF;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(168,85,247,0.15);
  }
  .catalog-card-meta { padding: 0.85rem 1rem 1rem; }
  .catalog-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
  }
  .catalog-card-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7C3AED;
    background: #F3E8FF;
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
  }
  .catalog-card-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: var(--text);
    font-weight: 400;
    line-height: 1.3;
  }
  .catalog-card-remove {
    margin-top: 0.55rem;
    border: none;
    background: transparent;
    color: var(--pink);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
  }

  .catalog-empty {
    text-align: center;
    color: #6B5580;
    font-weight: 700;
    padding: 2rem 1rem 1rem;
  }

  .catalog-upload {
    margin-top: 2.75rem;
    background: white;
    border: 3px dashed #D8B4FE;
    border-radius: 24px;
    padding: 1.75rem;
    text-align: left;
  }
  .catalog-upload h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.35rem;
    color: var(--purple);
  }
  .catalog-upload p {
    color: #6B5580;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .catalog-upload-fields {
    margin-bottom: 1rem;
  }
  .catalog-upload-fields .catalog-admin-field {
    margin-bottom: 0;
  }

  .catalog-upload-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
  }
  .catalog-upload select {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
    border: 2px solid #E9D5FF;
    border-radius: 12px;
    background: #FAF5FF;
    color: var(--text);
  }
  .catalog-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
  }
  .catalog-upload input[type="file"] { display: none; }
  .catalog-dropzone.is-dragover {
    border-color: var(--purple);
    background: #FAF5FF;
  }

  .catalog-admin {
    margin-top: 2.5rem;
    text-align: center;
  }
  .catalog-admin-link {
    background: none;
    border: none;
    color: #B8A4D4;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .catalog-admin-link:hover { color: var(--purple); }
  .catalog-admin[hidden],
  .catalog-admin-link[hidden],
  .catalog-admin-login[hidden],
  .catalog-dropzone[hidden] {
    display: none !important;
  }

  .catalog-admin-field {
    display: block;
    text-align: left;
    margin-bottom: 0.85rem;
  }
  .catalog-admin-field[hidden] {
    display: none !important;
  }
  .catalog-admin-field span {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.35rem;
  }
  .catalog-admin-field input,
  .catalog-admin-field select {
    width: 100%;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 2px solid #E9D5FF;
    border-radius: 12px;
    background: #FAF5FF;
    color: var(--text);
  }
  .catalog-upload-status {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 0.92rem;
    color: #6B5580;
    line-height: 1.5;
  }
  .catalog-upload code {
    font-size: 0.85em;
    background: #FAF5FF;
    padding: 0.1rem 0.35rem;
    border-radius: 6px;
  }

  .catalog-admin-login {
    margin-top: 1rem;
    background: white;
    border: 2px solid #E9D5FF;
    border-radius: 24px;
    padding: 1.5rem;
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .catalog-admin-login h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.25rem;
    color: var(--purple);
    margin-bottom: 0.35rem;
  }
  .catalog-admin-login > p {
    color: #6B5580;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  .catalog-admin-login-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
  }
  .catalog-admin-error {
    color: #BE185D;
    font-weight: 700;
    font-size: 0.88rem;
    margin-top: 0.75rem;
  }
  .catalog-admin-cancel,
  .catalog-admin-logout {
    margin-top: 0.85rem;
    background: none;
    border: none;
    color: #6B5580;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0;
  }
  .catalog-upload-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.4rem;
  }
  .catalog-upload-header h3 { margin-bottom: 0; }
  .catalog-admin-logout { margin-top: 0; }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .nav-actions { display: flex; align-items: center; gap: 0.75rem; }
  .nav-cart-btn {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #E9D5FF;
    background: white;
    cursor: pointer;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, border-color 0.15s;
  }
  .nav-cart-btn:hover { border-color: var(--purple); transform: translateY(-1px); }
  .nav-cart-btn.is-bump { animation: cartBump 0.35s ease; }
  @keyframes cartBump {
    0% { transform: scale(1); }
    40% { transform: scale(1.12); }
    100% { transform: scale(1); }
  }
  .nav-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 100px;
    background: var(--pink);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .catalog-card-media {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
  }
  .catalog-card-media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    background: #FAF5FF;
  }
  .catalog-cart-btn {
    flex-shrink: 0;
    border: none;
    border-radius: 100px;
    background: var(--purple);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 0.2rem 0.55rem;
    cursor: pointer;
    line-height: 1.2;
  }
  .catalog-cart-btn:hover { transform: translateY(-1px); }
  .catalog-card-price {
    margin-top: 0.35rem;
    color: var(--purple);
    font-weight: 800;
    font-size: 0.95rem;
  }

  body.cart-open,
  body.lightbox-open { overflow: hidden; }

  .lightbox {
    --lightbox-chrome: 150px;
    --lightbox-max-w: 1100px;
    --lightbox-max-h: 900px;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(45, 27, 78, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  .lightbox[hidden] { display: none !important; }
  .lightbox-figure {
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  .lightbox-stage {
    flex-shrink: 0;
    max-width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    display: flex;
    touch-action: none;
    cursor: zoom-in;
  }
  .lightbox-stage.is-zoomed { cursor: grab; }
  .lightbox-stage.is-panning { cursor: grabbing; }
  .lightbox-stage img {
    max-width: min(var(--lightbox-max-w), 92vw);
    max-height: min(calc(100dvh - var(--lightbox-chrome)), var(--lightbox-max-h));
    background: #FAF5FF;
    display: block;
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
  }
  .lightbox-caption {
    color: white;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    text-align: center;
  }
  .lightbox-zoom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .lightbox-zoom button {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.14);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
  }
  .lightbox-zoom button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.28);
  }
  .lightbox-zoom button:disabled {
    opacity: 0.4;
    cursor: default;
  }
  .lightbox-zoom-level {
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    min-width: 4ch;
    text-align: center;
  }
  .lightbox-hint {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-align: center;
  }
  @media (max-height: 620px) {
    .lightbox { --lightbox-chrome: 120px; }
    .lightbox-hint { display: none; }
  }
  .lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.14);
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
  }
  .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.28);
  }
  .cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(45, 27, 78, 0.35);
    z-index: 200;
  }
  .cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100%;
    background: white;
    z-index: 210;
    box-shadow: -8px 0 30px rgba(45,27,78,0.15);
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.25rem 1.5rem;
    overflow: auto;
  }
  .cart-backdrop[hidden],
  .cart-drawer[hidden] {
    display: none !important;
  }
  .cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  .cart-drawer-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.6rem;
    color: var(--purple);
  }
  .cart-close {
    border: 2px solid #E9D5FF;
    background: #FAF5FF;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    color: var(--purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
  }
  .cart-close:hover {
    background: white;
    border-color: var(--purple);
    transform: translateX(2px);
  }
  .cart-close svg {
    width: 20px;
    height: 20px;
    display: block;
  }
  .cart-empty {
    color: #6B5580;
    font-weight: 700;
    text-align: center;
    padding: 2rem 1rem;
  }
  .cart-empty a {
    color: var(--purple);
    text-decoration: underline;
    text-underline-offset: 0.15em;
  }
  .cart-empty a:hover {
    color: var(--pink);
  }
  .cart-items { display: flex; flex-direction: column; gap: 1rem; }
  .cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 0.75rem;
    align-items: start;
    padding-bottom: 1rem;
    border-bottom: 1px solid #F0E8FF;
  }
  .cart-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    background: #FAF5FF;
  }
  .cart-item-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.2rem;
  }
  .cart-item-meta {
    color: #6B5580;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
  }
  .cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 2px solid #E9D5FF;
    background: white;
    font-weight: 800;
    cursor: pointer;
  }
  .cart-qty {
    min-width: 1.25rem;
    text-align: center;
    font-weight: 800;
  }
  .cart-item-remove {
    border: none;
    background: none;
    color: var(--pink);
    font-weight: 800;
    font-size: 0.78rem;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
  }
  .cart-item-total {
    font-weight: 800;
    color: var(--purple);
    white-space: nowrap;
  }
  .cart-summary { margin-top: 1.25rem; }
  .cart-shipping {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    cursor: pointer;
  }
  .cart-totals {
    background: #FAF5FF;
    border-radius: 16px;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
  }
  .cart-totals > div {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: #6B5580;
    margin-bottom: 0.35rem;
  }
  .cart-total-row {
    color: var(--text) !important;
    font-size: 1.05rem;
    margin-top: 0.35rem;
    padding-top: 0.45rem;
    border-top: 1px solid #E9D5FF;
  }
  .cart-checkout-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .cart-checkout-fields label span {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
  }
  .cart-checkout-fields input,
  .cart-checkout-fields textarea {
    width: 100%;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.7rem 0.9rem;
    border: 2px solid #E9D5FF;
    border-radius: 12px;
    background: white;
    color: var(--text);
  }
  .cart-checkout-fields textarea { min-height: 72px; resize: vertical; }
  .cart-place-btn { width: 100%; text-align: center; justify-content: center; }
  .cart-status {
    margin-top: 0.85rem;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  /* REVIEWS */
  .reviews-section {
    background: linear-gradient(165deg, #E6FAF5 0%, #DFF7F0 50%, #ECFCF8 100%);
    padding: 5rem 0;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
  #about,
  #catalog,
  #reviews,
  #order { scroll-margin-top: 100px; }
  .review-card {
    background: white;
    border: 2px solid #F0E8FF;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .review-card-body { padding: 1.15rem 1.2rem 1rem; order: 1; }
  .review-card-stars {
    color: #F5A623;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
  }
  .review-card-stars .is-empty { color: #E3D6F5; }
  .review-card-text {
    margin: 0 0 0.6rem;
    color: var(--text);
    font-weight: 700;
    line-height: 1.55;
  }
  .review-card-attribution {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: var(--purple);
  }
  .review-card-date {
    margin-top: 0.3rem;
    color: #7C6AA6;
    font-weight: 800;
    font-size: 0.85rem;
  }
  .review-card-actions {
    margin-top: 0.85rem;
  }
  .review-card picture,
  .review-card > img {
    display: block;
    width: 100%;
    order: 2;
    background: #FAF5FF;
    border-top: 1px solid #F0E8FF;
  }
  .review-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    display: block;
    background: #FAF5FF;
  }
  .reviews-empty {
    text-align: center;
    color: #6B5580;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  .review-form-card {
    background: white;
    border: 2px solid #E9D5FF;
    border-radius: 24px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
  }
  .review-form-card h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--purple);
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
  }
  .review-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
  .review-form-grid.is-admin-publish {
    grid-template-columns: 1fr;
  }
  .review-form-card textarea {
    width: 100%;
    min-height: 110px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 2px solid #E9D5FF;
    border-radius: 12px;
    background: #FAF5FF;
    color: var(--text);
    resize: vertical;
  }
  .review-form-card input[type="file"] {
    width: 100%;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
  }
  .review-image-preview {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
    margin: 0.5rem 0 1rem;
    border: 2px solid #E9D5FF;
    background: #FAF5FF;
  }
  .reviews-status {
    margin-top: 0.85rem;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.45;
  }
  .is-busy { color: var(--purple); }
  .is-ok { color: #166534; }
  .is-error { color: #BE185D; }
  .review-delete-btn {
    border: 2px solid #FFCCE8;
    background: white;
    color: var(--pink);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    padding: 0.55rem 1rem;
    border-radius: 100px;
    cursor: pointer;
  }

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}
.page h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--purple);
  margin-bottom: 0.8rem;
}
.lead {
  font-weight: 700;
  line-height: 1.65;
  color: #6B5580;
  margin-bottom: 2.2rem;
}
.policy {
  background: white;
  border: 2px solid #F0E8FF;
  border-radius: 24px;
  padding: 1.6rem 1.5rem;
  margin-bottom: 1.1rem;
  scroll-margin-top: 100px;
}
.policy h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.35rem;
  color: var(--purple);
  margin-bottom: 0.7rem;
}
.policy p, .policy li {
  font-weight: 700;
  line-height: 1.65;
  color: var(--text);
}
.policy p + p { margin-top: 0.7rem; }
.policy ul { margin: 0.7rem 0 0 1.15rem; }
.policy li { margin-bottom: 0.4rem; }
