:root {
  --bg: #fffbf8;
  --panel: #fffbf8;
  --card: #f4f0ee;
  --ink: #2d2926;
  --muted: #808080;
  --soft: #eeeeee;
  --soft-ink: #3c3733;
  --cta: #2a2521;
  --cta-hover: #9d9995;
  --red: #d60000;
  --red-tint: #ffd9d7;
  --line: #e8e2de;
  --overlay: rgba(31, 29, 27, 0.24);
}

* {
  box-sizing: border-box;
}

.fade-gate {
  opacity: 0;
  transition: opacity 420ms ease-out;
}

.fade-gate.loaded {
  opacity: 1;
  transition-delay: 90ms;
}

.content-shell {
  position: relative;
  margin-top: 112px;
}

.fade-gate:not(.checkout-shell) {
  margin-top: 112px;
}

.ghost-screen {
  position: absolute;
  inset: 0;
  transition: opacity 320ms ease-out;
}

.ghost-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes ghost-pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.ghost-block {
  max-width: 100%;
  background: var(--card);
  border-radius: 12px;
  animation: ghost-pulse 1.4s ease-in-out infinite;
}

html {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.22;
  text-rendering: geometricPrecision;
}

html.bag-open,
body.bag-open {
  overflow-y: hidden;
}

button,
input {
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 112px;
  padding: 64px 60px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 16px;
  line-height: 1;
  transition: transform 260ms ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.wordmark,
.header-right a,
.header-right button {
  color: var(--ink);
  text-decoration: none;
}

.wordmark {
  white-space: nowrap;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  white-space: nowrap;
}

.logo-link {
  position: absolute;
  top: 39px;
  left: 50%;
  width: 34px;
  height: 62px;
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 4px;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 86px;
}

.header-right button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

.page-main {
  max-width: 1312px;
  margin: 0 auto;
}

.shop-grid {
  padding-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 98px;
}

.shop-grid.single {
  grid-template-columns: 1fr;
}

.shop-grid.single .product-card-media {
  height: 600px;
}

.product-card {
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.about-frame,
.studio-banner {
  background: var(--card);
  overflow: hidden;
}

.product-card-media {
  background: #f5f0ed;
  overflow: hidden;
}

.product-frame {
  background: #f5f0ed;
  overflow: hidden;
  touch-action: pan-y;
}

.product-frame.draggable {
  cursor: grab;
}

.product-frame.draggable:active {
  cursor: grabbing;
}

.product-frame img,
.product-frame video {
  position: absolute;
  inset: 0;
  -webkit-user-drag: none;
  user-select: none;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card-media {
  position: relative;
  height: 600px;
  border-radius: 24px;
  padding: 56px;
}

.product-card-media img,
.product-card-media video,
.product-frame img,
.product-frame video,
.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-media img,
.product-card-media video {
  object-fit: contain;
}

.product-card-media img,
.product-card-media video {
  position: absolute;
  inset: 0;
  transition: opacity 180ms ease, transform 220ms ease;
}

.product-card-media .hover-img {
  opacity: 0;
}

.product-card-media:hover:has(.hover-img) .base-img {
  opacity: 0;
  transform: scale(1.01);
}

.product-card-media:hover .base-img {
  transform: scale(1.01);
}

.product-card-media:hover .hover-img {
  opacity: 1;
  transform: scale(1.01);
}

.product-card.sold-out .product-card-media {
  opacity: 0.58;
}

.product-meta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-meta h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
}

.price {
  color: var(--muted);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
  white-space: nowrap;
}

.product-meta h2,
.product-meta .price {
  font-size: 16px;
  line-height: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin-top: 0;
  padding: 0 20px;
  border-radius: 10px;
  background: var(--soft);
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1;
}

.studio-banner {
  margin-top: 101px;
  aspect-ratio: 1312 / 349;
  border-radius: 18px;
}

.studio-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 78%;
}

.site-footer {
  max-width: 1312px;
  margin: 96px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-size: 16px;
}

.follow,
.contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--red-tint);
  color: var(--red);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.icon-btn:hover {
  background: var(--red);
  color: #fefaf7;
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.email-pill {
  min-height: 40px;
  padding: 8px 20px 9px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  background: var(--red-tint);
  color: var(--red);
  text-decoration: none;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease;
}

.email-pill:hover {
  background: var(--red);
  color: #fefaf7;
}

.copyright {
  margin: 101px 0 39px;
  color: #b8b5b2;
  font-size: 13px;
  text-align: center;
}

.product-detail {
  max-width: 1312px;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 746px) minmax(340px, 1fr);
  gap: 100px;
  align-items: start;
  align-content: start;
}

