      :root {
        color-scheme: dark;
        --bg: #050510;
        --ink: #050510;
        --black: #000000;
        --white: #ffffff;
        --gray: #adb1b2;
        --red: #eb3a3a;
        --orange: #f75403;
        --yellow: #ffd00b;
        --green: #48b96d;
        --blue: #002e96;
        --lake-blue: #1f79e5;
        --translucent-light-blue: #a9d8ff;
        --translucent-purple: #c8a2f0;
        --edge: 4px;
      }

      * {
        box-sizing: border-box;
      }

      [hidden] {
        display: none !important;
      }

      body {
        position: relative;
        margin: 0;
        min-height: 100vh;
        background: var(--bg);
        color: #f8fafc;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        -webkit-font-smoothing: antialiased;
      }

      #drops-canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: -1;
        pointer-events: none;
        background: transparent;
      }

      .product-image[data-quatro-image] {
        top: 47%;
      }

      .product-image[data-dos-image].nudge-up {
        top: 47%;
      }

      .product-image[data-dos-video] {
        width: 100% !important;
        height: 100% !important;
        top: 50% !important;
        left: 42% !important;
        transform: translate(-50%, -50%) !important;
      }

      .product-image[data-quatro-video] {
        width: 100% !important;
        height: 100% !important;
        top: 50% !important;
        left: 42% !important;
        transform: translate(-50%, -50%) !important;
      }

      .product-image[data-retractor-image] {
        top: 50% !important;
        left: 45% !important;
        width: 52% !important;
        height: 52% !important;
        transform: translate(-50%, -50%) !important;
      }

      .product-image[data-retractor-image].is-sideways-view {
        width: 72% !important;
        height: 72% !important;
      }

      .image-slot.has-gallery-controls {
        isolation: isolate;
      }

      .media-price-row.retractor-media-row {
        position: relative;
      }

      .gallery-arrow {
        position: absolute;
        z-index: 4;
        top: 50%;
        width: 42px;
        height: 42px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.24);
        background: rgba(6, 6, 26, 0.74);
        color: #ffffff;
        cursor: pointer;
        display: grid;
        place-items: center;
        transform: translateY(-50%);
        transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
        visibility: visible;
      }

      .gallery-arrow:hover {
        background: rgba(72, 185, 109, 0.22);
        border-color: rgba(72, 185, 109, 0.8);
        transform: translateY(-50%) scale(1.04);
      }

      .gallery-arrow svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.4;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .gallery-arrow.prev {
        left: 28px;
      }

      .gallery-arrow.next {
        left: calc(100% - 320px - 70px);
        right: auto;
      }

      @media (max-width: 820px) {
        .gallery-arrow.next {
          left: auto;
          right: 28px;
        }
      }

      .gallery-view-status {
        display: none;
      }

      .retractor-view-inputs {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
      }

      .canada-col {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .canada-badge {
        width: min(150px, 100%);
        height: auto;
        opacity: 0.88;
        transition: opacity 180ms ease, transform 180ms ease;
      }

      .canada-badge:hover {
        opacity: 1;
        transform: translateY(-2px);
      }

      @media (prefers-reduced-motion: reduce) {
        .pixel {
          animation: none;
        }
      }

      a {
        color: inherit;
      }

      .page {
        position: relative;
        z-index: 1;
        min-height: 100vh;
        display: grid;
        grid-template-rows: auto 1fr auto;
      }

      .nav {
        width: min(1180px, calc(100% - 32px));
        margin: 0 auto;
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 0;
      }

      .footer-card-section {
        width: min(1180px, calc(100% - 32px));
        margin: 0 auto;
        padding: 12px 0 16px;
      }

      .footer-card {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.25), rgba(49, 46, 129, 0.2), rgba(15, 23, 42, 0.15));
        padding: 20px clamp(20px, 4vw, 48px) 16px;
        z-index: 1;
      }

      .footer-card::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 288px;
        height: 288px;
        background: rgba(37, 99, 235, 0.12);
        filter: blur(80px);
        z-index: -1;
        border-radius: 50%;
      }

      .footer-card::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 288px;
        height: 288px;
        background: rgba(79, 70, 229, 0.12);
        filter: blur(80px);
        z-index: -1;
        border-radius: 50%;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 16px;
      }

      @media (min-width: 640px) {
        .footer-grid {
          grid-template-columns: 1fr 1fr 1fr;
        }
        .footer-col:last-child {
          align-items: flex-end;
          text-align: right;
        }
        .footer-contact-info li {
          justify-content: flex-end;
        }
      }

      .footer-col {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .footer-logo {
        width: 140px;
        height: auto;
        margin-bottom: 8px;
      }

      .footer-address {
        display: flex;
        gap: 8px;
        color: #94a3b8;
        font-size: 14px;
        line-height: 1.6;
      }

      .address-icon {
        flex-shrink: 0;
        margin-top: 3px;
        color: var(--green);
      }

      .appointment-text {
        display: block;
        margin-top: 8px;
        font-size: 12px;
        color: #475569;
        font-style: italic;
      }

      .footer-title {
        margin: 0 0 16px;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        text-transform: none;
        letter-spacing: normal;
      }

      .footer-col:last-child .footer-title {
        color: var(--green);
      }

      .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 10px;
      }

      .footer-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 14px;
        transition: color 200ms ease;
      }

      .footer-links a:hover {
        color: #ffffff;
      }

      .footer-contact-info {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 12px;
      }

      .footer-contact-info li {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #94a3b8;
        font-size: 14px;
      }

      .footer-contact-info a {
        color: #94a3b8;
        text-decoration: none;
        transition: color 200ms ease;
      }

      .footer-contact-info a:hover {
        color: #ffffff;
      }

      .contact-icon {
        color: var(--green);
        flex-shrink: 0;
      }

      .footer-bottom {
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        font-size: 12px;
        color: #64748b;
      }

      @media (min-width: 640px) {
        .footer-bottom {
          flex-direction: row;
        }
      }

      .copyright {
        margin: 0;
        color: #64748b;
      }

      .footer-legal {
        display: flex;
        gap: 20px;
      }

      .footer-legal a {
        color: #64748b;
        text-decoration: none;
        transition: color 200ms ease;
      }

      .footer-legal a:hover {
        color: #ffffff;
      }

      .logo {
        width: clamp(104px, 28vw, 142px);
        height: auto;
      }

      .logo-link {
        display: inline-flex;
        align-items: center;
        transition: opacity 180ms ease;
      }

      .logo-link:hover {
        opacity: 0.78;
      }

      .nav-links {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 4px;
        flex-wrap: wrap;
      }

      .nav-links a,
      .cart-nav-button {
        border-radius: 999px;
        border: 0;
        background: transparent;
        color: #cbd5e1;
        cursor: pointer;
        font-size: clamp(12px, 3.3vw, 14px);
        font-weight: 700;
        font-family: inherit;
        text-decoration: none;
        padding: 8px 10px;
        transition: background 180ms ease, color 180ms ease;
      }

      .nav-links a:hover,
      .cart-nav-button:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #ffffff;
      }

      .nav-links .nav-cta {
        border: 1px solid rgba(72, 185, 109, 0.45);
        background: rgba(72, 185, 109, 0.1);
        color: var(--green);
      }

      .cart-nav-button {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        border: 1px solid rgba(255, 255, 255, 0.14);
      }

      .cart-nav-button svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
      }

      .cart-count {
        min-width: 20px;
        height: 20px;
        display: inline-grid;
        place-items: center;
        border-radius: 999px;
        background: var(--green);
        color: #04110a;
        font-size: 12px;
        font-weight: 900;
        padding: 0 6px;
      }

      .hero {
        width: min(1180px, calc(100% - 32px));
        margin: 0 auto;
        display: grid;
        align-items: center;
        gap: 28px;
        padding: 18px 0 28px;
      }

      .panel {
        position: relative;
        overflow: hidden;
        min-height: 300px;
        border-radius: 28px;
        background: var(--green);
        color: var(--ink);
        display: grid;
        align-items: center;
        padding: clamp(24px, 3.4vw, 40px);
      }

      .section {
        width: min(1180px, calc(100% - 32px));
        margin: 0 auto;
        padding: 0 0 84px;
      }

      .simple-footer {
        padding: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
        font-size: 13px;
        color: #475569;
      }

      .section-head {
        max-width: 760px;
        margin-bottom: 28px;
      }

      .section-kicker {
        margin: 0 0 10px;
        color: var(--green);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.24em;
        text-transform: uppercase;
      }

      .section-title {
        margin: 0;
        color: #f8fafc;
        font-size: clamp(30px, 5vw, 54px);
        line-height: 1;
      }

      .section-copy {
        margin: 16px 0 0;
        color: #94a3b8;
        font-size: 18px;
        line-height: 1.55;
      }

      .product-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .product-card {
        color: inherit;
        display: grid;
        min-height: 410px;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 18px;
        background: rgba(9, 9, 20, 0.74);
        backdrop-filter: blur(2px);
        padding: clamp(18px, 3vw, 24px);
        text-decoration: none;
        overflow: hidden;
        transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
      }

      .product-card:hover {
        transform: translateY(-3px);
        border-color: rgba(72, 185, 109, 0.45);
        background: rgba(16, 16, 32, 0.86);
      }

      .product-card.is-coming-soon {
        cursor: default;
      }

      .product-card.is-coming-soon:hover {
        transform: none;
        border-color: rgba(255, 255, 255, 0.13);
        background: rgba(9, 9, 20, 0.74);
      }

      .product-card-head {
        display: grid;
        align-content: space-between;
        min-height: 100%;
        row-gap: 16px;
      }

      .product-chip {
        width: 30px;
        height: 30px;
        border-radius: var(--edge);
        background: var(--c);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
      }

      .product-card-image-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 140px;
        background: rgba(255, 255, 255, 0.015);
        border-radius: var(--edge);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 8px;
      }

      .product-card:not(.is-coming-soon) .product-card-image-wrap {
        background:
          radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%),
          linear-gradient(135deg, rgba(240, 253, 244, 0.85), rgba(220, 252, 231, 0.85));
        border: 1px solid rgba(72, 185, 109, 0.25);
      }

      .product-card-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 300ms ease;
      }

      .product-card:hover .product-card-image {
        transform: scale(1.06);
      }

      .product-card h3 {
        margin: 0 0 6px;
        color: #f8fafc;
        font-size: clamp(20px, 2.4vw, 26px);
        line-height: 1.05;
      }

      .product-card p {
        margin: 0;
        color: #ffffff;
        font-size: 15px;
        line-height: 1.5;
      }

      .product-price {
        display: block;
        margin-top: 12px;
        color: #d7f9df;
        font-size: 19px;
        font-weight: 400;
        letter-spacing: 0.04em;
      }

      .open-label {
        color: var(--green);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
      }

      .coming-soon-label {
        color: #cbd5e1;
      }

      @media (min-width: 720px) {
        .product-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (min-width: 1060px) {
        .product-grid {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }
      }

      .product-page {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: none;
        background: rgba(0, 0, 0, 0.62);
        backdrop-filter: blur(12px);
      }

      .product-page:target {
        display: block;
      }

      .product-sheet {
        position: absolute;
        inset: 48px 0 0;
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        background: #06061a;
      }

      .product-sheet-header {
        position: sticky;
        top: 0;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(6, 6, 26, 0.95);
        backdrop-filter: blur(16px);
        padding: 20px clamp(20px, 5vw, 56px);
      }

      .product-sheet-kicker {
        margin: 0 0 4px;
        color: var(--green);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.2em;
        text-transform: uppercase;
      }

      .product-sheet-title {
        margin: 0;
        color: #f8fafc;
        font-size: clamp(24px, 4vw, 36px);
      }

      .close-sheet {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        color: #cbd5e1;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        font-size: 20px;
        line-height: 1;
        text-decoration: none;
      }

      .product-details {
        width: min(1040px, calc(100% - 32px));
        margin: 0 auto;
        padding: 34px 0 72px;
        display: grid;
        gap: 18px;
      }

      .product-detail-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .media-price-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
        gap: 0;
        align-items: stretch;
        isolation: isolate;
        border: 1px solid rgba(72, 185, 109, 0.3);
        border-radius: 12px;
        overflow: hidden;
        background: #0d0d1b;
      }

      .image-slot {
        position: relative;
        z-index: 0;
        overflow: hidden;
        min-height: 320px;
        aspect-ratio: 16 / 6;
        background:
          radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%),
          linear-gradient(135deg, #f0fdf4, #dcfce7);
        display: grid;
        place-items: center;
        border-right: 1px solid rgba(72, 185, 109, 0.2);
      }

      .image-slot:has(.placeholder-image:not([hidden])) {
        background: #000000;
        border-right-color: rgba(255, 255, 255, 0.08);
      }

      .product-image {
        position: absolute;
        z-index: 1;
        top: 53%;
        left: 42%;
        width: 125%;
        height: 125%;
        object-fit: contain;
        transform: translate(-50%, -50%);
        pointer-events: none;
        filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.14));
      }

      .product-image[hidden] {
        display: none;
      }

      .placeholder-image {
        position: absolute;
        z-index: 1;
        top: 53%;
        left: 48%;
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 36px;
        box-sizing: border-box;
        transform: translate(-50%, -50%);
        pointer-events: none;
      }

      .placeholder-image[hidden] {
        display: none;
      }



      .product-price-panel {
        position: relative;
        z-index: 2;
        padding: 24px;
        display: grid;
        align-content: center;
        gap: 6px;
        background: #0d0d1b;
      }

      .product-price-panel span:first-child {
        color: #94a3b8;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.2em;
        text-transform: uppercase;
      }

      .product-price-panel .product-price {
        margin: 0;
        font-size: 32px;
        color: #d7f9df;
        font-weight: 400;
      }

      .detail-stack {
        display: grid;
        gap: 14px;
      }

      .detail-block {
        border-radius: var(--edge);
        border: 1px solid #252537;
        background: #0d0d1b;
        padding: 16px;
      }

      .detail-label {
        margin: 0 0 8px;
        color: #e2e8f0;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .option-list {
        margin: 0;
        padding-left: 18px;
        color: #aab5c5;
        line-height: 1.55;
      }

      .select-field {
        display: grid;
        gap: 8px;
      }

      .select-label {
        color: #cbd5e1;
        font-size: 13px;
        font-weight: 900;
      }

      .select-control {
        width: 100%;
        border: 1px solid #2a2a3f;
        border-radius: var(--edge);
        background: #111122;
        color: #f8fafc;
        min-height: 44px;
        padding: 10px 12px;
        font: inherit;
        font-weight: 800;
      }

      .select-help {
        margin: 0;
        color: #94a3b8;
        font-size: 13px;
        line-height: 1.45;
      }

      .option-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
        gap: 10px;
      }

      .combined-options {
        display: grid;
        gap: 14px;
      }

      .combined-options-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
      }

      .combined-options .detail-label {
        margin-bottom: 0;
      }

      .combined-options-purchase {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
      }

      .combined-options .option-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      }

      .combined-options .option-face {
        min-height: 78px;
      }

      .combined-options .color-grid {
        gap: 8px;
      }

      .option-choice {
        position: relative;
        cursor: pointer;
      }

      .option-choice.is-static {
        cursor: default;
      }

      .option-choice input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
      }

      .option-face {
        height: 100%;
        min-height: 90px;
        border: 1px solid #2a2a3f;
        border-radius: var(--edge);
        background: #111122;
        color: #cbd5e1;
        display: grid;
        align-content: center;
        justify-items: center;
        gap: 6px;
        padding: 8px;
        text-align: center;
        font-size: 12px;
        font-weight: 500;
        transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
      }

      .option-choice input:checked + .option-face {
        border-color: rgba(72, 185, 109, 0.72);
        background: #12301f;
        color: #f8fafc;
      }

      .option-choice.is-static .option-face {
        border-color: rgba(72, 185, 109, 0.72);
        background: #12301f;
        color: #f8fafc;
      }

      .shape-sample {
        display: block;
        border: 2px solid currentColor;
        background: rgba(255, 255, 255, 0.08);
      }

      .shape-square {
        width: 46px;
        height: 46px;
      }

      .shape-rectangle {
        width: 50px;
        height: 25px;
      }

      .custom-sample {
        min-width: 62px;
        min-height: 38px;
        border: 2px solid currentColor;
        display: grid;
        place-items: center;
        font-size: 11px;
        letter-spacing: 0.08em;
      }

      .custom-qr {
        width: 38px;
        height: 38px;
        background:
          linear-gradient(currentColor 0 0) 6px 6px / 8px 8px no-repeat,
          linear-gradient(currentColor 0 0) 24px 6px / 8px 8px no-repeat,
          linear-gradient(currentColor 0 0) 6px 24px / 8px 8px no-repeat,
          linear-gradient(currentColor 0 0) 22px 22px / 4px 4px no-repeat,
          linear-gradient(currentColor 0 0) 28px 28px / 4px 4px no-repeat;
        border: 2px solid currentColor;
      }

      .custom-retractor {
        position: relative;
        width: 62px;
        height: 38px;
        border: 2px solid currentColor;
      }

      .custom-retractor::before {
        content: "";
        position: absolute;
        left: 10px;
        right: 10px;
        top: 18px;
        border-top: 2px solid currentColor;
      }

      .custom-retractor::after {
        content: "";
        position: absolute;
        right: 8px;
        top: 12px;
        width: 10px;
        height: 10px;
        border: 2px solid currentColor;
        background: #111122;
      }

      .option-icon {
        display: block;
        width: auto;
        height: auto;
        max-width: 68px;
        max-height: 48px;
        object-fit: contain;
        opacity: 0.65;
        transition: opacity 180ms ease, transform 180ms ease;
      }

      .option-choice input:checked + .option-face .option-icon {
        opacity: 1;
        transform: scale(1.05);
      }

      .retractor-block,
      .combined-options .retractor-toggle-row,
      .combined-options .add-on-card {
        background: #111122;
        border: 1px solid #2a2a3f;
        border-radius: var(--edge);
        padding: 16px;
        transition: border-color 180ms ease, background 180ms ease;
      }

      .retractor-block {
        margin-top: 1.5rem;
      }

      .retractor-block:has(input:checked),
      .combined-options .retractor-toggle-row:has(input:checked) {
        border-color: rgba(72, 185, 109, 0.72);
        background: #12301f;
      }

      .combined-options .add-on-card:has(input[value="dos-square"]:checked),
      .combined-options .add-on-card:has(input[value="dos-rectangle"]:checked),
      .combined-options .add-on-card:has(input[value="quatro"]:checked) {
        border-color: rgba(72, 185, 109, 0.72);
        background: #12301f;
      }

      .combined-options .add-on-card .option-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 6px;
      }

      .combined-options .add-on-card .option-face {
        min-height: 70px;
        padding: 6px;
        font-size: 10px;
      }

      .combined-options .add-on-card .option-face img {
        max-height: 36px !important;
        max-width: 100% !important;
        object-fit: contain;
      }

      .dos-options-row {
        display: block;
        width: 100%;
      }

      .dos-options-row .option-grid {
        display: none;
      }

      .retractor-block-inline {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        background: #111122;
        border: 1px solid #2a2a3f;
        border-radius: var(--edge);
        padding: 12px 16px;
        transition: border-color 180ms ease, background 180ms ease;
        box-sizing: border-box;
      }

      .retractor-block-inline:has(input:checked) {
        border-color: rgba(72, 185, 109, 0.72);
        background: #12301f;
      }

      .retractor-title-inline {
        font-size: 11px;
        font-weight: 700;
        color: #f8fafc;
        margin: 0 0 4px 0;
      }

      .retractor-desc-inline {
        font-size: 10px;
        color: #94a3b8;
        margin: 0;
        line-height: 1.35;
      }

      @media (max-width: 580px) {
        .dos-options-row {
          flex-direction: column;
        }
      }

      .retractor-card {
        position: relative;
        cursor: default;
      }

      .retractor-card:has(input:checked) .option-face {
        border-color: rgba(72, 185, 109, 0.72);
        background: #12301f;
        color: #f8fafc;
      }

      .retractor-toggle-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
      }

      .retractor-info {
        flex: 1;
      }

      .retractor-desc {
        font-size: 13px;
        color: #94a3b8;
        margin: 4px 0 0 0;
        line-height: 1.45;
      }

      .sleek-toggle {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 28px;
        flex-shrink: 0;
        cursor: pointer;
      }

      .sleek-toggle input {
        opacity: 0;
        width: 0;
        height: 0;
        position: absolute;
      }

      .toggle-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #2a2a3f;
        transition: .3s;
        border-radius: 34px;
      }

      .toggle-slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 4px;
        background-color: #cbd5e1;
        transition: .3s;
        border-radius: 50%;
      }

      .sleek-toggle input:checked + .toggle-slider {
        background-color: var(--green);
      }

      .sleek-toggle input:checked + .toggle-slider:before {
        transform: translateX(22px);
        background-color: #ffffff;
      }

      .color-menu {
        position: relative;
      }

      .color-chip {
        position: relative;
        display: block;
        width: 18px;
        height: 18px;
        border-radius: 4px;
        background: var(--c);
        border: 1px solid rgba(255, 255, 255, 0.18);
      }

      .color-chip.film-chip {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        color: inherit;
      }

      .color-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 8px;
      }

      .color-choice {
        position: relative;
        cursor: pointer;
      }

      .color-choice input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
      }

      .color-option {
        border: 1px solid #2a2a3f;
        border-radius: var(--edge);
        color: #cbd5e1;
        background: #111122;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        min-height: 28px;
        padding: 4px 8px 4px 4px;
        font-size: 11px;
        font-weight: 500;
        white-space: nowrap;
      }

      .color-choice input:checked + .color-option {
        border-color: rgba(72, 185, 109, 0.64);
        background: #12301f;
        color: #f8fafc;
      }

      .color-choice input:checked + .color-option .color-chip {
        outline: 2px solid var(--green);
        outline-offset: 2px;
        box-shadow:
          0 0 0 1px rgba(5, 5, 16, 0.9),
          0 0 10px var(--c),
          0 0 20px var(--c);
      }

      .color-choice input:checked + .color-option .color-chip::after {
        content: "";
        position: absolute;
        inset: 5px;
        border-right: 2px solid #050510;
        border-bottom: 2px solid #050510;
        transform: rotate(45deg);
      }

      .color-choice input:checked + .color-option .color-chip.film-chip::after {
        display: none;
      }

      .color-choice input:checked + .color-option .color-chip[style*="--black"]::after {
        border-color: #ffffff;
      }

      .doc-links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }

      .doc-pill,
      .add-cart-button {
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: var(--edge);
        color: #cbd5e1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 36px;
        padding: 8px 12px;
        font-size: 13px;
        font-weight: 800;
        text-decoration: none;
      }

      a.doc-pill:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.25);
        color: #ffffff;
        cursor: pointer;
      }

      .cable-card {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--edge);
        background: #111122;
        text-decoration: none;
        color: #cbd5e1;
        transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
      }

      .cable-card:hover {
        background: rgba(72, 185, 109, 0.06);
        border-color: rgba(72, 185, 109, 0.4);
        color: #ffffff;
      }

      .add-cart-button {
        justify-content: center;
        width: fit-content;
        border-color: rgba(72, 185, 109, 0.45);
        background: rgba(72, 185, 109, 0.1);
        color: var(--green);
      }

      .add-cart-button svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
      }

      .shopify-status {
        color: #9aa4b2;
        font-size: 12px;
        margin: 6px 0 0;
      }

      .purchase-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
      }

      .qty-control {
        display: inline-flex;
        align-items: center;
        min-height: 38px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: var(--edge);
        overflow: hidden;
        background: #111122;
      }

      .qty-control button,
      .qty-control input {
        width: 38px;
        height: 38px;
        border: 0;
        background: transparent;
        color: #f8fafc;
        font: inherit;
        font-weight: 900;
        text-align: center;
      }

      .qty-control button {
        cursor: pointer;
      }

      .qty-control button:hover {
        background: rgba(72, 185, 109, 0.16);
      }

      .qty-control input {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        appearance: textfield;
      }

      .qty-control input::-webkit-outer-spin-button,
      .qty-control input::-webkit-inner-spin-button {
        appearance: none;
        margin: 0;
      }

      .combined-options-purchase .purchase-row {
        margin: 0;
      }

      .cart-panel {
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 30;
        width: min(360px, calc(100vw - 40px));
        border: 1px solid rgba(72, 185, 109, 0.4);
        border-radius: 16px;
        background: rgba(9, 9, 20, 0.96);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
        color: #f8fafc;
        padding: 16px;
        transform: translateY(120%);
        transition: transform 220ms ease;
      }

      .cart-panel.is-open {
        transform: translateY(0);
      }

      .cart-panel h3 {
        margin: 0 0 10px;
        font-size: 16px;
      }

      .cart-line {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding: 10px 0;
      }

      .cart-line strong,
      .cart-line span {
        display: block;
      }

      .cart-line span {
        color: #aeb8c5;
        font-size: 12px;
        margin-top: 3px;
      }

      .cart-line-total {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin-top: 8px;
        color: #d7f9df;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.04em;
      }

      .cart-line-actions {
        display: grid;
        justify-items: end;
      }

      .cart-line-top {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        align-items: flex-start;
      }

      .cart-total {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        margin-top: 4px;
        padding-top: 12px;
        color: #f8fafc;
        font-weight: 900;
      }

      .cart-line .qty-control {
        min-height: 30px;
      }

      .cart-line .qty-control button,
      .cart-line .qty-control input {
        width: 30px;
        height: 30px;
        font-size: 12px;
      }

      .cart-actions {
        display: flex;
        gap: 8px;
        margin-top: 12px;
      }

      .cart-actions a,
      .cart-actions button {
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: var(--edge);
        cursor: pointer;
        flex: 1;
        min-height: 40px;
        padding: 10px 12px;
        text-align: center;
        text-decoration: none;
      }

      .cart-actions a {
        background: var(--green);
        color: #04110a;
        font-weight: 800;
      }

      .cart-actions button {
        background: transparent;
        color: #cbd5e1;
      }

      .pixels {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
      }

      .pixel {
        position: absolute;
        width: clamp(14px, 1.5vw, 22px);
        aspect-ratio: 1;
        background: var(--c);
        left: var(--x);
        top: var(--y);
        border: var(--b, 0);
        box-shadow: 0 12px 28px rgba(5, 5, 16, 0.18);
        animation: float 4.6s ease-in-out infinite;
        animation-delay: var(--d);
      }

      @keyframes float {
        0%, 100% {
          transform: translate3d(0, 0, 0) scale(1);
        }
        50% {
          transform: translate3d(10px, -12px, 0) scale(0.92);
        }
      }

      .content {
        position: relative;
        z-index: 1;
        max-width: 1040px;
      }

      .mark {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 280px;
        height: auto;
        margin-bottom: 12px;
        transition: transform 300ms ease;
      }

      .mark:hover {
        transform: scale(1.02);
      }

      .mark img {
        width: 100%;
        height: auto;
        display: block;
      }

      .eyebrow {
        margin: 0 0 8px;
        color: rgba(5, 5, 16, 0.72);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 0.24em;
        text-transform: uppercase;
      }

      h1 {
        margin: 0;
        max-width: 980px;
        color: var(--ink);
        font-size: clamp(20px, 2.4vw, 30px);
        line-height: 1.28;
        letter-spacing: 0;
      }

      .copy {
        margin: 12px 0 0;
        max-width: 980px;
        color: rgba(5, 5, 16, 0.78);
        font-size: clamp(20px, 2.4vw, 30px);
        line-height: 1.28;
      }

      @media (max-width: 640px) {
        .nav {
          align-items: flex-start;
          gap: 8px;
          padding: 12px 0 8px;
        }

        .nav-links {
          max-width: 190px;
          row-gap: 6px;
        }

        .nav-links a,
        .cart-nav-button {
          min-height: 38px;
          padding: 7px 9px;
        }

        .cart-nav-button {
          gap: 5px;
        }

        .cart-nav-button svg {
          width: 18px;
          height: 18px;
        }

        .hero {
          width: min(100% - 20px, 1180px);
          gap: 22px;
          padding: 10px 0 22px;
        }

        .panel {
          min-height: 0;
          border-radius: 18px;
          padding: 20px;
        }

        .pixels {
          display: none;
        }

        .mark {
          width: 140px;
          height: auto;
          margin-bottom: 12px;
        }

        .mark-name {
          font-size: 18px;
        }

        .mark-label {
          font-size: 6px;
        }

        .eyebrow {
          margin-bottom: 6px;
          font-size: 10px;
          letter-spacing: 0.2em;
        }

        h1 {
          font-size: 18px;
          line-height: 1.35;
          font-weight: 700;
        }

        .copy {
          margin-top: 10px;
          font-size: 14px;
          line-height: 1.4;
        }

        .section {
          width: min(100% - 20px, 1180px);
          padding-bottom: 32px;
        }

        .section-head {
          margin-bottom: 14px;
        }

        .section-title {
          font-size: clamp(18px, 6vw, 24px);
          line-height: 1.1;
        }

        .section-copy {
          margin-top: 10px;
          font-size: 14px;
          line-height: 1.4;
        }

        .product-grid {
          gap: 12px;
        }

        .product-card {
          aspect-ratio: auto;
          min-height: 0;
          border-radius: 12px;
          padding: 14px;
        }

        .product-card h3 {
          font-size: 18px;
        }

        .product-card p {
          font-size: 13px;
          line-height: 1.4;
        }

        .product-card-image-wrap {
          height: 100px;
          padding: 4px;
        }

        .product-price {
          font-size: 16px;
          margin-top: 8px;
        }

        .product-page {
          background: #050510;
        }

        .product-sheet {
          inset: 0;
        }

        .product-sheet-header {
          align-items: flex-start;
          padding: 14px 14px;
        }

        .product-sheet-title {
          font-size: 24px;
          line-height: 1.05;
        }

        .close-sheet {
          width: 38px;
          height: 38px;
        }

        .product-details {
          width: min(100% - 20px, 980px);
          padding: 18px 0 34px;
        }

        .image-slot {
          min-height: 240px;
          aspect-ratio: 4 / 3;
        }

        .media-price-row {
          grid-template-columns: 1fr;
        }

        .product-price-panel {
          min-height: 92px;
        }

        .detail-block {
          padding: 12px;
        }

        .option-grid {
          grid-template-columns: 1fr;
        }

        .option-face {
          min-height: 74px;
        }

        .color-grid {
          gap: 8px;
        }

        .color-option {
          padding: 6px 8px;
        }

        .combined-options-header {
          align-items: stretch;
          flex-direction: column;
        }

        .combined-options-purchase,
        .purchase-row,
        .qty-control {
          width: 100%;
        }

        .qty-control input {
          flex: 1;
          min-width: 0;
        }

        .add-cart-button {
          width: 100%;
          justify-content: center;
          min-height: 44px;
        }

        .cart-panel {
          right: 10px;
          left: 10px;
          bottom: 10px;
          width: auto;
          max-height: min(70vh, 520px);
          overflow-y: auto;
          border-radius: 16px;
          padding: 14px;
        }

        .cart-line-top {
          align-items: flex-start;
          gap: 12px;
        }

        .cart-actions {
          position: sticky;
          bottom: 0;
          background: rgba(9, 9, 20, 0.96);
          padding-top: 10px;
        }

        .cart-actions a,
        .cart-actions button {
          flex: 1;
          min-height: 42px;
        }

        /* Footer styling overrides on mobile */
        .footer-card {
          padding: 24px 20px 20px;
        }

        .footer-grid {
          gap: 24px;
          margin-bottom: 24px;
        }

        .footer-col.brand-col {
          order: 1;
        }

        .footer-grid > .footer-col:last-child {
          order: 2;
        }

        .footer-col.canada-col {
          order: 3;
          margin-top: 8px;
        }

        .footer-col {
          align-items: center;
          text-align: center;
        }

        .footer-address {
          justify-content: center;
        }

        .footer-contact-info li {
          justify-content: center;
        }
      }

      @media (min-width: 860px) {
        .hero {
          padding-top: 18px;
        }

        .nav-links {
          display: flex;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          scroll-behavior: auto !important;
        }
      }
