/** Shopify CDN: Minification failed

Line 20:13 Expected identifier but found whitespace
Line 20:15 Unexpected "{"
Line 20:25 Expected ":"
Line 21:15 Expected identifier but found whitespace
Line 21:17 Unexpected "{"
Line 21:27 Expected ":"
Line 22:21 Expected identifier but found whitespace
Line 22:23 Unexpected "{"
Line 22:33 Expected ":"
Line 23:17 Expected identifier but found whitespace
... and 8 more hidden warnings

**/
/* ==============================
   CSS VARIABLES
   ============================== */
:root {
  --color-bg: {{ settings.color_background }};
  --color-text: {{ settings.color_text }};
  --color-text-muted: {{ settings.color_text_muted }};
  --color-border: {{ settings.color_border }};
  --color-white: #ffffff;
  --color-black: #1a1a1a;
  --color-button-bg: {{ settings.color_button_bg }};
  --color-button-text: {{ settings.color_button_text }};
  --color-sale: #a0432e;
  --font-logo: 'Josefin Sans', 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --header-height: 56px;
  --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ==============================
   RESET & BASE
   ============================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Global clickable hover — outlined on hover */
.header__nav-link:hover,
.header__action-link:hover,
.hero__container:hover .hero__caption-label,
.footer__link:hover,
.mobile-menu__link:hover,
.product-card__title a:hover,
.product-page__title:hover,
.password-page__enter:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  opacity: 1;
}
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

.skip-to-content {
  position: absolute; top: -100px; left: 0; z-index: 10000;
  background: var(--color-black); color: var(--color-white);
  padding: 12px 20px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
}
.skip-to-content:focus { top: 0; }
.visually-hidden {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important;
  clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important;
}

/* ==============================
   TYPOGRAPHY
   ============================== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 300; line-height: 1.3; }
h1 { font-size: 36px; letter-spacing: 0.04em; }
h2 { font-size: 28px; letter-spacing: 0.04em; }
h3 { font-size: 22px; letter-spacing: 0.04em; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-block; padding: 14px 40px; font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400;
  border: 1px solid var(--color-button-bg); cursor: pointer;
  transition: all var(--transition); text-align: center; font-family: var(--font-body);
}
.btn--primary { background: var(--color-button-bg); color: var(--color-button-text); }
.btn--primary:hover { background: transparent; color: var(--color-button-bg); }
.btn--secondary { background: transparent; color: var(--color-text); border-color: var(--color-text); }
.btn--secondary:hover { background: var(--color-text); color: var(--color-bg); }
.btn--full { width: 100%; }

/* ==============================
   FORMS
   ============================== */
.form-input {
  width: 100%; padding: 12px 16px; border: 1px solid var(--color-border);
  background: transparent; font-family: var(--font-body); font-size: 12px;
  letter-spacing: 0.06em; color: var(--color-text); outline: none;
  text-transform: uppercase; transition: border-color var(--transition);
}
.form-input::placeholder { color: var(--color-text-muted); text-transform: uppercase; font-size: 10.5px; letter-spacing: 0.14em; }
.form-input:focus { border-color: var(--color-text); }
.form-label { display: block; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; color: var(--color-text-muted); }
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%231a1a1a' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}

/* ==============================
   HEADER
   Logo LEFT | Nav CENTER | Cart RIGHT
   ============================== */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 40px;
}

/* AMBERWALL text logo — Josefin Sans Light, wide letter-spacing */
.header__logo { justify-self: start; }
.header__logo-text {
  font-family: var(--font-logo);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--color-text);
  display: block;
  line-height: 1;
  cursor: pointer;
  transition: text-decoration 0.2s ease;
}

/* Nav center */
.header__nav {
  display: flex; gap: 36px; align-items: center; justify-self: center;
}
.header__nav-link {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 400; position: relative; padding: 4px 0;
  transition: opacity var(--transition);
}
.header__nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--color-text);
  transition: width var(--transition);
}
.header__nav-link:hover::after { width: 100%; }