.product-frame,
.about-frame {
  border-radius: 24px;
}

.product-gallery {
  justify-self: start;
}

.ghost-frame {
  width: 625px;
  height: 625px;
}

.product-frame {
  position: relative;
  width: 625px;
  height: 625px;
}

.gallery-nav {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.gallery-arrow {
  width: 35px;
  height: 35px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-arrow svg {
  height: 12px;
  width: auto;
  transition: opacity 140ms ease;
}

.gallery-arrow.prev svg {
  transform: scaleX(-1);
}

.gallery-arrow:hover:not(:disabled) svg {
  opacity: 0.5;
}

.gallery-arrow:disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.gallery-arrow:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.product-copy {
  width: 100%;
  max-width: 468px;
  margin-left: auto;
  align-self: center;
}

.product-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-copy h1 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.12;
}

.product-title-row h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.12;
  white-space: nowrap;
}

.product-title-row .pill {
  flex: 0 0 auto;
  margin-top: 0;
  white-space: nowrap;
}

.product-price {
  margin: 16px 0;
}

.product-desc {
  margin: 0;
  font-size: 16px;
}

.product-desc p,
.about-copy p {
  margin: 0;
}

.product-desc p + p {
  margin-top: 0;
}

.product-desc + .btn-primary {
  margin-top: 16px;
}

