/** Shopify CDN: Minification failed

Line 17:12 Expected identifier but found whitespace
Line 17:14 Unexpected "{"
Line 17:24 Expected ":"
Line 18:11 Expected identifier but found whitespace
Line 18:13 Unexpected "{"
Line 18:23 Expected ":"
Line 19:16 Expected identifier but found whitespace
Line 19:18 Unexpected "{"
Line 19:28 Expected ":"
Line 20:16 Expected identifier but found whitespace
... and 31 more hidden warnings

**/
:root {
  --ap-bone: {{ settings.color_bone }};
  --ap-ink: {{ settings.color_ink }};
  --ap-sage-300: {{ settings.color_sage_300 }};
  --ap-sage-500: {{ settings.color_sage_500 }};
  --ap-sage-700: {{ settings.color_sage_700 }};
  --ap-ash-300: {{ settings.color_ash_300 }};
  --ap-ash-500: {{ settings.color_ash_500 }};
  --ap-ash-700: {{ settings.color_ash_700 }};
  --ap-gold: {{ settings.color_gold_accent }};
  --ap-font-heading: {{ settings.font_heading.family }}, sans-serif;
  --ap-font-body: {{ settings.font_body.family }}, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ap-bone);
  color: var(--ap-ink);
  font-family: var(--ap-font-body);
  font-weight: {{ settings.font_body.weight }};
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--ap-font-heading);
  font-weight: {{ settings.font_heading.weight }};
  letter-spacing: -0.01em;
  margin: 0;
}

.skip-to-content {
  position: absolute;
  left: -9999px;
}

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

.ap-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--ap-ink);
}
.ap-btn--primary {
  background: var(--ap-ink);
  color: var(--ap-bone);
}
.ap-btn--primary:hover { background: var(--ap-sage-700); border-color: var(--ap-sage-700); }

/* ---------- Header ---------- */
.ap-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--ap-ash-300);
}
.ap-header__logo img { display: block; }
.ap-header__logo-text {
  font-family: var(--ap-font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.ap-header__nav { display: flex; gap: 32px; }
.ap-header__nav-link {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.ap-header__actions { display: flex; align-items: center; gap: 20px; }
.ap-header__cart { position: relative; }
.ap-header__cart-count {
  position: absolute;
  top: -6px; right: -10px;
  background: var(--ap-sage-700);
  color: var(--ap-bone);
  font-size: 10px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Hero ---------- */
.ap-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 64px 48px;
}
.ap-hero__media { position: absolute; inset: 0; overflow: hidden; }
.ap-hero__img { width: 100%; height: 100%; object-fit: cover; }
.ap-hero__content { position: relative; z-index: 1; max-width: 640px; }
.ap-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ap-sage-700);
  font-weight: 700;
  margin-bottom: 12px;
}
.ap-hero__title {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  margin-bottom: 20px;
}
.ap-hero__subtitle {
  font-size: 16px;
  color: var(--ap-ash-700);
  margin-bottom: 28px;
  max-width: 420px;
}

/* ---------- Brand values ---------- */
.ap-values { padding: 96px 48px; }
.ap-values__heading {
  font-size: 28px;
  text-align: center;
  margin-bottom: 56px;
}
.ap-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
}
.ap-values__item { border-top: 2px solid var(--ap-ink); padding-top: 20px; }
.ap-values__number {
  display: block;
  font-size: 12px;
  color: var(--ap-sage-500);
  font-weight: 700;
  margin-bottom: 12px;
}
.ap-values__title { font-size: 20px; margin-bottom: 10px; }
.ap-values__text { font-size: 14px; color: var(--ap-ash-700); line-height: 1.5; margin: 0; }

/* ---------- Collection / product grid ---------- */
.ap-collection, .ap-collection-page { padding: 80px 48px; }
.ap-collection__heading, .ap-collection-page__title { font-size: 28px; margin-bottom: 40px; }
.ap-collection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}
.ap-product-card__media { background: var(--ap-ash-300); aspect-ratio: 3/4; overflow: hidden; margin-bottom: 12px; }
.ap-product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ap-product-card__title { font-size: 14px; font-weight: 600; margin: 0 0 4px; }
.ap-product-card__price { font-size: 13px; color: var(--ap-ash-700); margin: 0; }