/* Actions right */
.header__actions { justify-self: end; display: flex; align-items: center; gap: 24px; }
.header__action-link {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 400; transition: opacity var(--transition);
}
.header__action-link:hover { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.header__cart-count { font-size: 10px; opacity: 0.6; }

/* Mobile toggle */
.header__mobile-toggle {
  display: none; flex-direction: column; gap: 5px; width: 22px;
  cursor: pointer; background: none; border: none; padding: 4px 0;
}
.header__mobile-toggle span { display: block; height: 1px; background: var(--color-text); width: 100%; transition: var(--transition); }

/* ==============================
   MOBILE MENU
   ============================== */
.mobile-menu {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--color-bg); z-index: 2000;
  display: flex; flex-direction: column; padding: 20px 24px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.mobile-menu__logo-text {
  font-family: var(--font-logo); font-size: 13px; font-weight: 300;
  letter-spacing: 0.45em; text-transform: uppercase; color: var(--color-text);
}
.mobile-menu__close {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  background: none; border: none; cursor: pointer; padding: 8px 0;
}
.mobile-menu__nav { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu__link { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; }

/* ==============================
   HERO — Small centered portrait, caption below
   Matches O. FILES reference exactly
   ============================== */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding: 60px 40px 80px;
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

/* Small portrait frame — centered */
.hero__image-frame {
  position: relative;
  width: 280px;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.hero__slide.is-active {
  opacity: 1;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Caption below the image */
.hero__caption {
  margin-top: 24px;
  text-align: center;
}
.hero__caption-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  font-weight: 400;
  transition: text-decoration 0.2s ease;
}
.hero__container { cursor: pointer; }

/* ==============================
   PRODUCT GRID
   ============================== */
.collection-page { padding: 48px 40px; }
.collection-page__title {
  text-align: center; font-family: var(--font-display);
  font-size: 32px; font-weight: 300; letter-spacing: 0.06em; margin-bottom: 48px;
}
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 20px;
  justify-items: center;
}

/* Center product when only 1 in grid */
.product-grid:has(.product-card:only-child) {
  grid-template-columns: 1fr;
  max-width: 320px;
  margin: 0 auto;
}

/* Push Shopify privacy/cookie badge into footer bottom-right */
.shopify-pc__banner,
#shopify-pc__banner,
[id*="shopify-pc"],
[id*="shopify-privacy"],
.shopify-privacy,
#cmp-container,
.cmp-container,
#PrivacyPolicyBanner,
[class*="privacy-banner"],
[id*="privacy-banner"],
iframe[src*="privacy"],
div[data-shopify-cmp] {
  position: static !important;
  opacity: 0.5 !important;
  transform: scale(0.8) !important;
  transform-origin: right center !important;
  float: right !important;
  margin: 0 !important;
  padding: 0 !important;
}
.shopify-pc__banner:hover,
#shopify-pc__banner:hover,
[id*="shopify-pc"]:hover,
div[data-shopify-cmp]:hover {
  opacity: 1 !important;
  transform: scale(1) !important;
}
.product-card { position: relative; }
.product-card__image-wrapper {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  margin-bottom: 14px; background: #e8e5e0;
}
.product-card__image { width: 100%; height: 100%; object-fit: cover; }
.product-card:hover .product-card__image:first-child { opacity: 0; }
.product-card__image--hover { position: absolute; inset: 0; opacity: 1; z-index: 0; }
.product-card__image:first-child { position: relative; z-index: 1; }
.product-card__badge {
  position: absolute; top: 12px; left: 12px; font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--color-black); color: var(--color-white); padding: 5px 10px;
}
.product-card__badge--sale { background: var(--color-sale); }
.product-card__title {
  font-family: var(--font-logo); font-size: 12px; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px;
}
.product-card__title a { color: inherit; text-decoration: none; }
.product-card__title a:hover { text-decoration: underline; text-underline-offset: 3px; opacity: 1; }
.product-card__price { font-size: 12px; font-weight: 300; letter-spacing: 0.04em; color: var(--color-text-muted); }
.product-card__price--compare { text-decoration: line-through; margin-right: 8px; opacity: 0.5; }
.product-card__price--sale { color: var(--color-sale); }

/* ==============================
   PRODUCT PAGE
   ============================== */
.product-page {
  padding: 48px 40px; display: grid; grid-template-columns: 1fr 420px;
  gap: 48px; max-width: 1400px; margin: 0 auto;
}
.product-page__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.product-page__gallery-image { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.product-page__gallery-image--hero { grid-column: 1 / -1; }
.product-page__gallery-image--thumb { cursor: pointer; }
.product-page__info { position: sticky; top: calc(var(--header-height) + 48px); align-self: start; padding: 0 20px; }
.product-page__vendor { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 8px; }
.product-page__title { font-family: var(--font-logo); font-size: 28px; font-weight: 300; letter-spacing: 0.04em; margin-bottom: 12px; cursor: default; transition: text-decoration 0.2s ease; }
.product-page__price { font-size: 14px; font-weight: 300; letter-spacing: 0.04em; margin-bottom: 28px; color: var(--color-text-muted); }
.product-page__description { font-family: var(--font-logo); font-size: 13px; line-height: 1.8; color: var(--color-text-muted); margin-bottom: 28px; font-weight: 300; }
.product-page__options { margin-bottom: 24px; }
.product-page__option-group { margin-bottom: 16px; }
.product-page__add-btn {
  width: 100%; padding: 16px; background: var(--color-button-bg); color: var(--color-button-text);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400;
  border: 1px solid var(--color-button-bg); cursor: pointer; transition: all var(--transition);
}
.product-page__add-btn:hover { background: transparent; color: var(--color-button-bg); }
.product-page__add-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ==============================
   CART PAGE
   ============================== */
.cart-page { padding: 48px 40px; max-width: 900px; margin: 0 auto; }
.cart-page__title { text-align: center; font-family: var(--font-display); font-size: 28px; font-weight: 300; letter-spacing: 0.06em; margin-bottom: 48px; }
.cart-page__empty { text-align: center; padding: 48px 0; font-size: 13px; color: var(--color-text-muted); }
.cart-item {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--color-border); align-items: center;
}
.cart-item__image { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.cart-item__title { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; margin-bottom: 4px; }
.cart-item__variant { font-size: 11px; color: var(--color-text-muted); margin-bottom: 12px; }
.cart-item__quantity { display: flex; align-items: center; gap: 12px; border: 1px solid var(--color-border); padding: 4px 0; width: fit-content; }
.cart-item__quantity button { padding: 4px 12px; font-size: 14px; }
.cart-item__price { font-size: 13px; letter-spacing: 0.04em; text-align: right; }
.cart-item__remove {
  display: block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-muted); margin-top: 8px; text-align: right; cursor: pointer;
  background: none; border: none; text-decoration: underline; text-underline-offset: 3px;
}
.cart-footer { padding: 24px 0; text-align: right; }
.cart-footer__subtotal { font-size: 14px; letter-spacing: 0.08em; margin-bottom: 8px; }
.cart-footer__subtotal-amount { font-weight: 400; }
.cart-footer__note { font-size: 11px; color: var(--color-text-muted); margin-bottom: 20px; }

/* ==============================
   GENERIC PAGE
   ============================== */
.page-content { padding: 60px 40px; max-width: 720px; margin: 0 auto; }
.page-content__title { text-align: center; font-family: var(--font-display); font-size: 32px; font-weight: 300; letter-spacing: 0.06em; margin-bottom: 36px; }
.page-content__body { font-size: 14px; line-height: 1.9; color: var(--color-text-muted); }
.page-content__body h2, .page-content__body h3 { color: var(--color-text); margin: 24px 0 12px; }
.page-content__body a { text-decoration: underline; text-underline-offset: 3px; }

/* ==============================
   FOOTER
   ============================== */
.footer { border-top: 1px solid var(--color-border); padding: 48px 40px 32px; margin-top: 80px; }

/* Extra breathing room on product pages */
.template-product .footer { margin-top: 160px; }

.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; max-width: 1400px; margin: 0 auto; flex-wrap: wrap; gap: 40px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 28px; }
.footer__link { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 400; transition: opacity var(--transition); }
.footer__link:hover { text-decoration: underline; text-underline-offset: 3px; opacity: 1; }
.footer__payment { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__payment-icon {
  width: 38px; height: 24px; background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: 3px; display: flex; align-items: center; justify-content: center;
  font-size: 7px; font-weight: 500; color: var(--color-text-muted); text-transform: uppercase;
}
.footer__bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--color-border);
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1400px; margin-left: auto; margin-right: auto;
}
.footer__copyright { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); }
.footer__copyright a { color: var(--color-text); }