.btn-primary {
  width: 100%;
  min-height: 54px;
  margin-top: 54px;
  border: 0;
  border-radius: 8px;
  background: var(--cta);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn-primary:hover:not(:disabled) {
  color: rgba(255, 255, 255, 0.5);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(1px);
}

.btn-primary:disabled {
  background: var(--cta-hover);
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
}

.growth-timeline,
.materials-instructions {
  grid-column: 1 / -1;
  margin-top: 0;
}

body[data-breadcrumb='products'] .site-footer {
  margin-top: 46px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.growth-full-video {
  flex-shrink: 0;
}

.growth-timeline h2,
.materials-instructions h2 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.12;
}

.section-note {
  color: var(--ink);
  font-size: 16px;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.growth-tile-label {
  display: block;
  margin-bottom: 16px;
  font-size: 16px;
}

.growth-tile video {
  display: block;
  width: 100%;
  aspect-ratio: 1034 / 1842;
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  object-fit: cover;
}

.materials-instructions {
  display: grid;
  grid-template-columns: minmax(0, 360px) 1fr;
  gap: 100px;
}

.materials-grid {
  display: flex;
  gap: 24px;
}

.material-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.material-tile img {
  width: 150px;
  height: 150px;
  border-radius: 18px;
  background: var(--card);
  object-fit: contain;
}

.material-tile-label {
  font-size: 16px;
}

.growing-instructions ol {
  margin: 0;
  padding-left: 20px;
  font-size: 16px;
}

.growing-instructions li {
  margin-bottom: 16px;
}

.growing-instructions li:last-child {
  margin-bottom: 0;
}

.about-page {
  max-width: 1312px;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 746px) minmax(340px, 1fr);
  gap: 100px;
  align-items: start;
  align-content: start;
}

.about-frame {
  width: 625px;
  height: 625px;
}

.about-frame img {
  object-position: 50% 52%;
}

.about-copy {
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  align-self: center;
  font-size: 16px;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-copy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bag-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease;
  z-index: 40;
}

.bag-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.bag-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: calc(49.2vw - 20px);
  min-width: 540px;
  display: flex;
  flex-direction: column;
  padding: 64px 60px 40px;
  background: var(--panel);
  box-shadow: -24px 0 60px rgba(42, 37, 33, 0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 120ms ease, transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  z-index: 41;
}

.bag-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.bag-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

.bag-drawer-header button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

.bag-body {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

.bag-items {
  min-height: 100%;
  padding: 82px 0 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.bag-items.single {
  justify-content: center;
  padding-top: 0;
  padding-bottom: 160px;
}

.bag-item {
  width: 300px;
  text-align: center;
}

.bag-item-image {
  width: 300px;
  aspect-ratio: 300 / 322;
  border-radius: 10px;
  overflow: hidden;
  background: var(--card);
  padding: 32px;
  box-sizing: border-box;
}

.bag-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bag-item-name {
  margin: 30px 0 0;
  font-size: 16px;
  line-height: 1.18;
}

.stepper {
  height: 40px;
  min-width: 172px;
  margin-top: 21px;
  padding: 0 8px;
  display: inline-grid;
  grid-template-columns: 48px 54px 48px;
  align-items: center;
  border-radius: 999px;
  background: #f0f0f0;
}

.stepper button {
  height: 32px;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.stepper button:disabled {
  cursor: default;
  opacity: 0.35;
}

.stepper span {
  text-align: center;
  font-size: 16px;
}

.bag-empty {
  min-height: 100%;
  padding-bottom: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 49px;
}

.bag-empty p {
  margin: 0;
  font-size: 24px;
}

.bag-empty .btn-primary {
  width: min(466px, 100%);
  margin: 0;
}

.bag-footer {
  display: flex;
  justify-content: center;
}

.bag-footer .btn-primary {
  width: min(466px, 100%);
  margin: 0;
}

.flow-shell {
  max-width: 560px;
  min-height: 720px;
  margin: 0 auto;
  padding: 88px 24px 80px;
}

.flow-heading {
  margin-bottom: 34px;
  text-align: center;
}

.flow-heading h1 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 400;
}

.flow-heading p,
.flow-message {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.field-grid .span-2 {
  grid-column: span 2;
}

input {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
}

input::placeholder {
  color: #aaa5a0;
}

input:focus {
  border-color: var(--ink);
  outline: 0;
}

.rate-option {
  margin-top: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
}

.rate-option:has(input:checked) {
  border-color: var(--ink);
  background: var(--card);
}

.rate-option > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rate-option input[type='radio'] {
  appearance: none;
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  position: relative;
}

.rate-option input[type='radio']:checked {
  border-color: var(--ink);
}

.rate-option input[type='radio']:checked::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--ink);
}

.rate-load-more {
  display: block;
  margin: 12px auto 0;
  padding: 0;
  border: 0;
  background: none;
  color: #808080;
  font-size: 14px;
  cursor: pointer;
}

.checkout-shell {
  height: 100vh;
  padding-left: 275px;
  overflow: hidden;
}

.ghost-checkout-grid {
  padding-left: 275px;
}

.checkout-empty {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.checkout-grid {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 150px;
}

.checkout-main {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 182px 0 150px 0;
}

.checkout-main::-webkit-scrollbar {
  display: none;
}

.checkout-main > * {
  flex-shrink: 0;
}

.checkout-section {
  max-width: 640px;
}

.checkout-section h2 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 400;
}

.shipping-placeholder {
  margin: 0;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--soft-ink);
  font-size: 14px;
}

.checkout-summary {
  height: 100%;
  overflow-y: auto;
  background: var(--card);
  padding: 182px 56px 56px;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.summary-item-image {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  flex: 0 0 auto;
}

.summary-item-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
}

.summary-item-name {
  flex: 1;
  margin: 0;
  font-size: 14px;
}

.summary-item-qty {
  color: #2d2926;
  font-size: 14px;
}

.summary-shipping-placeholder {
  color: #808080;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--soft-ink);
}

.summary-row.total {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 18px;
  color: var(--ink);
}

.payment-error {
  margin-top: 14px;
  color: #b3452f;
  font-size: 14px;
}

.inline-link {
  color: var(--red);
  text-decoration: none;
}

@media (max-width: 1420px) {
  .page-main,
  .site-footer,
  .product-detail,
  .about-page {
    max-width: none;
    margin-right: 60px;
    margin-left: 60px;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 96px;
    padding: 32px 24px 0;
    font-size: 16px;
  }

  .logo-link {
    top: 24px;
    width: 30px;
    height: 55px;
  }

  .header-right {
    gap: 22px;
  }

  .page-main,
  .site-footer,
  .product-detail,
  .about-page {
    margin-right: 24px;
    margin-left: 24px;
  }

  .shop-grid {
    padding-top: 4px;
  }

  .product-detail,
  .about-page {
    padding-top: 4px;
  }

  .checkout-shell {
    height: auto;
    margin-top: 0;
    padding-left: 24px;
    padding-right: 24px;
    overflow: visible;
  }

  .ghost-checkout-grid {
    padding-left: 24px;
    padding-right: 24px;
  }

  .checkout-grid {
    height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .checkout-main {
    height: auto;
    overflow-y: visible;
    padding: 116px 24px 44px;
  }

  .checkout-summary {
    height: auto;
    overflow-y: visible;
    padding: 32px 24px;
  }

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .product-title-row h1,
  .about-copy h1,
  .bag-empty p {
    font-size: 24px;
  }

  .product-meta h2,
  .product-meta .price {
    font-size: 16px;
  }

  .pill,
  .site-footer,
  .follow,
  .contact,
  .product-desc,
  .about-copy,
  .btn-primary {
    font-size: 16px;
  }

  .studio-banner {
    margin-top: 72px;
    aspect-ratio: 1.65;
  }

  .product-detail,
  .about-page {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .product-copy,
  .about-copy {
    max-width: none;
    margin-top: 0;
    margin-left: 0;
  }

  .product-gallery {
    justify-self: stretch;
  }

  .product-frame,
  .about-frame,
  .ghost-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .growth-timeline,
  .materials-instructions {
    margin-top: 0;
  }

  .growth-grid {
    gap: 12px;
  }

  .materials-instructions {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .site-footer {
    margin-top: 72px;
    align-items: flex-start;
    flex-direction: column;
  }

  .copyright {
    margin-top: 70px;
  }

  .bag-overlay {
    display: none;
  }

  .bag-drawer {
    width: 100vw;
    min-width: 0;
    padding: 32px 24px 28px;
  }

  .bag-items.single {
    padding-top: 40px;
  }
}

@media (max-width: 560px) {
  .site-header {
    font-size: 14px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .bag-drawer-header {
    font-size: 14px;
  }

  .product-detail {
    padding-top: 4px;
  }

  .flow-shell {
    padding-left: 32px;
    padding-right: 32px;
  }

  .logo-link {
    display: none;
  }

  .page-main,
  .site-footer,
  .product-detail,
  .about-page {
    margin-right: 32px;
    margin-left: 32px;
  }

  .checkout-shell {
    padding-left: 32px;
    padding-right: 32px;
  }

  .ghost-checkout-grid {
    padding-left: 32px;
    padding-right: 32px;
  }

  .checkout-summary {
    margin-left: -32px;
    margin-right: -32px;
  }

  .header-right {
    gap: 14px;
  }

  .product-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .product-title-row h1 {
    white-space: normal;
  }

  .follow,
  .contact {
    flex-wrap: wrap;
    gap: 16px;
  }

  .bag-item,
  .bag-item-image {
    width: min(300px, 100%);
  }

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

  .field-grid .span-2 {
    grid-column: auto;
  }

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

  .materials-grid {
    flex-direction: column;
  }

  .material-tile {
    width: 100%;
  }

  .material-tile img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
