    :root {
      --bg: #fff9fd;
      --surface: rgba(255, 255, 255, 0.84);
      --panel: rgba(255, 255, 255, 0.78);
      --card: #ffffff;
      --text: #251523;
      --muted: #7d6680;
      --accent: #ef7ba8;
      --accent-dark: #7c57c6;
      --accent-soft: #ffe794;
      --line: rgba(36, 24, 21, 0.08);
      --shadow: 0 24px 60px rgba(142, 108, 170, 0.16);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 14px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(255, 155, 190, 0.28), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 214, 94, 0.28), transparent 26%),
        radial-gradient(circle at bottom left, rgba(123, 220, 255, 0.22), transparent 30%),
        radial-gradient(circle at bottom right, rgba(194, 165, 255, 0.2), transparent 24%),
        linear-gradient(180deg, #fffdfd 0%, var(--bg) 100%);
      padding-top: 92px;
    }

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

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

    button,
    input,
    textarea {
      font: inherit;
    }

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

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1000;
      backdrop-filter: none;
      background: #ffffff;
      border-bottom: 1px solid rgba(36, 24, 21, 0.06);
      box-shadow: 0 10px 24px rgba(124, 87, 198, 0.08);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 18px 0;
      min-height: 88px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff96bf, #9c7cff);
      color: white;
      font-size: 20px;
      box-shadow: 0 12px 25px rgba(160, 70, 45, 0.26);
    }

    .brand-copy strong,
    .hero-copy h1,
    .section-head h2,
    .story-card h3,
    .modal-box h3,
    .product-card h3 {
      letter-spacing: 0.03em;
    }

    .brand-copy strong {
      display: block;
      font-size: 18px;
    }

    .brand-copy span,
    .nav-links a,
    .eyebrow,
    .hero-copy p,
    .feature p,
    .product-meta,
    .price-row span,
    .story-card p,
    .checkout-note,
    .trust-item p,
    .modal-box label,
    .inline-total,
    .success-message {
      font-family: "Segoe UI", Tahoma, sans-serif;
    }

    .brand-copy span {
      color: var(--muted);
      font-size: 13px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .nav-links a {
      color: var(--muted);
      font-size: 15px;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .cart-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .cart-count {
      min-width: 28px;
      height: 28px;
      padding: 0 8px;
      display: inline-grid;
      place-items: center;
      border-radius: 999px;
      background: white;
      color: var(--accent-dark);
      font-family: "Segoe UI", Tahoma, sans-serif;
      font-size: 13px;
      font-weight: 700;
    }

    .pill {
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
      cursor: pointer;
    }

    .pill:hover,
    .cta:hover,
    .order-btn:hover,
    .submit-btn:hover,
    .close-btn:hover {
      transform: translateY(-2px);
    }

    .pill-outline {
      border-color: rgba(36, 24, 21, 0.12);
      background: transparent;
      color: var(--text);
    }

    .pill-solid,
    .cta,
    .order-btn,
    .submit-btn {
      background: linear-gradient(135deg, #ff8bb5, #7c57c6);
      color: white;
      box-shadow: 0 14px 30px rgba(160, 70, 45, 0.22);
    }

    .hero {
      min-height: 100vh;
      padding: 110px 0 48px;
      display: flex;
      align-items: center;
    }

    .hero-panel {
      width: 100%;
      display: block;
    }

    .hero-copy,
    .hero-card {
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .hero-copy {
      padding: 64px 42px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(255, 249, 253, 0.7));
      min-height: calc(100vh - 180px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      isolation: isolate;
    }

    .hero-copy::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(255, 255, 255, 0.58), rgba(255, 247, 210, 0.18));
      z-index: -1;
    }

    .hero-logo {
      width: min(380px, 72vw);
      filter: drop-shadow(0 22px 36px rgba(163, 119, 190, 0.18));
      margin-bottom: 24px;
      border-radius: 28px;
    }

    .eyebrow {
      margin: 0 0 16px;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 12px;
      font-weight: 700;
    }

    .hero-copy h1 {
      margin: 0;
      font-size: clamp(42px, 7vw, 78px);
      line-height: 0.95;
      max-width: 11ch;
    }

    .hero-copy p {
      margin: 22px 0 0;
      max-width: 620px;
      font-size: 18px;
      line-height: 1.7;
      color: var(--muted);
    }

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

    .hero-highlights {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 14px;
      margin-top: 34px;
      padding-bottom: 8px;
    }

    .highlight {
      flex: 0 0 min(240px, 72vw);
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(36, 24, 21, 0.08);
      border-radius: 18px;
      padding: 16px;
      scroll-snap-align: start;
    }

    .highlight strong {
      display: block;
      font-size: 24px;
      margin-bottom: 4px;
    }

    .highlight span {
      font-family: "Segoe UI", Tahoma, sans-serif;
      color: var(--muted);
      font-size: 13px;
    }

    .hero-card {
      display: none;
    }

    .featured-badge {
      align-self: flex-start;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      font-family: "Segoe UI", Tahoma, sans-serif;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-product {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 24px;
      padding: 22px;
      backdrop-filter: blur(12px);
      position: relative;
    }
/*//////////////////////////////////////////  Size of photo */
    .hero-product img {
      width: 100%;
      aspect-ratio: 4 / 4.4;
      object-fit: cover;
      border-radius: 18px;
      margin-bottom: 18px;
    }
/* /////////////////////////////////////////////////////////////////////// */
    .hero-product h2 {
      margin: 0 0 10px;
      font-size: 30px;
    }

    .hero-product p {
      margin: 0 0 18px;
      font-family: "Segoe UI", Tahoma, sans-serif;
      color: rgba(255, 255, 255, 0.84);
      line-height: 1.7;
    }

    .hero-product .price-row {
      margin-bottom: 18px;
      color: white;
    }

    section {
      padding: 38px 0;
    }

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

    .section-head h2 {
      margin: 8px 0 0;
      font-size: clamp(30px, 4.2vw, 48px);
    }

    .section-head p {
      margin: 10px 0 0;
      max-width: 560px;
      font-family: "Segoe UI", Tahoma, sans-serif;
      color: var(--muted);
      line-height: 1.7;
    }

    .feature-grid,
    .trust-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 18px;
      padding-bottom: 8px;
    }

    .feature,
    .trust-item {
      flex: 0 0 min(320px, 82vw);
      background: var(--panel);
      border: 1px solid rgba(36, 24, 21, 0.08);
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 18px 40px rgba(84, 56, 47, 0.08);
      scroll-snap-align: start;
    }

    .feature strong,
    .trust-item strong {
      display: block;
      margin-bottom: 10px;
      font-size: 20px;
    }

    .feature p,
    .trust-item p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .product-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 22px;
      padding-bottom: 10px;
    }

    .product-card {
      flex: 0 0 min(360px, 88vw);
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(36, 24, 21, 0.08);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 18px 42px rgba(84, 56, 47, 0.1);
      transition: transform 0.28s ease, box-shadow 0.28s ease;
      scroll-snap-align: start;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 52px rgba(84, 56, 47, 0.15);
    }

    .product-image-wrap {
      position: relative;
      padding: 14px;
      width: 100%;
      border: 0;
      background: transparent;
      cursor: pointer;
      display: block;
      font: inherit;
      text-align: left;
    }

    .product-image-wrap img {
      width: 100%;
      aspect-ratio: 4 / 4.7;
      object-fit: cover;
      border-radius: 18px;
      display: block;
      transition: transform 0.28s ease, filter 0.28s ease;
    }

    .product-image-wrap:hover img {
      transform: scale(1.015);
      filter: saturate(1.06);
    }

    .product-image-wrap:focus-visible {
      outline: 3px solid rgba(124, 87, 198, 0.45);
      outline-offset: -6px;
      border-radius: 22px;
    }

    .tag {
      position: absolute;
      top: 28px;
      left: 28px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 250, 245, 0.94);
      color: var(--accent-dark);
      font-family: "Segoe UI", Tahoma, sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .product-info {
      padding: 0 20px 20px;
    }

    .product-info h3 {
      margin: 4px 0 8px;
      font-size: 28px;
    }

    .product-meta {
      margin: 0 0 16px;
      color: var(--muted);
      line-height: 1.7;
      min-height: 72px;
    }

    .price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .price {
      font-size: 28px;
      font-weight: 700;
    }

    .price-row span {
      color: var(--muted);
      font-size: 14px;
    }

    .product-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }

    .product-points span {
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent-dark);
      font-family: "Segoe UI", Tahoma, sans-serif;
      font-size: 13px;
    }

    .product-colors {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      font-family: "Segoe UI", Tahoma, sans-serif;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .color-swatch {
      width: 28px;
      height: 28px;
      border: 2px solid rgba(36, 24, 21, 0.12);
      border-radius: 50%;
      background: var(--swatch);
      cursor: pointer;
      box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.72);
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .color-swatch:hover,
    .color-swatch.active,
    .detail-color-option.active .color-swatch {
      transform: translateY(-1px) scale(1.08);
      border-color: var(--accent-dark);
      box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.72), 0 0 0 3px rgba(124, 87, 198, 0.16);
    }

    .order-btn,
    .cta,
    .submit-btn,
    .close-btn {
      width: fit-content;
      border: none;
      border-radius: 999px;
      padding: 14px 22px;
      font-family: "Segoe UI", Tahoma, sans-serif;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    }

    .order-btn {
      width: 100%;
    }

    .cart-panel {
      margin-top: 26px;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(36, 24, 21, 0.08);
      border-radius: 24px;
      padding: 22px;
      box-shadow: var(--shadow);
    }

    .cart-panel h3 {
      margin: 0 0 8px;
      font-size: 26px;
    }

    .cart-panel p {
      margin: 0 0 16px;
      color: var(--muted);
      font-family: "Segoe UI", Tahoma, sans-serif;
      line-height: 1.7;
    }

    .cart-list,
    .checkout-cart-list {
      display: grid;
      gap: 12px;
    }

    .cart-item,
    .checkout-cart-item {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 14px;
      align-items: center;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(36, 24, 21, 0.08);
      border-radius: 18px;
      padding: 14px 16px;
    }

    .cart-item strong,
    .checkout-cart-item strong {
      display: block;
      margin-bottom: 4px;
      font-size: 18px;
    }

    .cart-meta,
    .checkout-cart-meta {
      color: var(--muted);
      font-family: "Segoe UI", Tahoma, sans-serif;
      font-size: 14px;
      line-height: 1.6;
    }

    .qty-controls {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border-radius: 999px;
      background: #fff7fc;
      border: 1px solid rgba(36, 24, 21, 0.08);
      padding: 6px;
    }

    .qty-controls button {
      width: 34px;
      height: 34px;
      border: none;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff8bb5, #7c57c6);
      color: white;
      cursor: pointer;
      font-size: 18px;
    }

    .qty-controls span {
      min-width: 20px;
      text-align: center;
      font-family: "Segoe UI", Tahoma, sans-serif;
      font-weight: 700;
    }

    .cart-footer {
      margin-top: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }

    .cart-total {
      font-family: "Segoe UI", Tahoma, sans-serif;
      color: var(--muted);
    }

    .cart-total strong {
      color: var(--accent-dark);
      font-size: 24px;
      margin-left: 8px;
    }

    .close-btn {
      background: transparent;
      color: var(--text);
      border: 1px solid rgba(36, 24, 21, 0.14);
    }

    .story {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 22px;
      align-items: stretch;
      padding-bottom: 8px;
    }

    .story-card {
      flex: 0 0 min(520px, 92vw);
      border-radius: var(--radius-xl);
      overflow: hidden;
      min-height: 420px;
      box-shadow: var(--shadow);
      scroll-snap-align: start;
    }

    .story-card.image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .story-card.copy {
      background: linear-gradient(135deg, #f0ddd2, #fff7f1);
      padding: 42px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .story-card h3 {
      margin: 10px 0 16px;
      font-size: clamp(30px, 4vw, 46px);
    }

    .story-card p {
      margin: 0 0 18px;
      color: var(--muted);
      line-height: 1.8;
    }

    .footer {
      padding: 28px 0 60px;
      text-align: center;
      color: var(--muted);
      font-family: "Segoe UI", Tahoma, sans-serif;
    }

    .footer .shell {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10px 18px;
    }

    .modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(25, 18, 15, 0.52);
      backdrop-filter: blur(8px);
      z-index: 40;
    }

    .modal.active {
      display: flex;
    }

    .modal-box {
      width: min(560px, 100%);
      background: #fffaf6;
      border-radius: 28px;
      padding: 30px;
      box-shadow: 0 30px 70px rgba(29, 18, 14, 0.26);
      position: relative;
      max-height: calc(100vh - 40px);
      overflow-y: auto;
    }

    .modal-box h3 {
      margin: 0 0 10px;
      font-size: 34px;
    }

    .modal-box p {
      margin: 0 0 18px;
      font-family: "Segoe UI", Tahoma, sans-serif;
      color: var(--muted);
      line-height: 1.7;
    }

    .product-modal-box {
      width: min(860px, 100%);
      padding: 22px;
    }

    .detail-close {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 2;
      width: 38px;
      height: 38px;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.88);
      color: var(--text);
      font-family: "Segoe UI", Tahoma, sans-serif;
      font-size: 20px;
      cursor: pointer;
      box-shadow: 0 12px 28px rgba(29, 18, 14, 0.16);
    }

    .detail-gallery {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 0 0 14px;
      margin-bottom: 20px;
    }

    .detail-gallery img {
      flex: 0 0 min(410px, 82vw);
      width: min(410px, 82vw);
      aspect-ratio: 4 / 4.6;
      object-fit: cover;
      border-radius: 22px;
      scroll-snap-align: start;
      box-shadow: 0 18px 38px rgba(84, 56, 47, 0.14);
    }

    .detail-content {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      align-items: start;
      margin-bottom: 14px;
    }

    .detail-content h3 {
      margin: 0 0 10px;
      font-size: clamp(30px, 4vw, 46px);
    }

    .detail-content p {
      margin-bottom: 0;
    }

    .detail-price {
      padding: 14px 18px;
      border-radius: 18px;
      background: var(--accent-soft);
      color: var(--accent-dark);
      font-size: 28px;
      font-weight: 700;
      white-space: nowrap;
    }

    .detail-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 22px;
    }

    .detail-points span {
      padding: 9px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.88);
      color: var(--muted);
      font-family: "Segoe UI", Tahoma, sans-serif;
      font-size: 13px;
      font-weight: 600;
    }

    .detail-colors {
      margin-bottom: 22px;
    }

    .detail-colors strong {
      display: block;
      margin-bottom: 10px;
      font-family: "Segoe UI", Tahoma, sans-serif;
      color: var(--text);
      font-size: 15px;
    }

    .detail-color-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .detail-color-option {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 14px 9px 9px;
      border: 1px solid rgba(36, 24, 21, 0.1);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.86);
      color: var(--text);
      font-family: "Segoe UI", Tahoma, sans-serif;
      font-weight: 700;
      cursor: pointer;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .detail-color-option.active,
    .detail-color-option:hover {
      border-color: rgba(124, 87, 198, 0.42);
      box-shadow: 0 12px 24px rgba(84, 56, 47, 0.08);
      transform: translateY(-1px);
    }

    .detail-actions {
      align-items: center;
      justify-content: space-between;
    }

    .selected-product {
      background: var(--panel);
      border: 1px solid rgba(36, 24, 21, 0.08);
      border-radius: 18px;
      padding: 16px 18px;
      margin-bottom: 18px;
    }

    .selected-product strong {
      display: block;
      margin-bottom: 6px;
      font-size: 22px;
    }

    .empty-cart {
      font-family: "Segoe UI", Tahoma, sans-serif;
      color: var(--muted);
      margin: 0;
    }

    .checkout-form {
      display: grid;
      gap: 14px;
    }

    .checkout-form label {
      display: block;
      margin-bottom: 7px;
      color: var(--text);
      font-weight: 600;
    }

    .checkout-form input,
    .checkout-form textarea,
    .checkout-form select {
      width: 100%;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid rgba(36, 24, 21, 0.12);
      background: white;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .checkout-form textarea {
      min-height: 92px;
      resize: vertical;
    }

    .checkout-form input:focus,
    .checkout-form textarea:focus,
    .checkout-form select:focus {
      border-color: rgba(160, 70, 45, 0.5);
      box-shadow: 0 0 0 4px rgba(160, 70, 45, 0.08);
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .inline-total {
      font-size: 15px;
      color: var(--muted);
    }

    .inline-total strong {
      color: var(--accent-dark);
      font-size: 22px;
      margin-left: 8px;
    }

    .modal-actions {
      display: flex;
      justify-content: flex-end;
      gap: 12px;
      margin-top: 8px;
    }

    .checkout-note {
      margin-top: 8px;
      font-size: 13px;
      color: var(--muted);
    }

    .success-message {
      display: none;
      margin-top: 14px;
      padding: 14px 16px;
      border-radius: 16px;
      background: #edf8ee;
      color: #276339;
      font-weight: 600;
    }

    @media (max-width: 980px) {
      .hero-copy,
      .story-card {
        min-height: auto;
      }

      .hero-copy {
        padding: 42px 28px;
      }

      .nav-links {
        display: none;
      }
    }

    @media (max-width: 760px) {
      body {
        padding-top: 84px;
      }

      .modal {
        align-items: flex-start;
        padding: 12px;
      }

      .modal-box {
        width: 100%;
        max-height: calc(100vh - 24px);
        padding: 22px 18px;
        border-radius: 20px;
      }

      .product-modal-box {
        padding: 18px 14px;
      }

      .detail-gallery img {
        flex-basis: 84vw;
        width: 84vw;
      }

      .detail-content {
        grid-template-columns: 1fr;
      }

      .detail-price {
        width: fit-content;
        font-size: 24px;
      }

      .nav {
        flex-wrap: nowrap;
        gap: 10px;
        min-height: 72px;
        padding: 10px 0;
      }

      .shell {
        width: min(100% - 20px, 1180px);
      }

      .section-head,
      .split,
      .modal-actions {
        grid-template-columns: 1fr;
        display: grid;
      }

      .modal-actions {
        justify-content: stretch;
        position: sticky;
        bottom: 0;
        background: #fffaf6;
        padding-top: 12px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
        border-top: 1px solid rgba(36, 24, 21, 0.08);
      }

      .close-btn,
      .submit-btn {
        width: 100%;
      }

      .brand-copy span {
        display: none;
      }

      .brand-copy strong {
        font-size: 15px;
      }

      .nav-actions {
        gap: 8px;
      }

      .nav-actions .pill {
        padding: 10px 12px;
        font-size: 12px;
      }

      .nav-actions a[href="#collection"] {
        display: none;
      }

      .cart-count {
        min-width: 24px;
        height: 24px;
        font-size: 12px;
      }

      .hero {
        min-height: auto;
        padding: 40px 0 28px;
      }

      .hero-copy h1 {
        max-width: 12ch;
        font-size: clamp(34px, 10vw, 56px);
      }

      .hero-copy p {
        font-size: 16px;
      }

      .hero-logo {
        width: min(270px, 76vw);
      }

      .highlight,
      .feature,
      .trust-item {
        flex-basis: 84vw;
      }

      .product-card {
        flex-basis: 84vw;
      }

      .story-card {
        flex-basis: 90vw;
      }

      .cart-panel {
        padding: 18px;
        border-radius: 20px;
      }

      .cart-item,
      .checkout-cart-item {
        grid-template-columns: 1fr;
        align-items: stretch;
      }

      .cart-footer {
        align-items: stretch;
      }

      .cart-footer .cta {
        width: 100%;
        text-align: center;
      }
    }
    .logo{
      width: 64px;
      height: auto;
      border-radius: 18px;
      flex-shrink: 0;
    }
