  body {
    background-color: black;
    position: relative;
    margin: 0;
    overflow: hidden;
  }

  body.cursor-hidden-when-unzoomed {
    cursor: none;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle 140px at var(--x, 50%) var(--y, 50%),
        transparent 0,
        transparent 10vw,
        rgba(0, 0, 0, .7) 17vw);
    backdrop-filter: brightness(1);
    z-index: 999;
    background: radial-gradient(circle 140px at var(--x, 50%) var(--y, 50%),
        transparent 0,
        transparent var(--spot-inner),
        rgba(0, 0, 0, .7) var(--spot-outer));
  }

  .portrait {
    width: 200px;
    height: auto;
  }

  .landscape {
    width: auto;
    height: 200px;
  }

  .pics {
    width: 100vw;
    height: 100vh;
    position: absolute;
    touch-action: none;
  }

  .site-status {
    position: fixed;
    left: 2vmin;
    bottom: 2vmin;
    margin: 0;
    max-width: min(48ch, calc(100vw - 4vmin));
    color: rgba(255, 247, 231, .8);
    font: 500 clamp(11px, 1.5vmin, 14px)/1.4 system-ui;
    letter-spacing: .04em;
    text-transform: uppercase;
    z-index: 20;
    pointer-events: none;
  }

  .cart-fab {
    position: fixed;
    top: 2vmin;
    right: 2vmin;
    display: inline-grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: .55em;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(0, 0, 0, .72);
    color: rgba(255, 247, 231, .94);
    cursor: pointer;
    font: 700 clamp(11px, 1.4vmin, 13px)/1 system-ui;
    letter-spacing: .08em;
    padding: .75em .9em;
    text-transform: uppercase;
    z-index: 1002;
  }

  .cart-fab[hidden] {
    display: none;
  }

  .cart-fab-icon {
    position: relative;
    width: 1.35em;
    height: 1em;
    border: 2px solid currentColor;
    border-top: 0;
  }

  .cart-fab-count {
    min-width: 1.4em;
    text-align: center;
  }

  .pics img {
    position: absolute;
    touch-action: none;
    z-index: 1;
  }

  .pics img:hover,
  .pics img:focus-visible {
    cursor: pointer;
  }

  .pics img:focus-visible {
    outline: 1px solid rgba(255, 255, 255, .7);
    outline-offset: 6px;
  }

  .focus-card {
    position: fixed;
    left: 50%;
    top: 50%;
    /* width: min(85vmin, calc(100vw - 4vmin)); */
    padding: 1.2vmin;
    border: 1px solid rgba(255, 255, 255, .16);
    /* border-radius: 14px; */
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    display: grid;
    gap: 1vmin;
    color: rgba(255, 247, 231, .96);
    opacity: 0;
    pointer-events: none;
    transform: translate(calc(-50% + var(--tx, 0px)), calc(-50% + var(--ty, 0px))) scale(var(--sx, 1), var(--sy, 1));
    transition: opacity .42s ease, transform .42s cubic-bezier(.22, 1, .36, 1);
    z-index: 1000;
    justify-content: center;
  }

  .focus-card.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .focus-card.lens-active {
    cursor: none;
  }

  .focus-card-ghost {
    z-index: 999;
    transition: transform .42s cubic-bezier(.22, 1, .36, 1);
  }

  .focus-card-ghost.visible {
    pointer-events: none;
  }

  .focus-card-ghost.image-only {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    gap: 0;
    overflow: hidden;
  }

  .focus-card-ghost.image-only .focus-card-copy {
    display: none;
  }

  .focus-card-ghost.image-only img {
    height: 100%;
    border-radius: 0;
    background: transparent;
  }

  .focus-card img {
    display: block;
    width: 100%;
    object-fit: contain;
    /* border-radius: 10px; */
    background: rgba(255, 255, 255, .04);
  }

  .focus-card-lens {
    position: absolute;
    left: 0;
    top: 0;
    width: clamp(240px, 36vmin, 440px);
    height: clamp(240px, 36vmin, 440px);
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background-color: black;
    background-repeat: no-repeat;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(.92);
    transition: opacity .14s ease, transform .14s ease;
    z-index: 2;
  }

  .focus-card-lens.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .focus-card-swatches {
    --focus-control-height: clamp(14px, 2.1vmin, 20px);
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    gap: .6vmin;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
    justify-self: stretch;
  }

  .focus-card-swatches.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .focus-card-swatch {
    width: clamp(14px, 2.1vmin, 20px);
    height: clamp(14px, 2.1vmin, 20px);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 3px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .28);
  }

  .focus-card-copy {
    display: grid;
    gap: .6em;
  }

  .focus-card-title {
    color: var(--focus-title-color, rgba(255, 247, 231, .72));
    font-family: system-ui;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .05em;
    /* text-align: center; */
    text-transform: uppercase;
  }

  .focus-card-poem-body {
    font-family: Georgia, serif;
    font-size: clamp(10px, 1.4vmin, 12px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .3em;
    white-space: pre-line;
    text-transform: uppercase;
    /* text-align: center; */
  }

  .focus-card-buy {
    display: grid;
    justify-items: end;
    gap: .5vmin;
    margin-left: auto;
  }

  .focus-card-buy[hidden] {
    display: none;
  }

  .focus-card-variants {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .7vmin;
    max-width: min(58vmin, 100%);
  }

  .focus-card-variants[hidden] {
    display: none;
  }

  .focus-card-variant,
  .cart-checkout {
    appearance: none;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 0;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 247, 231, .78);
    cursor: pointer;
    font: 100 clamp(10px, 1.2vmin, 12px) / 1 system-ui;
    letter-spacing: .08em;
    height: var(--focus-control-height, clamp(14px, 2.1vmin, 20px));
    padding: 0 .65em;
    white-space: nowrap;
  }

  .cart-checkout {
    background: rgba(255, 247, 231, .9);
    border-color: rgba(255, 247, 231, .92);
    color: rgba(0, 0, 0, .88);
    width: max-content;
  }

  .focus-card-variant:hover {
    background: rgba(255, 247, 231, .18);
    border-color: rgba(255, 247, 231, .72);
    color: rgba(255, 247, 231, .94);
  }

  .cart-checkout:disabled {
    cursor: not-allowed;
    opacity: .55;
  }

  .focus-card-paypal {
    min-height: 0;
  }

  .cart-panel {
    position: fixed;
    top: 2vmin;
    right: 2vmin;
    width: min(380px, calc(100vw - 4vmin));
    max-height: calc(100vh - 4vmin);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, .84);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .45);
    color: rgba(255, 247, 231, .94);
    display: grid;
    gap: 1em;
    padding: 1em;
    z-index: 1003;
  }

  .cart-panel[hidden] {
    display: none;
  }

  .cart-panel-top,
  .cart-line,
  .cart-line-controls,
  .cart-total {
    display: flex;
    align-items: center;
    gap: .75em;
  }

  .cart-panel-top {
    justify-content: space-between;
  }

  .cart-panel h2 {
    margin: 0;
    font: 700 14px/1 system-ui;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .cart-close,
  .cart-qty,
  .cart-remove {
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .06);
    color: inherit;
    cursor: pointer;
  }

  .cart-close {
    width: 2.2em;
    height: 2.2em;
    font-size: 18px;
    line-height: 1;
  }

  .cart-items {
    display: grid;
    gap: .75em;
  }

  .cart-line {
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, .14);
    padding: .7em;
  }

  .cart-line img {
    width: 64px;
    aspect-ratio: 1;
    object-fit: cover;
    background: rgba(255, 255, 255, .06);
  }

  .cart-line-copy {
    display: grid;
    gap: .35em;
    flex: 1;
    min-width: 0;
  }

  .cart-line-title,
  .cart-line-variant,
  .cart-line-price,
  .cart-status {
    margin: 0;
  }

  .cart-line-title {
    font: 700 12px/1.25 system-ui;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .cart-line-variant,
  .cart-line-price,
  .cart-status {
    color: rgba(255, 247, 231, .72);
    font: 600 11px/1.3 system-ui;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .cart-line-controls {
    justify-content: space-between;
  }

  .cart-qty,
  .cart-remove {
    min-width: 2.1em;
    min-height: 2.1em;
  }

  .cart-total {
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding-top: 1em;
    font: 700 13px/1 system-ui;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  @media (max-width: 700px) {
    .cart-fab {
      top: 12px;
      right: 12px;
      font-size: 14px;
      padding: 11px 13px;
    }

    .focus-card-swatches {
      --focus-control-height: 32px;
      gap: 8px;
    }

    .focus-card-swatch {
      width: 22px;
      height: 22px;
    }

    .focus-card-buy {
      gap: 8px;
    }

    .focus-card-variants {
      gap: 7px;
      max-width: min(76vw, 360px);
    }

    .focus-card-variant,
    .cart-checkout {
      font-size: 12px;
      padding: 0 10px;
    }

    .focus-card-title {
      font-size: 18px;
      line-height: 1.15;
    }

    .focus-card-poem-body {
      font-size: 12px;
      letter-spacing: .28em;
      line-height: 1.45;
    }

    .cart-checkout {
      height: 44px;
      font-size: 14px;
      padding: 0 14px;
    }

    .cart-panel {
      inset: 12px;
      width: auto;
      max-height: calc(100vh - 24px);
      gap: 16px;
      padding: 16px;
    }

    .cart-panel h2 {
      font-size: 18px;
    }

    .cart-close {
      width: 44px;
      height: 44px;
      font-size: 24px;
    }

    .cart-items {
      gap: 12px;
    }

    .cart-line {
      gap: 12px;
      padding: 12px;
    }

    .cart-line img {
      width: 76px;
    }

    .cart-line-copy {
      gap: 8px;
    }

    .cart-line-title {
      font-size: 14px;
      line-height: 1.25;
    }

    .cart-line-variant,
    .cart-line-price,
    .cart-status {
      font-size: 13px;
      line-height: 1.35;
    }

    .cart-qty,
    .cart-remove {
      min-width: 40px;
      min-height: 40px;
      font-size: 14px;
    }

    .cart-total {
      font-size: 16px;
    }
  }

  video {
    opacity: .2;
    transition: 8s;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .logo {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    pointer-events: none;
    z-index: 10;
  }

  .logo img {
    /* filter: drop-shadow(0px 0px 5px white) drop-shadow(0px 0px 15px white) invert(1); */
    filter: drop-shadow(0px 0px 5px white) invert(1);
  }
