
      :root {
        --blue: #1952c7;
        --blue-dark: #0f3fa9;
        --cream: #fffef0;
        --cream-deep: #f7f1d7;
        --blush: #ffdedc;
        --ink: #0e0e0e;
        --sage: #5f7055;
        --yellow: #f5c64b;
        --sand: #d4c3a2;
        --white: #fffef8;
        --line: rgba(14, 14, 14, 0.24);
        --soft-line: rgba(14, 14, 14, 0.12);
        --shadow: 0 20px 44px rgba(14, 14, 14, 0.12);
        --display: Impact, "Arial Black", "Arial Narrow Bold", sans-serif;
        --ui: Arial, "Helvetica Neue", Helvetica, sans-serif;
        --serif: Georgia, "Times New Roman", serif;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        color: var(--ink);
        background:
          radial-gradient(circle at 9% 12%, rgba(245, 198, 75, 0.18), transparent 28rem),
          radial-gradient(circle at 83% 9%, rgba(255, 222, 220, 0.5), transparent 25rem),
          var(--cream);
        font-family: var(--ui);
        letter-spacing: 0;
      }

      body.drawer-open,
      body.menu-open {
        overflow: hidden;
      }

      button,
      input,
      select,
      textarea {
        font: inherit;
      }

      button {
        color: inherit;
      }

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

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

      .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;
      }

      .page-shell {
        min-height: 100dvh;
        overflow: clip;
      }

      .promo {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 1rem;
        align-items: center;
        min-height: 2.35rem;
        padding: 0.45rem 2.5rem;
        color: var(--white);
        background: var(--ink);
        font-size: 0.86rem;
        font-weight: 800;
        text-transform: uppercase;
      }

      .promo span:first-child {
        justify-self: start;
      }

      .promo span:nth-child(2) {
        justify-self: center;
      }

      .promo span:last-child {
        justify-self: end;
      }

      .site-header {
        position: sticky;
        top: 0;
        z-index: 20;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 2rem;
        align-items: center;
        min-height: 4.5rem;
        padding: 0 3rem;
        background: rgba(255, 254, 240, 0.95);
        border-bottom: 1px solid var(--line);
        backdrop-filter: blur(12px);
      }

      .brand-mark {
        font-family: var(--display);
        color: var(--blue);
        font-size: 3rem;
        line-height: 0.85;
        text-transform: uppercase;
        letter-spacing: 0;
      }

      .nav-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2.4rem;
      }

      .nav-links a {
        position: relative;
        font-size: 0.88rem;
        font-weight: 900;
        text-transform: uppercase;
      }

      .nav-links a::after {
        position: absolute;
        left: 0;
        bottom: -0.6rem;
        width: 100%;
        height: 0.18rem;
        background: var(--blue);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 180ms ease;
        content: "";
      }

      .nav-links a:hover::after,
      .nav-links a:focus-visible::after {
        transform: scaleX(1);
      }

      .header-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }

      .icon-button,
      .cart-trigger,
      .menu-trigger,
      .round-control {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1.5px solid var(--ink);
        background: var(--white);
        cursor: pointer;
        transition: transform 160ms ease, background 160ms ease, color 160ms ease;
      }

      .icon-button:active,
      .cart-trigger:active,
      .menu-trigger:active,
      .round-control:active,
      .button:active {
        transform: translateY(1px) scale(0.99);
      }

      .cart-trigger {
        min-height: 3rem;
        gap: 0.55rem;
        padding: 0 1rem;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 950;
        text-transform: uppercase;
      }

      .cart-count {
        display: inline-grid;
        min-width: 1.55rem;
        height: 1.55rem;
        place-items: center;
        border-radius: 999px;
        color: var(--white);
        background: var(--blue);
        font-size: 0.78rem;
        line-height: 1;
      }

      .menu-trigger {
        display: none;
        width: 3rem;
        height: 3rem;
        border-radius: 8px;
      }

      .button {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        min-height: 3.25rem;
        padding: 0.9rem 1.35rem;
        border: 1.5px solid var(--ink);
        border-radius: 8px;
        background: var(--white);
        color: var(--ink);
        font-size: 0.88rem;
        font-weight: 950;
        text-align: center;
        text-transform: uppercase;
        cursor: pointer;
        transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
      }

      .button.primary {
        color: var(--white);
        background: var(--blue);
        border-color: var(--blue);
      }

      .button.primary:hover,
      .button.primary:focus-visible {
        background: var(--blue-dark);
      }

      .button.dark {
        color: var(--white);
        background: var(--ink);
      }

      .button.ghost {
        color: var(--blue);
        background: transparent;
        border-color: var(--blue);
      }

      .button.full {
        width: 100%;
      }

      .button[disabled] {
        opacity: 0.5;
        cursor: not-allowed;
      }

      .section {
        padding: 4.5rem 3rem;
      }

      .section.compact {
        padding-top: 2.2rem;
      }

      .section-inner {
        width: min(100%, 112rem);
        margin: 0 auto;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin: 0 0 0.85rem;
        color: var(--blue);
        font-size: 0.8rem;
        font-weight: 950;
        text-transform: uppercase;
      }

      .display-title {
        margin: 0;
        color: var(--blue);
        font-family: var(--display);
        font-size: 5rem;
        line-height: 0.9;
        letter-spacing: 0;
        text-transform: uppercase;
      }

      .section-title {
        margin: 0;
        color: var(--blue);
        font-family: var(--display);
        font-size: 3.6rem;
        line-height: 0.9;
        letter-spacing: 0;
        text-transform: uppercase;
      }

      .serif-copy {
        margin: 0;
        max-width: 38rem;
        font-family: var(--serif);
        font-size: 1.2rem;
        line-height: 1.35;
      }

      .small-copy {
        margin: 0;
        color: rgba(14, 14, 14, 0.74);
        font-size: 0.92rem;
        line-height: 1.45;
      }

      .hero {
        min-height: calc(100dvh - 6.85rem);
        padding-top: 0;
        border-bottom: 1px solid var(--line);
      }

      .hero-grid {
        display: grid;
        grid-template-columns: minmax(24rem, 0.78fr) minmax(0, 1.22fr);
        gap: 2rem;
        align-items: stretch;
      }

      .hero-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 44rem;
        padding: 3.5rem 0;
      }

      .drop-label {
        width: max-content;
        margin-bottom: 1.1rem;
        padding: 0.52rem 1rem;
        border-radius: 8px;
        background: var(--blush);
        color: var(--blue);
        font-family: var(--display);
        font-size: 1.7rem;
        line-height: 1;
        text-transform: uppercase;
        transform: rotate(-4deg);
        filter: drop-shadow(0 0 0.16rem var(--white)) drop-shadow(0 0.35rem 0.5rem rgba(14, 14, 14, 0.12));
      }

      .hero-title {
        max-width: 34rem;
        font-size: 5.8rem;
      }

      .squiggle {
        width: 22rem;
        max-width: 100%;
        height: 1.4rem;
        margin: 1rem 0 1.4rem;
        color: var(--blue);
      }

      .benefit-row {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
        max-width: 37rem;
        margin: 1rem 0 1.35rem;
      }

      .benefit {
        display: grid;
        justify-items: center;
        gap: 0.45rem;
        text-align: center;
        color: var(--blue);
      }

      .benefit svg {
        width: 2.8rem;
        height: 2.8rem;
      }

      .benefit span {
        font-size: 0.74rem;
        font-weight: 950;
        line-height: 1.1;
        text-transform: uppercase;
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        max-width: 35rem;
      }

      .rating-strip {
        width: max-content;
        max-width: 100%;
        margin-top: 1.25rem;
        padding: 0.65rem 1rem;
        border-radius: 8px;
        background: rgba(245, 198, 75, 0.55);
        font-size: 0.82rem;
        font-weight: 850;
        text-transform: uppercase;
      }

      .hero-art {
        position: relative;
        min-height: 44rem;
        padding: 2rem 0 0;
      }

      .blue-poster {
        position: absolute;
        inset: 0 -3rem 0 10%;
        background: var(--blue);
        clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%, 10% 38%);
      }

      .hero-family {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 0.95fr 0.7fr;
        grid-template-rows: auto auto;
        gap: 1.1rem;
        align-items: end;
        padding: 3.5rem 0 2rem 3rem;
      }

      .hero-product-main {
        grid-row: 1 / span 2;
        align-self: end;
        filter: drop-shadow(0 32px 34px rgba(14, 14, 14, 0.28));
        transform: rotate(-3deg);
      }

      .hero-family-card {
        position: relative;
        min-height: 14rem;
        border: 1.5px solid rgba(255, 254, 240, 0.86);
        border-radius: 8px;
        background: rgba(255, 254, 240, 0.92);
        overflow: hidden;
        box-shadow: var(--shadow);
      }

      .hero-family-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .hero-family-card.small-product {
        display: grid;
        place-items: center;
        padding: 1.2rem;
      }

      .hero-family-card.small-product img {
        max-height: 15rem;
        object-fit: contain;
      }

      .sticker {
        display: inline-grid;
        place-items: center;
        width: 6rem;
        min-height: 5.2rem;
        padding: 0.7rem;
        color: var(--blue);
        background: var(--yellow);
        clip-path: polygon(
          50% 0%,
          59% 14%,
          73% 7%,
          78% 23%,
          95% 23%,
          88% 39%,
          100% 50%,
          88% 61%,
          95% 77%,
          78% 77%,
          73% 93%,
          59% 86%,
          50% 100%,
          41% 86%,
          27% 93%,
          22% 77%,
          5% 77%,
          12% 61%,
          0% 50%,
          12% 39%,
          5% 23%,
          22% 23%,
          27% 7%,
          41% 14%
        );
        font-family: var(--display);
        font-size: 1.05rem;
        line-height: 0.95;
        text-align: center;
        text-transform: uppercase;
        filter: drop-shadow(0 0 0.16rem var(--white)) drop-shadow(0 0.45rem 0.55rem rgba(14, 14, 14, 0.14));
      }

      .sticker.blush {
        background: var(--blush);
      }

      .sticker.blue {
        color: var(--white);
        background: var(--blue);
      }

      .hero-sticker {
        position: absolute;
        top: 7%;
        left: 6%;
        z-index: 3;
        transform: rotate(-9deg);
      }

      .diecut-art {
        display: block;
        height: auto;
        pointer-events: none;
        user-select: none;
        filter: drop-shadow(0 0.55rem 0.45rem rgba(14, 14, 14, 0.12));
      }

      .mascot {
        color: var(--blue);
      }

      .hero-mascot {
        position: absolute;
        right: 16%;
        top: 6%;
        z-index: 3;
        width: 10rem;
        transform: rotate(6deg);
      }

      .hero-lantern {
        position: absolute;
        right: 5%;
        bottom: 18%;
        z-index: 3;
        width: 8.5rem;
        transform: rotate(-5deg);
      }

      .hero-badge {
        position: absolute;
        right: 8%;
        bottom: 9%;
        z-index: 3;
        width: 8.2rem;
        transform: rotate(-8deg);
      }

      .icon-panel {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        margin-top: 2.5rem;
        border: 1.5px solid var(--blue);
        border-radius: 8px;
        background: rgba(255, 254, 248, 0.86);
      }

      .icon-panel-item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.8rem;
        align-items: center;
        min-height: 7rem;
        padding: 1rem 1.3rem;
        border-right: 1px solid var(--line);
        color: var(--blue);
      }

      .icon-panel-item:last-child {
        border-right: 0;
      }

      .icon-panel-item svg,
      .icon-panel-item img {
        width: 4rem;
        height: 4rem;
        object-fit: contain;
      }

      .icon-panel-item strong {
        display: block;
        color: var(--ink);
        font-size: 0.92rem;
        line-height: 1.15;
        text-transform: uppercase;
      }

      .collection-head {
        display: grid;
        grid-template-columns: minmax(16rem, 0.45fr) minmax(0, 1fr);
        gap: 2rem;
        align-items: end;
        margin-bottom: 1.5rem;
      }

      .collection-side {
        position: relative;
        display: grid;
        gap: 1.2rem;
        padding-right: 1.5rem;
        border-right: 1px solid var(--line);
      }

      .collection-mascot {
        position: absolute;
        right: 1.2rem;
        top: 0.6rem;
        width: 7.2rem;
        transform: rotate(8deg);
      }

      .collection-promo-sticker {
        display: grid;
        grid-template-columns: 3.8rem 1fr;
        gap: 0.85rem;
        align-items: center;
        max-width: 21rem;
        margin-top: 0.4rem;
        padding: 0.9rem 1rem;
        border: 0.22rem solid var(--white);
        border-radius: 8px;
        color: var(--white);
        background: var(--blue);
        box-shadow: 0 0.9rem 1.5rem rgba(14, 14, 14, 0.16);
        transform: rotate(-4deg);
      }

      .collection-promo-sticker img {
        width: 3.8rem;
      }

      .collection-promo-sticker strong {
        font-family: var(--display);
        font-size: 1.35rem;
        line-height: 0.95;
        text-transform: uppercase;
      }

      .collection-controls {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
      }

      .tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
      }

      .tab,
      .tool-button {
        min-height: 2.45rem;
        padding: 0 1rem;
        border: 1px solid var(--soft-line);
        border-radius: 8px;
        background: rgba(255, 254, 248, 0.75);
        font-size: 0.82rem;
        font-weight: 900;
        text-transform: uppercase;
        cursor: pointer;
      }

      .tab.active {
        color: var(--white);
        background: var(--blue);
        border-color: var(--blue);
      }

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

      .product-card {
        position: relative;
        display: grid;
        grid-template-rows: auto 1fr;
        min-height: 100%;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 254, 248, 0.8);
        overflow: hidden;
      }

      .product-media {
        position: relative;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        background: #f4f0df;
      }

      .product-media > img:first-child {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 280ms ease;
      }

      .product-card:hover .product-media > img:first-child {
        transform: scale(1.035);
      }

      .product-sticker {
        position: absolute;
        top: 0.8rem;
        left: 0.8rem;
        width: 5rem;
        min-height: 4.4rem;
        font-size: 0.9rem;
        transform: rotate(-8deg);
      }

      .product-mascot-sticker {
        position: absolute;
        right: -0.3rem;
        bottom: -0.1rem;
        z-index: 2;
        width: 5.8rem;
        max-width: 34%;
        height: auto;
        object-fit: contain;
        transform: rotate(5deg);
        transition: transform 220ms ease;
      }

      .product-card:hover .product-mascot-sticker {
        transform: rotate(2deg) translateY(-0.25rem);
      }

      .product-card[data-product-card="cooling-pouch"] .product-mascot-sticker,
      .product-card[data-product-card="outdoor-helper-kit"] .product-mascot-sticker {
        width: 6.7rem;
        max-width: 40%;
      }

      .product-card[data-product-card="air-hat"] .product-mascot-sticker {
        right: -0.45rem;
        width: 6.3rem;
      }

      .product-body {
        display: grid;
        gap: 0.9rem;
        padding: 1rem;
      }

      .swatches {
        display: flex;
        gap: 0.45rem;
        align-items: center;
      }

      .swatch {
        width: 1.15rem;
        height: 1.15rem;
        border: 1px solid rgba(14, 14, 14, 0.45);
        border-radius: 999px;
        background: var(--sand);
      }

      .swatch.sage {
        background: var(--sage);
      }

      .swatch.ink {
        background: var(--ink);
      }

      .swatch.blush {
        background: #edb7b0;
      }

      .swatch.blue {
        background: var(--blue);
      }

      .product-line {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: start;
      }

      .product-name {
        margin: 0;
        font-size: 0.96rem;
        font-weight: 950;
        text-transform: uppercase;
      }

      .product-price {
        white-space: nowrap;
        font-weight: 900;
      }

      .product-actions {
        display: grid;
        grid-template-columns: 1fr 3.05rem;
        gap: 0.7rem;
      }

      .icon-add {
        width: 3.05rem;
        border-radius: 8px;
      }

      .bundle-strip {
        display: grid;
        grid-template-columns: minmax(11rem, 0.28fr) 1fr minmax(16rem, 0.28fr);
        gap: 1rem;
        align-items: center;
        margin-top: 1rem;
        padding: 1rem;
        border: 1.5px solid var(--ink);
        border-radius: 8px;
        background: rgba(255, 254, 248, 0.9);
      }

      .bundle-products {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.8rem;
        align-items: center;
      }

      .bundle-mini {
        display: grid;
        gap: 0.5rem;
        text-align: center;
        font-size: 0.72rem;
        font-weight: 900;
        text-transform: uppercase;
      }

      .bundle-mini img {
        width: 100%;
        aspect-ratio: 1.2 / 1;
        object-fit: contain;
        border-radius: 8px;
        background: var(--cream-deep);
      }

      .bundle-plus {
        display: grid;
        place-items: center;
        color: var(--ink);
        font-size: 2.2rem;
        font-weight: 900;
      }

      .bundle-total {
        display: grid;
        gap: 0.6rem;
        border-left: 1px solid var(--line);
        padding-left: 1rem;
      }

      .product-detail-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(26rem, 0.95fr);
        gap: 2.2rem;
        align-items: start;
      }

      .gallery {
        display: grid;
        grid-template-columns: 5.5rem minmax(0, 1fr);
        gap: 1.2rem;
        align-items: start;
      }

      .thumbs {
        display: grid;
        gap: 0.8rem;
      }

      .thumb {
        width: 100%;
        aspect-ratio: 1 / 1;
        padding: 0;
        border: 1.5px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        overflow: hidden;
        cursor: pointer;
      }

      .thumb.active {
        border-color: var(--blue);
        box-shadow: 0 0 0 2px rgba(25, 82, 199, 0.16);
      }

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

      .main-gallery {
        position: relative;
        min-height: 40rem;
        border-radius: 8px;
        background: var(--cream-deep);
        overflow: hidden;
      }

      .main-gallery > img:first-child {
        width: 100%;
        height: 100%;
        min-height: 40rem;
        object-fit: cover;
      }

      .air-lines {
        position: absolute;
        right: 6%;
        top: 8%;
        width: 9rem;
        color: var(--blue);
        animation: float-lines 2.8s ease-in-out infinite;
      }

      .pdp-mascot-sticker {
        position: absolute;
        right: 3%;
        bottom: 5%;
        z-index: 3;
        width: 8.5rem;
        transform: rotate(-7deg);
      }

      .pdp-airflow-art {
        position: absolute;
        right: 6%;
        top: 6%;
        z-index: 2;
        width: 9.5rem;
        opacity: 0.96;
        transform: rotate(2deg);
      }

      .product-panel {
        display: grid;
        gap: 1.25rem;
      }

      .price {
        font-size: 2.2rem;
        font-weight: 950;
      }

      .choice-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.8rem;
      }

      .choice {
        display: grid;
        min-height: 4.2rem;
        place-items: center;
        padding: 0.8rem;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 254, 248, 0.82);
        font-size: 0.8rem;
        font-weight: 950;
        text-align: center;
        text-transform: uppercase;
        cursor: pointer;
      }

      .choice.active {
        color: var(--blue);
        border-color: var(--blue);
        box-shadow: 0 0 0 2px rgba(25, 82, 199, 0.12);
      }

      .color-row,
      .qty-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
      }

      .color-options {
        display: flex;
        gap: 0.6rem;
      }

      .color-button {
        width: 2.35rem;
        height: 2.35rem;
        border: 1.5px solid rgba(14, 14, 14, 0.45);
        border-radius: 999px;
        background: var(--sand);
        cursor: pointer;
      }

      .color-button.active {
        outline: 2px solid var(--blue);
        outline-offset: 3px;
      }

      .qty-stepper {
        display: inline-grid;
        grid-template-columns: 2.6rem 2.7rem 2.6rem;
        align-items: center;
        min-height: 2.85rem;
        border: 1px solid var(--line);
        border-radius: 8px;
        overflow: hidden;
        background: var(--white);
      }

      .qty-stepper button {
        height: 100%;
        border: 0;
        background: transparent;
        font-size: 1.25rem;
        cursor: pointer;
      }

      .qty-stepper span {
        text-align: center;
        font-weight: 900;
      }

      .product-cta-row {
        display: grid;
        grid-template-columns: 1fr 0.82fr;
        gap: 1rem;
      }

      .feature-rail {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

      .feature-rail-item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.55rem;
        align-items: center;
        padding: 0.9rem;
        border-right: 1px solid var(--line);
        color: var(--blue);
        font-size: 0.72rem;
        font-weight: 950;
        text-transform: uppercase;
      }

      .feature-rail-item:last-child {
        border-right: 0;
      }

      .detail-modules {
        display: grid;
        grid-template-columns: minmax(18rem, 0.75fr) minmax(20rem, 1fr) minmax(18rem, 0.8fr);
        gap: 1rem;
        margin-top: 2rem;
      }

      .module {
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 254, 248, 0.82);
        overflow: hidden;
      }

      .module-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 1.15rem;
        border-bottom: 1px solid var(--soft-line);
        color: var(--blue);
        font-weight: 950;
        text-transform: uppercase;
      }

      .detail-list {
        display: grid;
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .detail-list li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.95rem 1.15rem;
        border-bottom: 1px solid var(--soft-line);
        font-size: 0.86rem;
        font-weight: 850;
      }

      .detail-list li:last-child {
        border-bottom: 0;
      }

      .airflow-demo {
        display: grid;
        grid-template-columns: minmax(0, 0.85fr) minmax(10rem, 1fr);
        gap: 1rem;
        align-items: center;
        padding: 1.2rem;
      }

      .demo-visual {
        position: relative;
        min-height: 12rem;
      }

      .demo-illustration {
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 2;
        width: min(78%, 16rem);
        transform: translate(-50%, -48%) rotate(-2deg);
      }

      .demo-cap {
        position: absolute;
        left: 50%;
        top: 0.8rem;
        width: 12rem;
        height: 5.3rem;
        transform: translateX(-50%);
        border: 1.5px solid rgba(14, 14, 14, 0.2);
        border-radius: 50% 50% 12px 12px;
        background: linear-gradient(180deg, #f9df78, #d8c26e);
      }

      .demo-brim {
        position: absolute;
        left: 50%;
        top: 5.8rem;
        width: 16rem;
        height: 1.6rem;
        transform: translateX(-50%);
        border: 1.5px solid rgba(14, 14, 14, 0.2);
        background: #cabf84;
      }

      .demo-fan {
        position: absolute;
        top: 5.1rem;
        width: 3.1rem;
        height: 3.1rem;
        border: 0.35rem solid var(--ink);
        border-radius: 999px;
        background: var(--cream);
        animation: fan-spin 1.2s linear infinite;
      }

      .demo-fan::before,
      .demo-fan::after {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 2.1rem;
        height: 0.35rem;
        background: rgba(14, 14, 14, 0.55);
        transform: translate(-50%, -50%);
        content: "";
      }

      .demo-fan::after {
        transform: translate(-50%, -50%) rotate(90deg);
      }

      .demo-fan.left {
        left: 27%;
      }

      .demo-fan.right {
        right: 27%;
      }

      .demo-air {
        position: absolute;
        left: 22%;
        right: 22%;
        bottom: 0;
        height: 6.5rem;
        color: rgba(25, 82, 199, 0.28);
        animation: air-flow 1.8s ease-in-out infinite;
      }

      .blush-panel {
        display: grid;
        gap: 0.9rem;
        padding: 1.2rem;
        background: linear-gradient(135deg, rgba(255, 222, 220, 0.9), rgba(255, 254, 248, 0.86));
      }

      .blush-panel h3,
      .account-card h3,
      .support-card h3 {
        margin: 0;
        color: var(--blue);
        font-size: 1rem;
        font-weight: 950;
        text-transform: uppercase;
      }

      .blush-list {
        display: grid;
        gap: 0.75rem;
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .blush-list li {
        display: grid;
        grid-template-columns: 2rem 1fr;
        gap: 0.75rem;
        align-items: center;
        font-size: 0.86rem;
        line-height: 1.25;
      }

      .cart-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.42fr);
        gap: 1.2rem;
        align-items: start;
      }

      .cart-title-wrap,
      .checkout-title-wrap,
      .account-title-wrap {
        position: relative;
      }

      .cart-header-mascot {
        position: absolute;
        left: 14.5rem;
        top: 0.1rem;
        width: 7.5rem;
        transform: rotate(8deg);
      }

      .cart-table,
      .summary-box,
      .checkout-panel,
      .account-panel,
      .support-card,
      .about-panel {
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 254, 248, 0.84);
      }

      .cart-table {
        overflow: hidden;
      }

      .cart-head {
        display: grid;
        grid-template-columns: 1fr 7rem 9rem 7rem;
        gap: 1rem;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--soft-line);
        font-size: 0.82rem;
        font-weight: 950;
        text-transform: uppercase;
      }

      .cart-items {
        display: grid;
      }

      .cart-row {
        display: grid;
        grid-template-columns: 1fr 7rem 9rem 7rem;
        gap: 1rem;
        align-items: center;
        padding: 1.1rem 1.25rem;
        border-bottom: 1px solid var(--soft-line);
      }

      .cart-row:last-child {
        border-bottom: 0;
      }

      .cart-product {
        display: grid;
        grid-template-columns: 7.4rem 1fr;
        gap: 1rem;
        align-items: center;
      }

      .cart-product img {
        width: 7.4rem;
        aspect-ratio: 1 / 0.8;
        object-fit: cover;
        border-radius: 8px;
        background: var(--cream-deep);
      }

      .cart-product strong,
      .drawer-item strong,
      .checkout-item strong {
        display: block;
        font-size: 0.88rem;
        line-height: 1.15;
        text-transform: uppercase;
      }

      .cart-meta {
        margin-top: 0.35rem;
        color: rgba(14, 14, 14, 0.72);
        font-size: 0.82rem;
      }

      .remove-line {
        width: max-content;
        padding: 0;
        border: 0;
        color: rgba(14, 14, 14, 0.7);
        background: transparent;
        font-size: 0.78rem;
        text-decoration: underline;
        cursor: pointer;
      }

      .empty-cart {
        display: none;
        padding: 2rem;
      }

      .empty-cart.active {
        display: grid;
        gap: 1rem;
      }

      .shipping-progress {
        position: relative;
        display: grid;
        gap: 0.6rem;
        padding: 1rem 1.25rem;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 254, 248, 0.82);
        overflow: hidden;
      }

      .shipping-mascot {
        position: absolute;
        right: -0.5rem;
        bottom: -1.1rem;
        width: 5.6rem;
        opacity: 0.92;
        transform: rotate(-10deg);
      }

      .progress-track {
        height: 0.55rem;
        overflow: hidden;
        border-radius: 999px;
        background: rgba(14, 14, 14, 0.12);
      }

      .progress-fill {
        width: 0%;
        height: 100%;
        border-radius: 999px;
        background: var(--yellow);
        transition: width 220ms ease;
      }

      .discount-form,
      .email-form {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 0.7rem;
      }

      .field {
        display: grid;
        gap: 0.45rem;
      }

      .field label {
        color: var(--blue);
        font-size: 0.78rem;
        font-weight: 950;
        text-transform: uppercase;
      }

      .field input {
        min-height: 3.05rem;
        width: 100%;
        border: 1px solid var(--soft-line);
        border-radius: 8px;
        padding: 0 1rem;
        background: var(--white);
      }

      .field small {
        color: rgba(14, 14, 14, 0.7);
        font-size: 0.75rem;
      }

      .form-message {
        min-height: 1.2rem;
        margin: 0;
        color: var(--blue);
        font-size: 0.8rem;
        font-weight: 850;
      }

      .summary-box {
        display: grid;
        gap: 1rem;
        padding: 1.2rem;
        position: sticky;
        top: 6rem;
      }

      .summary-line {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
      }

      .summary-line.total {
        padding-top: 0.8rem;
        border-top: 1px solid var(--line);
        font-size: 1.35rem;
        font-weight: 950;
      }

      .upsell-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
        margin-top: 1rem;
      }

      .upsell-card {
        display: grid;
        grid-template-columns: 7.5rem 1fr;
        gap: 0.9rem;
        align-items: center;
        border: 1px solid var(--soft-line);
        border-radius: 8px;
        background: rgba(255, 254, 248, 0.78);
        overflow: hidden;
      }

      .upsell-card img {
        width: 100%;
        height: 100%;
        min-height: 8rem;
        object-fit: cover;
        background: var(--cream-deep);
      }

      .upsell-card > div {
        display: grid;
        gap: 0.4rem;
        padding: 0.8rem 0.8rem 0.8rem 0;
      }

      .checkout-grid {
        display: grid;
        grid-template-columns: minmax(20rem, 0.92fr) minmax(0, 1.08fr);
        gap: 2rem;
        align-items: start;
      }

      .checkout-grid-single {
        grid-template-columns: minmax(20rem, 42rem);
        justify-content: center;
      }

      .account-layout {
        width: min(100%, 58rem);
        margin: 0 auto;
      }

      .checkout-panel,
      .account-panel {
        position: relative;
        display: grid;
        gap: 1rem;
        padding: 1.25rem;
        overflow: hidden;
      }

      .checkout-mascot {
        position: absolute;
        right: 1rem;
        top: 0.8rem;
        width: 8rem;
        opacity: 0.92;
        transform: rotate(8deg);
      }

      .checkout-panel > *:not(.checkout-mascot),
      .account-panel > *:not(.account-mascot):not(.checkout-heart) {
        position: relative;
        z-index: 1;
      }

      .checkout-list {
        display: grid;
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .checkout-item {
        display: grid;
        grid-template-columns: 5.8rem 1fr auto;
        gap: 0.9rem;
        align-items: center;
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--soft-line);
      }

      .checkout-item img {
        width: 5.8rem;
        aspect-ratio: 1 / 0.82;
        object-fit: cover;
        border-radius: 8px;
        background: var(--cream-deep);
      }

      .order-confirmed {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
        align-items: center;
        padding: 1.2rem;
        border: 1.5px solid var(--ink);
        border-radius: 8px;
        background: rgba(255, 254, 248, 0.86);
      }

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

      .account-mascot {
        position: absolute;
        right: 1rem;
        top: 8.8rem;
        width: 6.8rem;
        transform: rotate(-6deg);
      }

      .checkout-heart {
        position: absolute;
        right: 2rem;
        top: 1.2rem;
        width: 4.6rem;
        height: 4rem;
      }

      .checkout-heart path {
        fill: none;
        stroke: var(--blush);
        stroke-width: 8;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .account-card {
        display: grid;
        grid-template-columns: 3.2rem 1fr auto;
        gap: 0.9rem;
        align-items: center;
        min-height: 8rem;
        padding: 1rem;
        border: 1px solid var(--soft-line);
        border-radius: 8px;
        background: rgba(255, 254, 248, 0.74);
      }

      .account-card:nth-child(2) {
        background: rgba(255, 222, 220, 0.54);
      }

      .account-card:nth-child(3) {
        background: rgba(245, 198, 75, 0.24);
      }

      .account-card:nth-child(4) {
        background: rgba(95, 112, 85, 0.14);
      }

      .round-arrow {
        display: grid;
        width: 2.35rem;
        height: 2.35rem;
        place-items: center;
        border-radius: 999px;
        color: var(--white);
        background: var(--blue);
        font-weight: 950;
      }

      .story-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
        gap: 2rem;
        align-items: stretch;
      }

      .lifestyle-photo {
        min-height: 27rem;
        border-radius: 8px;
        overflow: hidden;
      }

      .lifestyle-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .about-panel {
        display: grid;
        align-content: center;
        gap: 1.2rem;
        padding: 2rem;
      }

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

      .support-card {
        display: grid;
        gap: 0.8rem;
        padding: 1.2rem;
      }

      .site-footer {
        padding: 2.2rem 3rem;
        color: var(--white);
        background: var(--ink);
      }

      .footer-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
        width: min(100%, 112rem);
        margin: 0 auto;
      }

      .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.82rem;
        font-weight: 850;
        text-transform: uppercase;
      }

      .drawer-overlay {
        position: fixed;
        inset: 0;
        z-index: 50;
        display: none;
        background: rgba(14, 14, 14, 0.42);
      }

      .drawer-overlay.active {
        display: block;
      }

      .cart-drawer {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 60;
        display: grid;
        grid-template-rows: auto 1fr auto;
        width: min(100%, 31rem);
        height: 100dvh;
        background: var(--cream);
        border-left: 1px solid var(--line);
        box-shadow: -18px 0 40px rgba(14, 14, 14, 0.22);
        transform: translateX(105%);
        transition: transform 220ms ease;
      }

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

      .drawer-header,
      .drawer-footer {
        padding: 1.35rem;
        border-bottom: 1px solid var(--line);
      }

      .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
      }

      .drawer-title {
        margin: 0;
        color: var(--blue);
        font-family: var(--display);
        font-size: 3rem;
        line-height: 0.9;
        text-transform: uppercase;
      }

      .drawer-body {
        display: grid;
        align-content: start;
        gap: 1rem;
        overflow: auto;
        padding: 1.35rem;
      }

      .drawer-footer {
        display: grid;
        gap: 1rem;
        border-top: 1px solid var(--line);
        border-bottom: 0;
      }

      .drawer-item {
        display: grid;
        grid-template-columns: 6.4rem 1fr;
        gap: 0.9rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--soft-line);
      }

      .drawer-item img {
        width: 6.4rem;
        aspect-ratio: 1 / 0.9;
        object-fit: cover;
        border-radius: 8px;
        background: var(--cream-deep);
      }

      .drawer-item-main {
        display: grid;
        gap: 0.65rem;
      }

      .drawer-line {
        display: flex;
        justify-content: space-between;
        gap: 0.8rem;
      }

      .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 55;
        display: none;
        padding: 6rem 1.2rem 1.2rem;
        background: rgba(255, 254, 240, 0.98);
      }

      .mobile-menu.active {
        display: block;
      }

      .mobile-menu nav {
        display: grid;
        gap: 0.7rem;
      }

      .mobile-menu a {
        padding: 1rem;
        border: 1px solid var(--line);
        border-radius: 8px;
        color: var(--blue);
        font-family: var(--display);
        font-size: 2.4rem;
        line-height: 0.9;
        text-transform: uppercase;
      }

      .status-toast {
        position: fixed;
        right: 1.4rem;
        bottom: 1.4rem;
        z-index: 80;
        max-width: min(25rem, calc(100vw - 2rem));
        padding: 1rem 1.1rem;
        border: 1.5px solid var(--ink);
        border-radius: 8px;
        color: var(--ink);
        background: var(--yellow);
        box-shadow: var(--shadow);
        font-size: 0.85rem;
        font-weight: 850;
        opacity: 0;
        pointer-events: none;
        transform: translateY(calc(100% + 2rem));
        transition: opacity 160ms ease, transform 220ms ease;
      }

      .status-toast.active {
        opacity: 1;
        transform: translateY(0);
      }

      @keyframes fan-spin {
        to {
          transform: rotate(360deg);
        }
      }

      @keyframes air-flow {
        0%,
        100% {
          opacity: 0.45;
          transform: translateY(0);
        }
        50% {
          opacity: 0.9;
          transform: translateY(0.55rem);
        }
      }

      @keyframes float-lines {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(0.5rem);
        }
      }

      @media (max-width: 1180px) {
        .display-title {
          font-size: 4.2rem;
        }

        .hero-title {
          font-size: 4.8rem;
        }

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

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

      @media (max-width: 920px) {
        .promo {
          grid-template-columns: 1fr;
          text-align: center;
          padding: 0.5rem 1rem;
        }

        .promo span {
          justify-self: center !important;
        }

        .promo span:first-child,
        .promo span:last-child {
          display: none;
        }

        .site-header {
          grid-template-columns: auto 1fr auto;
          padding: 0 1rem;
        }

        .nav-links {
          display: none;
        }

        .menu-trigger {
          display: inline-flex;
        }

        .brand-mark {
          font-size: 2.4rem;
        }

        .section {
          padding: 3rem 1rem;
        }

        .hero-grid,
        .collection-head,
        .product-detail-grid,
        .cart-layout,
        .checkout-grid,
        .story-grid {
          grid-template-columns: 1fr;
        }

        .hero {
          min-height: auto;
        }

        .hero-copy {
          min-height: auto;
          padding: 2.2rem 0 0;
        }

        .hero-art {
          min-height: 36rem;
          padding-top: 0;
        }

        .blue-poster {
          inset: 4rem -1rem 0 18%;
        }

        .hero-family {
          padding: 5rem 0 1.5rem;
        }

        .hero-product-main {
          grid-column: 1 / -1;
          grid-row: auto;
          width: min(100%, 38rem);
          margin: 0 auto;
        }

        .hero-family-card {
          min-height: 11rem;
        }

        .icon-panel,
        .benefit-row,
        .feature-rail,
        .bundle-strip {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .icon-panel-item:nth-child(2) {
          border-right: 0;
        }

        .icon-panel-item {
          border-bottom: 1px solid var(--line);
        }

        .icon-panel-item:nth-last-child(-n + 2) {
          border-bottom: 0;
        }

        .collection-side {
          padding-right: 0;
          border-right: 0;
        }

        .bundle-strip {
          align-items: start;
        }

        .bundle-products {
          grid-column: 1 / -1;
          grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .bundle-total {
          grid-column: 1 / -1;
          border-left: 0;
          border-top: 1px solid var(--line);
          padding: 1rem 0 0;
        }

        .main-gallery,
        .main-gallery > img:first-child {
          min-height: 28rem;
        }

        .cart-head {
          display: none;
        }

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

        .summary-box {
          position: static;
        }

        .footer-inner {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 640px) {
        .cart-trigger span:not(.cart-count) {
          display: none;
        }

        .cart-trigger {
          width: 3rem;
          min-width: 3rem;
          padding: 0;
        }

        .display-title,
        .hero-title {
          font-size: 3.8rem;
        }

        .section-title {
          font-size: 3rem;
        }

        .hero-art {
          order: -1;
          min-height: 19rem;
          margin-top: 1rem;
        }

        .hero-family {
          grid-template-columns: 1fr;
          gap: 0.75rem;
          padding: 2rem 0 1rem;
        }

        .hero-product-main {
          width: min(96%, 24rem);
        }

        .hero-family-card:not(.small-product) {
          display: none;
        }

        .hero-family-card.small-product {
          display: none;
        }

        .blue-poster {
          inset: 2rem -1rem 0 18%;
        }

        .hero-sticker {
          top: 0.8rem;
          left: 0;
          width: 5rem;
          min-height: 4.3rem;
          font-size: 0.9rem;
        }

        .hero-mascot {
          width: 6rem;
          top: 1.5rem;
          right: 0.2rem;
        }

        .hero-lantern {
          display: none;
        }

        .hero-badge {
          width: 6rem;
          right: 0.2rem;
          bottom: 0.2rem;
        }

        .benefit-row,
        .icon-panel,
        .product-grid,
        .detail-modules,
        .support-grid,
        .upsell-grid,
        .account-grid,
        .product-cta-row,
        .choice-grid,
        .feature-rail {
          grid-template-columns: 1fr;
        }

        .icon-panel-item,
        .feature-rail-item {
          border-right: 0;
          border-bottom: 1px solid var(--line);
        }

        .icon-panel-item:last-child,
        .feature-rail-item:last-child {
          border-bottom: 0;
        }

        .gallery {
          grid-template-columns: 1fr;
        }

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

        .main-gallery,
        .main-gallery > img:first-child {
          min-height: 22rem;
        }

        .airflow-demo,
        .order-confirmed,
        .account-card,
        .checkout-item,
        .cart-product,
        .upsell-card,
        .drawer-item {
          grid-template-columns: 1fr;
        }

        .discount-form,
        .email-form {
          grid-template-columns: 1fr;
        }

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

        .cart-drawer {
          width: 100%;
          border-left: 0;
        }

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

        .mobile-menu a {
          font-size: 2rem;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          scroll-behavior: auto !important;
          animation-duration: 0.001ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.001ms !important;
        }
      }