/* Privacy widget container — right-aligned in footer bottom */
.footer__privacy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.4;
  transform: scale(0.8);
  transform-origin: right center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer__privacy:hover {
  opacity: 1;
  transform: scale(1);
}

/* ==============================
   LOOKBOOK — AMPEUR style
   2-column edge-to-edge, tall portraits, small gap
   ============================== */
.lookbook {
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.lookbook__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.lookbook__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .lookbook { padding: 12px; }
  .lookbook__grid { grid-template-columns: 1fr 1fr; gap: 3px; }
}

/* ==============================
   LIGHTBOX
   ============================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 40px;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox__close:hover { opacity: 1; }

/* ==============================
   404
   ============================== */
.page-404 { text-align: center; padding: 120px 40px; }
.page-404__title { font-family: var(--font-display); font-size: 72px; font-weight: 300; letter-spacing: 0.04em; margin-bottom: 16px; }
.page-404__text { font-size: 13px; color: var(--color-text-muted); margin-bottom: 32px; }

/* ==============================
   ANIMATIONS
   ============================== */
.fade-in { opacity: 0; transform: translateY(12px); animation: fadeIn 0.8s ease forwards; }
.fade-in--d1 { animation-delay: 0.15s; }
.fade-in--d2 { animation-delay: 0.3s; }
.fade-in--d3 { animation-delay: 0.45s; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

/* Subtle grain */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}

