      /* =========================
         Base / Design Tokens
      ========================= */
      @import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap");

      :root {
        --bg: #f0f4f8;
        --surface: #ffffff;
        --primary: #d4005a;
        --navy: #0d1b3e;
        --muted: #5a6477;
        --border: #d8dde6;
        --soft-blue: #e4edf7;
        --soft-pink: #ffe5f0;
        --shadow: 0 22px 55px rgba(13, 27, 62, 0.12);
        --radius: 22px;
        --max: 1180px;
      }

      body.dark-theme {
        --bg: #091326;
        --surface: #111f3a;
        --primary: #f01874;
        --navy: #f6f8ff;
        --muted: #b7c1d4;
        --border: #26395c;
        --soft-blue: #142644;
        --soft-pink: #37172b;
        --shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
      }

      body.dark-theme .ticker,
      body.dark-theme .about,
      body.dark-theme .footer,
      body.dark-theme .admin-sidebar,
      body.dark-theme .hero-badge {
        color: #fff;
        background: #071226;
      }

      body.dark-theme .ticker-track,
      body.dark-theme .footer,
      body.dark-theme .about {
        color: #fff;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
      }

      body {
        margin: 0;
        color: var(--navy);
        background: var(--bg);
        font-family: "Inter", Arial, sans-serif;
        transition: background 180ms ease, color 180ms ease;
        -webkit-font-smoothing: antialiased;
      }

      body.locked {
        overflow: hidden;
      }

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

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

      button,
      input,
      select {
        font: inherit;
      }

      button,
      input,
      select,
      textarea {
        -webkit-appearance: none;
        appearance: none;
      }

      button {
        cursor: pointer;
      }

      .container {
        width: min(calc(100% - 32px), var(--max));
        margin-inline: auto;
      }

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

      .section {
        padding: 76px 0;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        padding: 8px 12px;
        color: var(--primary);
        background: var(--soft-pink);
        border: 1px solid rgba(212, 0, 90, 0.18);
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }

      .section-title {
        margin: 14px 0 28px;
        font-family: "Anton", sans-serif;
        font-size: clamp(2.4rem, 7vw, 5.4rem);
        font-weight: 400;
        line-height: 0.92;
        text-transform: uppercase;
      }

      .launch-title {
        font-size: clamp(2.35rem, 4.6vw, 4.55rem);
        white-space: nowrap;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0 18px;
        border: 0;
        border-radius: 999px;
        font-weight: 800;
        text-transform: uppercase;
        transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
      }

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

      .btn-primary {
        color: #fff;
        background: var(--primary);
        box-shadow: 0 14px 30px rgba(212, 0, 90, 0.22);
      }

      .btn-secondary {
        color: var(--navy);
        background: var(--surface);
        border: 1px solid var(--border);
      }

      .icon-btn {
        display: grid;
        place-items: center;
        width: 46px;
        height: 46px;
        color: var(--navy);
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 999px;
      }

      /* =========================
         Navbar
      ========================= */
      .navbar {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255, 255, 255, 0.94);
        background: color-mix(in srgb, var(--surface) 88%, transparent);
        border-bottom: 1px solid var(--border);
        -webkit-backdrop-filter: saturate(1.15) blur(12px);
        backdrop-filter: saturate(1.15) blur(12px);
      }

      body.dark-theme .navbar {
        background: rgba(17, 31, 58, 0.94);
        background: color-mix(in srgb, var(--surface) 88%, transparent);
      }

      .nav-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 18px;
        align-items: center;
        min-height: 78px;
      }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-weight: 900;
        letter-spacing: -0.03em;
      }

      .brand-mark {
        width: 42px;
        height: 42px;
        object-fit: contain;
        padding: 3px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 14px;
      }

      .theme-toggle {
        font-size: 1.05rem;
      }

      .nav-links {
        display: flex;
        justify-content: center;
        gap: 22px;
        color: var(--muted);
        font-size: 0.88rem;
        font-weight: 800;
        text-transform: uppercase;
      }

      .nav-links a:hover {
        color: var(--primary);
      }

      .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .header-search {
        position: relative;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .header-search input {
        width: 0;
        min-height: 46px;
        padding: 0;
        color: var(--navy);
        background: var(--surface);
        border: 0;
        border-radius: 999px;
        opacity: 0;
        transition: width 180ms ease, opacity 180ms ease, padding 180ms ease, border 180ms ease;
      }

      .header-search.open input,
      .header-search input:focus {
        width: min(240px, 34vw);
        padding: 0 14px;
        border: 1px solid var(--border);
        opacity: 1;
      }

      .account-btn {
        color: var(--navy);
        background: var(--soft-blue);
        border: 1px solid var(--border);
      }

      .account-btn.admin-session {
        color: #fff;
        background: var(--navy);
        border-color: rgba(13, 27, 62, 0.18);
      }

      .account-btn.admin-session:hover {
        background: var(--primary);
      }

      .cart-btn {
        position: relative;
      }

      .cart-count {
        position: absolute;
        top: -4px;
        right: -4px;
        min-width: 20px;
        padding: 2px 6px;
        color: #fff;
        background: var(--primary);
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 900;
      }

      .menu-btn {
        display: none;
      }

      /* =========================
         Hero
      ========================= */
      .hero {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
        gap: clamp(28px, 6vw, 72px);
        align-items: center;
        min-height: calc(100vh - 78px);
        padding: 54px 0 72px;
      }

      .hero h1 {
        margin: 16px 0;
        max-width: 720px;
        font-family: "Anton", sans-serif;
        font-size: clamp(4.2rem, 11vw, 8.8rem);
        font-weight: 400;
        line-height: 0.9;
        text-transform: uppercase;
      }

      .hero p {
        max-width: 590px;
        margin: 0 0 28px;
        color: var(--muted);
        font-size: clamp(1.05rem, 2vw, 1.28rem);
        line-height: 1.6;
      }

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

      .hero-visual {
        position: relative;
      }

      .hero-card {
        position: relative;
        overflow: hidden;
        min-height: 540px;
        background:
          radial-gradient(circle at 20% 15%, rgba(212, 0, 90, 0.18), transparent 28%),
          linear-gradient(145deg, #fff, #dce9f5);
        border: 1px solid var(--border);
        border-radius: 36px;
        box-shadow: var(--shadow);
      }

      .hero-card img {
        position: absolute;
        inset: 15% auto auto 6%;
        width: 88%;
        height: 70%;
        object-fit: cover;
        border-radius: 30px;
        transform: rotate(-9deg);
      }

      .hero-badge {
        position: absolute;
        right: 18px;
        bottom: 18px;
        padding: 12px 14px;
        color: #fff;
        background: var(--navy);
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 900;
        text-transform: uppercase;
      }

      /* =========================
         Ticker
      ========================= */
      .ticker {
        overflow: hidden;
        padding: 16px 0;
        background:
          radial-gradient(circle at 12% 50%, rgba(212, 0, 90, 0.2), transparent 20%),
          var(--navy);
      }

      .ticker-track {
        display: flex;
        gap: 12px;
        width: max-content;
        padding: 0 12px;
        color: #fff;
        animation: ticker 26s linear infinite;
      }

      .trust-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-width: 230px;
        min-height: 54px;
        justify-content: center;
        padding: 0 28px;
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
        border: 2px solid rgba(255, 255, 255, 0.18);
        border-radius: 999px;
        font-size: 0.76rem;
        font-weight: 900;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        white-space: nowrap;
      }

      .trust-pill strong {
        color: #ffb8d3;
        font-size: 1rem;
      }

      .ticker-track span:not(.trust-pill) {
        padding-right: 0;
      }

      @keyframes ticker {
        to {
          transform: translateX(calc(-50% - 6px));
        }
      }

      /* =========================
         Launches
      ========================= */
      .bento {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 18px;
      }

      .bento-side {
        display: grid;
        gap: 18px;
      }

      .launch-card,
      .product-card,
      .feed-card,
      .about-card,
      .diff-card {
        overflow: hidden;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: 0 12px 32px rgba(13, 27, 62, 0.08);
      }

      .launch-card {
        min-height: 310px;
      }

      .launch-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
      }

      .launch-card.large img {
        height: 390px;
      }

      .launch-body,
      .product-body,
      .feed-card span {
        padding: 18px;
      }

      .tag {
        display: inline-flex;
        width: fit-content;
        margin-bottom: 10px;
        padding: 6px 9px;
        color: #fff;
        background: var(--primary);
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 900;
        text-transform: uppercase;
      }

      .launch-card h3,
      .product-card h3 {
        margin: 0 0 8px;
        font-size: 1.3rem;
      }

      .launch-card p,
      .product-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.5;
      }

      /* =========================
         Catalog
      ========================= */
      .catalog-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(430px, 430px);
        align-items: end;
        gap: 24px;
        margin-bottom: 28px;
      }

      .catalog-title-row {
        display: grid;
        gap: 12px;
      }

      .catalog-title-row .section-title {
        margin: 0;
        font-size: clamp(2.35rem, 3.72vw, 3.75rem);
        white-space: nowrap;
      }

      .catalog-tools {
        display: grid;
        align-items: stretch;
        justify-content: end;
        gap: 12px;
        min-width: 0;
      }

      .search-input {
        width: 360px;
        justify-self: end;
        min-height: 48px;
        padding: 0 16px;
        color: var(--navy);
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 999px;
        outline: none;
      }

      .filters {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: flex-end;
        width: 360px;
        justify-self: end;
      }

      .filter-pill {
        white-space: nowrap;
      }

      .filter-pill {
        padding: 8px 10px;
        color: var(--muted);
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 900;
        text-transform: uppercase;
      }

      .filter-pill.active {
        color: #fff;
        background: var(--navy);
      }

      .product-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
      }

      .product-carousel-shell {
        position: relative;
      }

      .product-nav {
        position: absolute;
        top: 220px;
        z-index: 4;
        display: none;
        place-items: center;
        width: 48px;
        height: 48px;
        color: var(--navy);
        background: rgba(255, 255, 255, 0.82);
        border: 1px solid rgba(216, 221, 230, 0.9);
        border-radius: 999px;
        box-shadow: 0 18px 40px rgba(13, 27, 62, 0.14);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
      }

      .product-nav:disabled {
        opacity: 0.35;
        cursor: not-allowed;
        transform: none;
      }

      .product-nav-prev,
      .product-nav-next {
        transform: translateY(-50%);
      }

      .product-nav-prev {
        left: -64px;
      }

      .product-nav-next {
        right: -64px;
      }

      .product-card {
        display: flex;
        flex-direction: column;
      }

      .product-media {
        position: relative;
        overflow: hidden;
        aspect-ratio: 1 / 1.04;
        margin: 12px 12px 0;
        background: linear-gradient(180deg, #f7f9fc 0%, #edf3f9 100%);
        border: 1px solid rgba(216, 221, 230, 0.78);
        border-radius: 14px;
      }

      .carousel-track {
        display: flex;
        height: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
      }

      .carousel-track::-webkit-scrollbar {
        display: none;
      }

      .carousel-track img {
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        scroll-snap-align: start;
      }

      .carousel-nav {
        position: absolute;
        top: 50%;
        display: grid;
        place-items: center;
        width: 34px;
        height: 34px;
        color: var(--navy);
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid var(--border);
        border-radius: 999px;
        transform: translateY(-50%);
      }

      .carousel-prev {
        left: 10px;
      }

      .carousel-next {
        right: 10px;
      }

      .dots {
        position: absolute;
        left: 50%;
        bottom: 10px;
        display: flex;
        gap: 5px;
        padding: 6px 8px;
        background: rgba(255, 255, 255, 0.84);
        border-radius: 999px;
        transform: translateX(-50%);
      }

      .dots button {
        width: 7px;
        height: 7px;
        padding: 0;
        background: var(--muted);
        border: 0;
        border-radius: 999px;
        opacity: 0.35;
      }

      .dots button.active {
        background: var(--primary);
        opacity: 1;
      }

      .product-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        z-index: 2;
      }

      .stock-overlay {
        position: absolute;
        inset: 0;
        z-index: 3;
        display: grid;
        place-items: center;
        color: #fff;
        background: rgba(13, 27, 62, 0.62);
        font-size: 1.45rem;
        font-weight: 950;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        animation: fadeIn 260ms ease both;
      }

      .offer-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        margin: 10px 12px 0;
      }

      .offer-strip span {
        display: grid;
        place-items: center;
        min-height: 28px;
        padding: 0 8px;
        color: #fff;
        background: var(--navy);
        border-radius: 6px;
        font-size: 0.68rem;
        font-weight: 950;
        line-height: 1;
        text-align: center;
        text-transform: uppercase;
      }

      .offer-strip span:first-child {
        background: var(--primary);
      }

      .product-thumbs {
        display: flex;
        gap: 6px;
        min-height: 50px;
        margin: 8px 12px 0;
        overflow-x: auto;
        scrollbar-width: none;
      }

      .product-thumbs::-webkit-scrollbar {
        display: none;
      }

      .product-thumb {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        padding: 0;
        overflow: hidden;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 8px;
      }

      .product-thumb.active {
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(212, 0, 90, 0.12);
      }

      .product-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .review-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin: 12px 0 0;
        padding: 10px 12px;
        color: var(--muted);
        background: #f8fbff;
        border: 1px solid var(--border);
        border-radius: 12px;
        font-size: 0.78rem;
        font-weight: 900;
      }

      .review-row button {
        padding: 6px 10px;
        color: var(--primary);
        background: #fff;
        border: 1px solid rgba(212, 0, 90, .22);
        border-radius: 999px;
        font: inherit;
        font-size: .72rem;
        text-transform: uppercase;
      }

      .option-group {
        display: grid;
        gap: 8px;
        margin: 12px 0 6px;
      }

      .option-group-head {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 10px;
      }

      .option-group-head span {
        color: var(--muted);
        font-size: .7rem;
        font-weight: 950;
        letter-spacing: .03em;
        text-transform: uppercase;
      }

      .option-group-head strong {
        min-width: 0;
        color: var(--navy);
        font-size: .82rem;
        font-weight: 950;
        overflow: hidden;
        text-align: right;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .option-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        max-height: 174px;
        overflow-y: auto;
        padding-right: 3px;
        scrollbar-width: thin;
      }

      .option-thumb {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        align-items: center;
        gap: 8px;
        max-width: 100%;
        min-height: 52px;
        padding: 0;
        color: var(--navy);
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        font-size: .72rem;
        font-weight: 900;
        text-align: left;
      }

      .option-thumb img {
        width: 44px;
        height: 52px;
        object-fit: cover;
      }

      .option-thumb span {
        min-width: 0;
        padding-right: 8px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-height: 1.15;
      }

      .option-thumb.active {
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(212, 0, 90, .12), 0 10px 20px rgba(13, 27, 62, .08);
      }

      .option-thumb.soldout {
        opacity: .56;
      }

      .product-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 12px 0;
      }

      .product-meta span {
        padding: 7px 9px;
        color: var(--muted);
        background: var(--soft-blue);
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 800;
        text-transform: uppercase;
      }

      .size-row {
        display: grid;
        gap: 8px;
        margin-bottom: 16px;
      }

      .size-row label {
        color: var(--muted);
        font-size: 0.76rem;
        font-weight: 800;
        text-transform: uppercase;
      }

      .size-options {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 7px;
      }

      .size-chip {
        min-height: 40px;
        padding: 0;
        color: var(--muted);
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        font-size: 0.86rem;
        font-weight: 900;
        transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
      }

      .size-chip:hover {
        border-color: rgba(212, 0, 90, 0.38);
        transform: translateY(-1px);
      }

      .size-chip.active {
        color: #fff;
        background: var(--primary);
        border-color: var(--primary);
        box-shadow: 0 10px 20px rgba(212, 0, 90, 0.18);
      }

      .product-footer {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .price {
        font-size: 1.22rem;
        font-weight: 900;
      }

      .price-block {
        display: grid;
        gap: 2px;
      }

      .price-block small {
        color: var(--muted);
        font-size: 0.78rem;
        font-weight: 800;
      }

      .add-btn {
        min-height: 42px;
        padding-inline: 14px;
        width: 100%;
      }

      .add-btn:disabled {
        cursor: not-allowed;
        background: #9aa3b2;
        box-shadow: none;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      /* =========================
         About
      ========================= */
      .about {
        color: #fff;
        background: var(--navy);
      }

      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
        align-items: start;
      }

      .about-card {
        padding: clamp(24px, 5vw, 44px);
        color: var(--navy);
      }

      .about-card h2 {
        margin: 12px 0;
        font-family: "Anton", sans-serif;
        font-size: clamp(2.3rem, 5vw, 4.8rem);
        font-weight: 400;
        line-height: 0.94;
      }

      .about-card p {
        color: var(--muted);
        line-height: 1.7;
      }

      .diff-list {
        display: grid;
        gap: 12px;
      }

      .diff-card {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 14px;
        align-items: center;
        padding: 18px;
        color: var(--navy);
      }

      .diff-card strong {
        color: var(--primary);
        font-family: "Anton", sans-serif;
        font-size: 2rem;
        font-weight: 400;
      }

      /* =========================
         Testimonials
      ========================= */
      .testimonials-head {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 18px;
        margin-bottom: 18px;
      }

      .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
      }

      .testimonial-card {
        display: grid;
        gap: 14px;
        padding: 18px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: 0 12px 32px rgba(13, 27, 62, 0.08);
      }

      .testimonial-card blockquote {
        margin: 0;
        color: var(--muted);
        line-height: 1.65;
      }

      .testimonial-person {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .testimonial-avatar {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        color: #fff;
        background: var(--primary);
        border-radius: 999px;
        font-weight: 900;
      }

      .stars {
        color: var(--primary);
        font-weight: 900;
        letter-spacing: 0.06em;
      }

      /* =========================
         Instagram / Footer
      ========================= */
      .feed-head {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 16px;
      }

      .handle {
        color: var(--primary);
        font-weight: 900;
      }

      .story-strip {
        display: grid;
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
        gap: 22px;
        align-items: center;
        margin-bottom: 32px;
        padding: 22px;
        background:
          radial-gradient(circle at 12% 20%, rgba(212, 0, 90, 0.14), transparent 28%),
          var(--surface);
        border: 1px solid var(--border);
        border-radius: 26px;
        box-shadow: var(--shadow);
      }

      .story-strip h3 {
        margin: 10px 0;
        font-family: "Anton", sans-serif;
        font-size: clamp(2.1rem, 4vw, 3.4rem);
        font-weight: 400;
        line-height: 0.98;
        text-transform: uppercase;
      }

      .story-strip p {
        margin: 0;
        color: var(--muted);
        line-height: 1.5;
      }

      .story-list {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
      }

      .story-card {
        position: relative;
        display: block;
        overflow: hidden;
        min-height: 190px;
        color: #fff;
        background: var(--navy);
        border: 3px solid transparent;
        border-radius: 22px;
        box-shadow: 0 14px 30px rgba(13, 27, 62, 0.14);
      }

      .story-card::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 3px;
        background: linear-gradient(135deg, var(--primary), #ffb8d3, var(--navy));
        border-radius: inherit;
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
      }

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

      .story-card span {
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 8px 10px;
        background: rgba(13, 27, 62, 0.86);
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 900;
        text-align: center;
        text-transform: uppercase;
      }

      .feed-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
      }

      .feed-card img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
      }

      .feed-card span {
        display: block;
        font-weight: 900;
        text-transform: uppercase;
      }

      .footer-separator {
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(13, 27, 62, 0.18), transparent);
      }

      .footer {
        color: #fff;
        background: #0d1b2a;
      }

      .footer-shell {
        padding: 48px 0 0;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
        gap: 34px;
        align-items: start;
        padding-bottom: 38px;
      }

      .footer-brand-block {
        display: grid;
        gap: 16px;
        align-content: start;
      }

      .footer-brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: #fff;
        font-size: 1.02rem;
        font-weight: 800;
        text-transform: uppercase;
      }

      .footer-brand img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        background: #fff;
        border-radius: 12px;
      }

      .footer-location {
        max-width: 260px;
        margin: 0;
        color: rgba(255, 255, 255, 0.48);
        font-size: 0.78rem;
        font-weight: 700;
        line-height: 1.55;
      }

      .footer-contact {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        gap: 8px;
        min-height: 42px;
        padding: 10px 18px;
        color: #fff;
        background: #25d366;
        border: 0;
        border-radius: 10px;
        box-shadow: 0 16px 34px rgba(37, 211, 102, 0.22);
        font-size: 0.82rem;
        font-weight: 800;
        line-height: 1;
        text-decoration: none;
        text-transform: uppercase;
        white-space: nowrap;
        transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      }

      .footer-contact svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
        flex: 0 0 auto;
      }

      .footer-contact:hover {
        color: #fff;
        background: #20bd5a;
        box-shadow: 0 20px 44px rgba(37, 211, 102, 0.32);
        transform: translateY(-1px);
      }

      .footer-column {
        display: grid;
        gap: 14px;
        align-content: start;
      }

      .footer-title {
        margin: 0;
        color: rgba(255, 255, 255, 0.38);
        font-size: 0.68rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .footer-links {
        display: grid;
        gap: 9px;
      }

      .footer-links a {
        width: fit-content;
        color: rgba(255, 255, 255, 0.66);
        font-size: 0.84rem;
        font-weight: 700;
        text-decoration: none;
        transition: color 0.16s ease;
      }

      .footer-links a:hover {
        color: #fff;
      }

      .security-seals {
        display: grid;
        gap: 8px;
      }

      .security-seals span {
        display: flex;
        align-items: center;
        gap: 8px;
        width: fit-content;
        padding: 8px 12px;
        color: rgba(255, 255, 255, 0.72);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        font-size: 0.78rem;
        font-weight: 700;
      }

      .security-seals svg {
        width: 14px;
        height: 14px;
        color: #4ade80;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex: 0 0 auto;
      }

      .footer-bottom {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 16px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      .footer-copy {
        margin: 0;
        color: rgba(255, 255, 255, 0.34);
        font-size: 0.75rem;
        font-weight: 700;
      }

      .footer-payments {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        gap: 7px;
      }

      .footer-payments strong {
        color: rgba(255, 255, 255, 0.34);
        font-size: 0.7rem;
        font-weight: 800;
      }

      .footer-payments span {
        padding: 4px 10px;
        color: rgba(255, 255, 255, 0.56);
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 6px;
        font-size: 0.7rem;
        font-weight: 800;
      }

      .admin-dot {
        position: absolute;
        left: 50%;
        bottom: 16px;
        width: 8px;
        height: 8px;
        opacity: 0.24;
        background: rgba(255, 255, 255, 0.55);
        border-radius: 999px;
        font-size: 0;
        transform: translateX(-50%);
      }

      .admin-dot:focus,
      .admin-dot:hover {
        opacity: 0.7;
      }
      /* =========================
         Cart Drawer
      ========================= */
      .overlay {
        position: fixed;
        inset: 0;
        z-index: 80;
        display: none;
        background: rgba(13, 27, 62, 0.38);
      }

      .overlay.open {
        display: block;
      }

      .cart-drawer {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 90;
        display: grid;
        grid-template-rows: auto 1fr auto;
        width: min(100%, 440px);
        height: 100vh;
        height: 100svh;
        background: var(--surface);
        box-shadow: -28px 0 70px rgba(13, 27, 62, 0.22);
        transform: translateX(110%);
        transition: transform 220ms ease;
      }

      .cart-drawer.open {
        transform: translateX(0);
      }

      .drawer-head,
      .drawer-summary {
        padding: 18px;
        border-bottom: 1px solid var(--border);
      }

      .drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .drawer-head h2 {
        margin: 0;
        font-family: "Anton", sans-serif;
        font-size: 2rem;
        font-weight: 400;
      }

      .drawer-items {
        overflow-y: auto;
        padding: 18px;
      }

      .cart-item {
        display: grid;
        grid-template-columns: 72px 1fr;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
      }

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

      .cart-item h3 {
        margin: 0 0 4px;
        font-size: 0.98rem;
      }

      .cart-item p {
        margin: 0 0 8px;
        color: var(--muted);
        font-size: 0.86rem;
      }

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

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

      .qty-controls button,
      .remove-btn {
        width: 28px;
        height: 28px;
        color: var(--navy);
        background: var(--soft-blue);
        border: 0;
        border-radius: 999px;
        font-weight: 900;
      }

      .shipping-box {
        display: grid;
        gap: 10px;
        margin: 14px 0;
      }

      .cep-row {
        display: flex;
        gap: 8px;
      }

      .cep-row input {
        min-width: 0;
        flex: 1;
        min-height: 42px;
        padding: 0 12px;
        border: 1px solid var(--border);
        border-radius: 12px;
      }

      .shipping-options {
        display: grid;
        gap: 8px;
      }

      .shipping-option {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 10px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 12px;
        cursor: pointer;
      }

      .shipping-option input {
        margin-right: 6px;
      }

      .summary-line {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin: 8px 0;
      }

      .summary-total {
        font-size: 1.2rem;
        font-weight: 900;
      }

      .empty-cart {
        color: var(--muted);
        text-align: center;
        padding: 44px 16px;
      }

      .empty-cart a {
        display: inline-flex;
        margin-top: 12px;
        color: var(--primary);
        font-weight: 900;
        text-decoration: underline;
        text-underline-offset: 4px;
      }

      .cart-drawer.is-empty .shipping-box,
      .cart-drawer.is-empty .summary-line,
      .cart-drawer.is-empty #checkoutBtn {
        display: none;
      }

      .cookie-banner {
        position: fixed;
        left: max(16px, env(safe-area-inset-left));
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
        z-index: 120;
        display: none;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        width: min(calc(100% - 32px), 920px);
        margin-inline: auto;
        padding: 14px 16px;
        color: #fff;
        background: #0d1b2a;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        box-shadow: 0 18px 50px rgba(13, 27, 62, 0.28);
      }

      .cookie-banner.show {
        display: flex;
      }

      .cookie-banner p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.86rem;
        font-weight: 600;
        line-height: 1.5;
      }

      .cookie-banner a {
        color: #fff;
        font-weight: 900;
        text-decoration: underline;
        text-underline-offset: 3px;
      }

      .cookie-banner button {
        flex: 0 0 auto;
        min-height: 42px;
        color: #0d1b2a;
        background: #fff;
      }

      .add-btn:disabled {
        cursor: not-allowed;
        opacity: 0.58;
        transform: none;
        box-shadow: none;
      }

      /* =========================
         Payment Modal
      ========================= */
      .modal {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: none;
        place-items: center;
        padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
        background: rgba(13, 27, 62, 0.48);
      }

      .modal.open {
        display: grid;
      }

      .payment-card {
        width: min(100%, 620px);
        max-height: 90vh;
        max-height: 90svh;
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
        background: var(--surface);
        border-radius: 26px;
        box-shadow: var(--shadow);
      }

      .image-viewer-card {
        position: relative;
        width: min(92vw, 820px);
        max-height: 88vh;
        padding: 12px;
        background: rgba(255, 255, 255, .66);
        border: 1px solid rgba(255, 255, 255, .76);
        border-radius: 24px;
        box-shadow: 0 30px 90px rgba(13, 27, 62, .28);
        backdrop-filter: blur(22px) saturate(1.2);
      }

      .image-viewer-card img {
        display: block;
        width: 100%;
        max-height: calc(88vh - 24px);
        object-fit: contain;
        background: rgba(247, 249, 252, .74);
        border: 1px solid rgba(216, 221, 230, .62);
        border-radius: 18px;
      }

      .image-viewer-close {
        position: absolute;
        top: 18px;
        right: 18px;
        z-index: 2;
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        color: var(--navy);
        background: rgba(255, 255, 255, .88);
        border: 1px solid var(--border);
        border-radius: 999px;
        font-size: 1.25rem;
        font-weight: 950;
        box-shadow: 0 12px 28px rgba(13, 27, 62, .16);
      }

      .modal-head {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        padding: 20px;
        border-bottom: 1px solid var(--border);
      }

      .modal-head h2 {
        margin: 0;
        font-family: "Anton", sans-serif;
        font-size: 2rem;
        font-weight: 400;
      }

      .payment-body {
        padding: 20px;
      }

      .tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 18px;
      }

      .tab-btn {
        padding: 12px 8px;
        color: var(--muted);
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 12px;
        font-weight: 900;
      }

      .tab-btn.active {
        color: #fff;
        background: var(--navy);
      }

      .pay-panel {
        display: none;
      }

      .pay-panel.card-form {
        display: none;
      }

      .pay-panel.active {
        display: grid;
        gap: 14px;
      }

      .pay-panel.card-form.active {
        display: grid;
      }

      .payment-note {
        display: grid;
        gap: 4px;
        padding: 14px;
        color: var(--navy);
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 16px;
      }

      .payment-note strong {
        font-weight: 900;
      }

      .payment-note span {
        color: var(--muted);
        font-size: 0.9rem;
        line-height: 1.45;
      }

      .pix-qr-box {
        position: relative;
        display: grid;
        place-items: center;
        width: 190px;
        height: 190px;
        padding: 12px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 22px;
        box-shadow: 0 16px 34px rgba(13, 27, 62, 0.1);
      }

      .pix-qr-box img:first-child {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 14px;
      }

      .pix-qr-logo {
        position: absolute;
        width: 46px;
        height: 46px;
        padding: 4px;
        object-fit: contain;
        background: #fff;
        border: 2px solid #fff;
        border-radius: 14px;
        box-shadow: 0 8px 18px rgba(13, 27, 62, 0.18);
      }

      .copy-row {
        display: flex;
        gap: 8px;
      }

      .copy-row input,
      .card-form input {
        width: 100%;
        min-height: 46px;
        padding: 0 12px;
        border: 1px solid var(--border);
        border-radius: 12px;
      }

      .card-form {
        display: grid;
        gap: 10px;
      }

      .card-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .status {
        color: var(--primary);
        font-weight: 800;
      }

      .confirmation {
        display: none;
        padding: 28px;
        text-align: center;
      }

      .confirmation.open {
        display: block;
      }

      .confirmation strong {
        display: block;
        margin: 12px 0;
        font-family: "Anton", sans-serif;
        font-size: 2.4rem;
        font-weight: 400;
      }

      /* =========================
         Account Modal
      ========================= */
      .account-card {
        width: min(100%, 780px);
        max-height: 90vh;
        max-height: 90svh;
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
        background: var(--surface);
        border-radius: 26px;
        box-shadow: var(--shadow);
      }

      .account-card.logged-view {
        width: min(100%, 560px);
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 24px 70px rgba(13, 27, 62, 0.2);
      }

      @supports (backdrop-filter: blur(18px)) {
        .account-card.logged-view,
        .logged-card {
          backdrop-filter: blur(18px) saturate(1.25);
        }
      }

      @supports (-webkit-backdrop-filter: blur(18px)) {
        .account-card.logged-view,
        .logged-card {
          -webkit-backdrop-filter: blur(18px) saturate(1.25);
        }
      }

      .account-body {
        display: grid;
        gap: 16px;
        padding: 20px;
      }

      .account-status {
        display: none;
        padding: 12px 14px;
        color: var(--navy);
        background: var(--soft-blue);
        border: 1px solid var(--border);
        border-radius: 14px;
        font-weight: 800;
      }

      .account-status.show {
        display: block;
      }

      .auth-grid {
        display: grid;
        grid-template-columns: 0.82fr 1.18fr;
        gap: 16px;
      }

      .auth-box {
        display: grid;
        align-content: start;
        gap: 12px;
        padding: 18px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 20px;
      }

      .auth-box h3 {
        margin: 0;
        font-family: "Anton", sans-serif;
        font-size: 2rem;
        font-weight: 400;
        text-transform: uppercase;
      }

      .auth-box input {
        width: 100%;
        min-height: 46px;
        padding: 0 12px;
        color: var(--navy);
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
      }

      .logged-card {
        display: none;
        gap: 14px;
        width: min(100%, 460px);
        margin-inline: auto;
        padding: 20px;
        background:
          radial-gradient(circle at top right, rgba(212, 0, 90, 0.2), transparent 34%),
          linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(240, 244, 248, 0.34));
        border: 1px solid rgba(255, 255, 255, 0.62);
        border-radius: 24px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58), 0 16px 38px rgba(13, 27, 62, 0.12);
        text-align: center;
      }

      .logged-card.show {
        display: grid;
      }

      .logged-card .btn {
        width: 100%;
      }

      .logged-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }/* =========================
         Responsive
      ========================= */
      @media (max-width: 1024px) {
        .hero,
        .about-grid,
        .testimonial-grid,
        .bento {
          grid-template-columns: 1fr;
        }

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

        .story-strip {
          grid-template-columns: 1fr;
        }

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

      @media (max-width: 768px) {
        .nav-inner {
          grid-template-columns: auto auto auto;
        }

        .menu-btn {
          display: grid;
        }

        .nav-links {
          position: absolute;
          top: 78px;
          left: 16px;
          right: 16px;
          display: none;
          flex-direction: column;
          padding: 16px;
          background: var(--surface);
          border: 1px solid var(--border);
          border-radius: 18px;
          box-shadow: var(--shadow);
        }

        .nav-links.open {
          display: flex;
        }

        .account-btn span {
          display: none;
        }

        .header-search.open input,
        .header-search input:focus {
          width: min(220px, 42vw);
        }

        .hero {
          min-height: auto;
          padding-top: 38px;
        }

        .hero-card {
          min-height: 390px;
        }

        .catalog-head,
        .feed-head {
          align-items: start;
          grid-template-columns: 1fr;
        }

        .catalog-title-row,
        .catalog-tools {
          align-items: stretch;
        }

        .catalog-title-row .section-title {
          white-space: normal;
        }

        .launch-title {
          white-space: normal;
        }

        .catalog-tools {
          width: 100%;
          justify-content: start;
        }

        .search-input {
          width: 100%;
        }

        .filters {
          justify-content: start;
        }

        .product-grid,
        .story-list,
        .feed-grid {
          grid-template-columns: 1fr;
        }

        .product-nav {
          top: 210px;
          width: 42px;
          height: 42px;
        }

        .product-nav-prev {
          left: -8px;
        }

        .product-nav-next {
          right: -8px;
        }

        .cart-drawer {
          width: 100%;
        }

        .admin-body,
        .admin-field-grid,
        .metric-grid,
        .sales-grid,
        .card-grid,
        .logged-actions,
        .tabs,
        .auth-grid {
          grid-template-columns: 1fr;
        }

        .admin-choice-options {
          grid-template-columns: 1fr;
        }

        .admin-preview {
          grid-template-columns: 1fr;
        }

        .admin-preview.has-images .admin-preview-main {
          width: 100%;
          height: auto;
          aspect-ratio: 1 / 1;
        }
      }

      @media (max-width: 520px) {
        .container {
          width: min(calc(100% - 24px), var(--max));
        }

        .section {
          padding: 54px 0;
        }

        .nav-inner {
          gap: 8px;
          min-height: 70px;
        }

        .brand {
          min-width: 0;
        }

        .brand span {
          max-width: 130px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
        }

        .brand-mark {
          width: 38px;
          height: 38px;
          border-radius: 12px;
        }

        .icon-btn {
          width: 42px;
          height: 42px;
        }

        .nav-actions {
          gap: 6px;
        }

        .nav-links {
          top: 70px;
          left: 12px;
          right: 12px;
        }

        .hero {
          padding-top: 28px;
          padding-bottom: 48px;
        }

        .hero h1 {
          font-size: clamp(3.6rem, 19vw, 5.4rem);
          line-height: 0.88;
        }

        .hero p {
          font-size: 1rem;
          line-height: 1.55;
        }

        .hero-actions .btn {
          flex: 1 1 100%;
        }

        .hero-card {
          min-height: 310px;
          border-radius: 24px;
        }

        .hero-card img {
          inset: 14% auto auto 5%;
          width: 90%;
          height: 68%;
        }

        .hero-badge {
          right: 12px;
          bottom: 12px;
          max-width: calc(100% - 24px);
          font-size: 0.74rem;
          text-align: center;
        }

        .ticker {
          margin-top: 0;
        }

        .section-title {
          font-size: clamp(2.2rem, 16vw, 4rem);
          line-height: 0.95;
        }

        .catalog-tools,
        .filters {
          width: 100%;
        }

        .filters {
          display: grid;
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .filters button,
        .size-chip {
          min-width: 0;
        }

        .size-options {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .product-card,
        .story-strip,
        .about-card,
        .account-card,
        .payment-card,
        .admin-card {
          border-radius: 18px;
        }

        .modal {
          align-items: start;
          place-items: start center;
          overflow-y: auto;
        }

        .account-card,
        .payment-card,
        .admin-card {
          width: 100%;
          max-height: none;
          margin: 0;
        }

        .admin-body {
          padding: 12px;
        }

        .admin-sidebar {
          display: flex;
          overflow-x: auto;
          padding: 12px;
          border-radius: 18px;
          -webkit-overflow-scrolling: touch;
        }

        .admin-sidebar strong {
          display: none;
        }

        .admin-tab {
          flex: 0 0 auto;
          min-height: 40px;
          white-space: nowrap;
        }

        .dashboard-hero strong {
          font-size: clamp(2rem, 13vw, 3.4rem);
        }

        .admin-form h3,
        .admin-list-wrap h3 {
          font-size: clamp(2rem, 12vw, 3rem);
        }

        .order-item {
          grid-template-columns: 52px 1fr;
        }

        .order-item span:last-child {
          grid-column: 2;
        }

        .footer-shell {
          padding-top: 36px;
        }

        .footer-grid {
          grid-template-columns: 1fr;
          gap: 32px;
          padding-bottom: 28px;
        }

        .footer-contact {
          width: 100%;
        }

        .footer-bottom {
          flex-direction: column;
          justify-content: center;
          gap: 12px;
          text-align: center;
        }

        .footer-payments {
          justify-content: center;
        }

        .cookie-banner {
          flex-direction: column;
          align-items: stretch;
        }

        .admin-dot {
          left: auto;
          right: 0;
          bottom: 18px;
          transform: none;
        }
      }

      @supports not (height: 100svh) {
        .cart-drawer {
          height: -webkit-fill-available;
        }
      }
    