/* ---------- Product page ---------- */
.ap-product { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 64px 48px; }
.ap-product__media img { width: 100%; }
.ap-product__title { font-size: 32px; margin-bottom: 12px; }
.ap-product__price { font-size: 18px; color: var(--ap-sage-700); margin-bottom: 24px; }
.ap-product__variants { display: block; margin-bottom: 16px; padding: 10px; border: 1px solid var(--ap-ash-500); }

/* ---------- Cart / page / 404 ---------- */
.ap-cart, .ap-page, .ap-404 { padding: 64px 48px; max-width: 720px; margin: 0 auto; }
.ap-cart__line { display: flex; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--ap-ash-300); }
.ap-cart__total { margin: 24px 0; font-weight: 700; }
.ap-404 { text-align: center; }
.ap-404__title { font-size: 64px; }

/* ---------- Footer ---------- */
.ap-footer__inner {
  display: flex;
  justify-content: space-between;
  padding: 64px 48px;
  gap: 48px;
  flex-wrap: wrap;
}
.ap-footer__name { font-family: var(--ap-font-heading); font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.ap-footer__tagline { font-size: 13px; opacity: 0.7; margin: 0; }
.ap-footer__cols { display: flex; gap: 64px; }
.ap-footer__col-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; opacity: 0.7; }
.ap-footer__bottom {
  text-align: center;
  font-size: 12px;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.6;
}

/* ---------- Catalog grid (Apple-style category tiles) ---------- */
.ap-catalog { padding: 96px 48px; }
.ap-catalog__header { max-width: 640px; margin-bottom: 48px; }
.ap-catalog__eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ap-sage-700);
  font-weight: 700;
  margin-bottom: 10px;
}
.ap-catalog__heading { font-size: 32px; }
.ap-catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.ap-catalog__tile {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ap-ash-300);
}
.ap-catalog__tile-media { position: absolute; inset: 0; }
.ap-catalog__tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ap-catalog__tile:hover .ap-catalog__tile-media img { transform: scale(1.04); }
.ap-catalog__tile-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: linear-gradient(0deg, rgba(19,20,15,0.75), rgba(19,20,15,0));
  color: var(--ap-bone);
}
.ap-catalog__tile-title { font-size: 18px; font-weight: 700; }
.ap-catalog__tile-cta { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Account pages ---------- */
.ap-account { padding: 64px 48px; max-width: 480px; margin: 0 auto; }
.ap-account__title { font-size: 26px; margin-bottom: 24px; }
.ap-account__subtitle { font-size: 18px; margin: 32px 0 16px; }
.ap-account__input {
  display: block;
  width: 100%;
  padding: 12px;
  margin: 8px 0 20px;
  border: 1px solid var(--ap-ash-500);
  background: var(--ap-bone);
  font-family: var(--ap-font-body);
}
.ap-account__link { display: block; margin-top: 12px; font-size: 13px; text-decoration: underline; color: var(--ap-sage-700); }
.ap-account__order { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--ap-ash-300); }
.ap-account__address { padding: 16px 0; border-bottom: 1px solid var(--ap-ash-300); }

/* ---------- Contact ---------- */
.ap-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 96px 48px; }
.ap-contact__eyebrow {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ap-sage-700); font-weight: 700; margin-bottom: 12px;
}
.ap-contact__heading { font-size: 36px; margin-bottom: 20px; }
.ap-contact__text { color: var(--ap-ash-700); margin-bottom: 20px; max-width: 380px; }
.ap-contact__email { font-weight: 700; text-decoration: underline; }
.ap-contact__success { color: var(--ap-sage-700); font-weight: 700; margin-bottom: 16px; }

@media (max-width: 768px) {
  .ap-header__nav { display: none; }
  .ap-product { grid-template-columns: 1fr; }
  .ap-contact { grid-template-columns: 1fr; }
}