/* ==============================
   HIDE SHOPIFY DEFAULT SEARCH
   ============================== */
.shopify-section-header-search,
predictive-search,
.search-modal,
[data-shopify="search"],
.shopify-search,
details-modal[id*="search"],
.header__search,
a[href="/search"],
button[aria-label="Search"],
.search,
#search,
[class*="search-modal"],
[id*="SearchModal"] {
  display: none !important;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-page { grid-template-columns: 1fr 360px; gap: 32px; }
}
@media (max-width: 768px) {
  /* Header mobile: show all nav items inline, smaller */
  .header__inner {
    padding: 0 16px;
    grid-template-columns: 1fr auto 1fr;
  }
  .header__nav { display: flex; gap: 20px; }
  .header__nav-link { font-size: 10px; letter-spacing: 0.12em; }
  .header__mobile-toggle { display: none; }
  .header__logo-text { font-size: 12px; letter-spacing: 0.3em; }
  .header__action-link { font-size: 10px; letter-spacing: 0.12em; }
  .header__cart-count { font-size: 9px; }

  /* Hero */
  .hero { padding: 40px 20px 60px; min-height: calc(100vh - var(--header-height)); }
  .hero__image-frame { width: 200px; }
  .hero__caption { margin-top: 20px; }
  .hero__caption-label { font-size: 10px; letter-spacing: 0.18em; }

  /* Collection */
  .collection-page { padding: 36px 16px; }
  .collection-page__title { font-size: 24px; margin-bottom: 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }

  /* Product page */
  .product-page { grid-template-columns: 1fr; padding: 24px 20px; gap: 24px; }
  .product-page__info { position: static; padding: 0; }
  .product-page__gallery { grid-template-columns: 1fr; gap: 4px; }
  .product-page__gallery-image--hero { width: 100%; aspect-ratio: 3/4; }
  .product-page__gallery-image--thumb {
    aspect-ratio: 1/1;
    width: calc(33.333% - 3px);
    display: inline-block;
    margin: 2px 1px;
    cursor: pointer;
  }
  .product-page__gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
  .product-page__gallery-image--hero {
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 4px;
  }
  .product-page__title { font-size: 22px; }

  /* Lookbook */
  .lookbook { padding: 16px; }
  .lookbook__grid { grid-template-columns: 1fr; gap: 4px; }

  /* Footer */
  .footer { padding: 36px 20px 24px; }
  .footer__inner { flex-direction: column; gap: 24px; }
  .footer__links { flex-direction: column; gap: 14px; }
  .footer__bottom { flex-direction: column; gap: 10px; align-items: flex-start; }

  /* Other pages */
  .page-content { padding: 40px 20px; }
  .cart-page { padding: 36px 16px; }
  .cart-page__title { font-size: 22px; margin-bottom: 32px; }
  .cart-item { grid-template-columns: 80px 1fr auto; gap: 12px; }
  .cart-item__title { font-size: 11px; }
}
@media (max-width: 480px) {
  .header__inner { padding: 0 12px; }
  .header__logo-text { font-size: 10px; letter-spacing: 0.25em; }
  .header__nav-link { font-size: 9px; letter-spacing: 0.1em; }
  .header__nav { gap: 14px; }
  .header__action-link { font-size: 9px; letter-spacing: 0.1em; }
  .hero__image-frame { width: 170px; }
  .product-grid { gap: 12px 8px; }
  .product-card__title { font-size: 10px; }
  .product-card__price { font-size: 10.5px; }
  .product-page__title { font-size: 20px; }
  .collection-page__title { font-size: 20px; }
}
