/** Shopify CDN: Minification failed

Line 27:0 All "@import" rules must come first

**/
/* HAYAA™ Brand System — v1.0 */
:root {
  --hya-black:    #070707;
  --hya-char:     #111111;
  --hya-graph:    #1a1a1a;
  --hya-stone:    #252525;
  --hya-mid:      #3a3a3a;
  --hya-muted:    #666666;
  --hya-subtle:   #999999;
  --hya-bone:     #f0ebe3;
  --hya-bone2:    #e4ddd4;
  --hya-white:    #f8f6f3;
  --hya-gold:     #c9a96e;
  --hya-gold-lo:  rgba(201,169,110,.10);
  --hya-gold-bdr: rgba(201,169,110,.22);
  --hya-font-d:   'Barlow Condensed', 'Arial Narrow', sans-serif;
  --hya-font-b:   'Barlow', Arial, sans-serif;
  --hya-ease:     cubic-bezier(.22,1,.36,1);
}

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Barlow:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ── ANNOUNCE BAR ── */
.hya-announce {
  background: var(--hya-gold);
  color: var(--hya-black);
  text-align: center;
  padding: 10px 16px;
  font-family: var(--hya-font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hya-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--hya-black);
}
.hya-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 40%, rgba(30,25,18,.55) 0%, transparent 70%);
  pointer-events: none;
}
.hya-hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 72px;
  max-width: 900px;
}
.hya-hero__eyebrow {
  font-family: var(--hya-font-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--hya-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hya-hero__eyebrow::before {
  content: '';
  width: 28px;
  height: .5px;
  background: var(--hya-gold);
}
.hya-hero__headline {
  font-family: var(--hya-font-d);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--hya-white);
  margin-bottom: 24px;
}
.hya-hero__headline-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.22);
  display: block;
}
.hya-hero__headline-italic {
  color: var(--hya-gold);
  font-style: italic;
  font-weight: 300;
  font-size: .62em;
  display: block;
  margin-top: 4px;
}
.hya-hero__sub {
  font-family: var(--hya-font-b);
  font-size: 15px;
  color: var(--hya-subtle);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}
.hya-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hya-hero__bottom {
  position: relative;
  z-index: 2;
  border-top: .5px solid var(--hya-stone);
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.hya-hero__stat {
  padding: 20px 28px;
  border-right: .5px solid var(--hya-stone);
}
.hya-hero__stat:last-child { border-right: none; }
.hya-hero__stat-num {
  font-family: var(--hya-font-d);
  font-size: 26px;
  font-weight: 700;
  color: var(--hya-white);
  margin-bottom: 2px;
}
.hya-hero__stat-label {
  font-size: 11px;
  color: var(--hya-muted);
  letter-spacing: .04em;
  line-height: 1.4;
}

/* ── TICKER ── */
.hya-ticker {
  background: var(--hya-char);
  border-top: .5px solid var(--hya-stone);
  border-bottom: .5px solid var(--hya-stone);
  overflow: hidden;
  padding: 13px 0;
}
.hya-ticker__track {
  display: flex;
  animation: hya-ticker 32s linear infinite;
  white-space: nowrap;
}
.hya-ticker__item {
  font-family: var(--hya-font-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hya-muted);
  padding: 0 28px;
  flex-shrink: 0;
}
.hya-ticker__item .sep { color: var(--hya-gold); margin: 0 4px; }
@keyframes hya-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── BUTTONS ── */
.hya-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hya-white);
  color: var(--hya-black);
  font-family: var(--hya-font-d);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .1s;
}
.hya-btn-primary:hover { background: var(--hya-bone); color: var(--hya-black); }
.hya-btn-primary:active { transform: scale(.98); }
.hya-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hya-subtle);
  font-family: var(--hya-font-d);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 0;
  border: none;
  border-bottom: .5px solid var(--hya-mid);
  background: none;
  cursor: pointer;
  text-decoration: none;
  transition: color .2s, border-color .2s;
}
.hya-btn-ghost:hover { color: var(--hya-white); border-color: var(--hya-subtle); }
.hya-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hya-gold);
  color: var(--hya-black);
  font-family: var(--hya-font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 12px 26px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}
.hya-btn-gold:hover { opacity: .88; }

/* ── SECTIONS ── */
.hya-section { padding: 100px 40px; }
.hya-section--dark  { background: var(--hya-black); }
.hya-section--char  { background: var(--hya-char); border-top: .5px solid var(--hya-stone); border-bottom: .5px solid var(--hya-stone); }
.hya-section--bone  { background: var(--hya-bone); color: var(--hya-black); }
.hya-container { max-width: 1160px; margin: 0 auto; }

/* ── TYPOGRAPHY ── */
.hya-eyebrow {
  font-family: var(--hya-font-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--hya-gold);
  display: block;
  margin-bottom: 14px;
}
.hya-eyebrow--muted { color: var(--hya-muted); }
.hya-title {
  font-family: var(--hya-font-d);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--hya-white);
  margin-bottom: 16px;
}
.hya-title--bone { color: var(--hya-black); }
.hya-title .accent { color: var(--hya-gold); }
.hya-title .dim    { color: var(--hya-muted); }
.hya-body {
  font-family: var(--hya-font-b);
  font-size: 14px;
  color: var(--hya-subtle);
  line-height: 1.8;
}

/* ── REVEAL ANIMATION ── */
.hya-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--hya-ease), transform .8s var(--hya-ease);
}
.hya-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── GRID UTILITIES ── */
.hya-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.hya-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }

/* ── DIVIDER ── */
.hya-divider { width: 32px; height: 1px; background: var(--hya-mid); margin: 20px 0; }
.hya-divider--bone { background: #ccc; }

/* ── QUOTE ── */
.hya-quote {
  border-left: 2px solid var(--hya-gold);
  padding: 12px 20px;
  background: var(--hya-gold-lo);
  border-radius: 0 3px 3px 0;
  margin: 24px 0;
}
.hya-quote p {
  font-family: var(--hya-font-d);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--hya-bone2);
  line-height: 1.6;
  margin-bottom: 6px;
}
.hya-quote cite {
  font-size: 11px;
  color: var(--hya-gold);
  font-style: normal;
  letter-spacing: .06em;
}

/* ── STORY BLOCK ── */
.hya-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: .5px solid var(--hya-stone);
}
.hya-story-left {
  padding: 64px 60px;
  border-right: .5px solid var(--hya-stone);
}
.hya-story-right { display: grid; grid-template-rows: 1fr 1fr; }
.hya-manifesto-block {
  padding: 40px 48px;
  border-bottom: .5px solid var(--hya-stone);
  background: var(--hya-char);
}
.hya-manifesto-line {
  font-family: var(--hya-font-d);
  font-size: 19px;
  font-weight: 300;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--hya-muted);
  line-height: 1.5;
}
.hya-manifesto-line--strong { font-weight: 700; color: var(--hya-white); }
.hya-manifesto-line--gold   { color: var(--hya-gold); font-weight: 500; }
.hya-values-block {
  padding: 32px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: center;
}
.hya-value-ar {
  font-family: var(--hya-font-d);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--hya-gold);
  margin-bottom: 3px;
}
.hya-value-es { font-size: 13px; font-weight: 500; color: var(--hya-white); margin-bottom: 2px; }
.hya-value-desc { font-size: 11px; color: var(--hya-muted); line-height: 1.5; }

/* ── BENEFIT GRID ── */
.hya-benefit-cell {
  padding: 32px 28px;
  border-right: .5px solid var(--hya-stone);
  border-bottom: .5px solid var(--hya-stone);
  background: var(--hya-black);
  transition: background .2s;
}
.hya-benefit-cell:hover { background: var(--hya-graph); }
.hya-benefit-cell:nth-child(3n) { border-right: none; }
.hya-benefit-cell:nth-last-child(-n+3) { border-bottom: none; }
.hya-benefit-glyph {
  width: 36px; height: 36px;
  border: .5px solid var(--hya-stone);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--hya-gold);
  margin-bottom: 18px;
  transition: border-color .2s, background .2s;
}
.hya-benefit-cell:hover .hya-benefit-glyph {
  border-color: var(--hya-gold);
  background: var(--hya-gold-lo);
}
.hya-benefit-title {
  font-family: var(--hya-font-d);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--hya-white);
  margin-bottom: 8px;
}
.hya-benefit-desc { font-size: 13px; color: var(--hya-muted); line-height: 1.65; }

/* ── REVIEWS ── */
.hya-review-card {
  background: var(--hya-char);
  border: .5px solid var(--hya-stone);
  padding: 24px 20px;
  transition: background .2s;
}
.hya-review-card:hover { background: var(--hya-graph); }
.hya-review-stars { font-size: 12px; color: var(--hya-gold); letter-spacing: 2px; margin-bottom: 8px; }
.hya-review-tag {
  display: inline-block;
  font-family: var(--hya-font-d);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hya-muted);
  background: var(--hya-stone);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.hya-review-text {
  font-size: 13px;
  color: #c0b8ae;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 14px;
}
.hya-review-author { font-size: 11px; color: var(--hya-muted); }
.hya-review-author span { color: var(--hya-gold); }

/* ── FAQ ── */
.hya-faq-item { border-bottom: .5px solid var(--hya-stone); }
.hya-faq-btn {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 20px 0;
  background: none; border: none; cursor: pointer;
}
.hya-faq-q { font-size: 15px; font-weight: 500; color: var(--hya-white); line-height: 1.4; flex: 1; }
.hya-faq-arrow { font-size: 18px; color: var(--hya-gold); transition: transform .25s; }
.hya-faq-item.is-open .hya-faq-arrow { transform: rotate(45deg); }
.hya-faq-ans {
  font-size: 13px; color: var(--hya-muted); line-height: 1.8;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s;
}
.hya-faq-item.is-open .hya-faq-ans { max-height: 240px; padding-bottom: 18px; }

/* ── EMAIL FORM ── */
.hya-email-inner {
  border: .5px solid var(--hya-stone);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hya-email-left { padding: 64px 60px; border-right: .5px solid var(--hya-stone); }
.hya-email-right { padding: 64px 60px; }
.hya-email-input {
  width: 100%; padding: 14px 18px;
  background: var(--hya-char);
  color: var(--hya-white);
  border: .5px solid var(--hya-stone);
  font-family: var(--hya-font-b);
  font-size: 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color .2s;
  margin-bottom: 8px;
}
.hya-email-input::placeholder { color: var(--hya-muted); }
.hya-email-input:focus { border-color: var(--hya-mid); }
.hya-email-submit {
  width: 100%; padding: 14px;
  background: var(--hya-gold);
  color: var(--hya-black);
  font-family: var(--hya-font-d);
  font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  transition: opacity .2s;
}
.hya-email-submit:hover { opacity: .88; }

/* ── FOOTER ── */
.hya-footer { background: var(--hya-char); border-top: .5px solid var(--hya-stone); }
.hya-footer__top {
  padding: 72px 40px 56px;
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
}
.hya-footer__logo {
  font-family: var(--hya-font-d);
  font-size: 28px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--hya-white);
  margin-bottom: 14px;
  display: block;
  text-decoration: none;
}
.hya-footer__quote { font-size: 13px; color: var(--hya-muted); line-height: 1.8; font-style: italic; margin-bottom: 18px; max-width: 260px; }
.hya-footer__quote cite { font-style: normal; color: #444; font-size: 11px; display: block; margin-top: 4px; }
.hya-footer__col-title {
  font-family: var(--hya-font-d); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--hya-muted);
  margin-bottom: 16px;
}
.hya-footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hya-footer__links a { font-size: 13px; color: #444; text-decoration: none; transition: color .2s; }
.hya-footer__links a:hover { color: var(--hya-white); }
.hya-footer__social { display: flex; gap: 14px; }
.hya-footer__social a {
  font-family: var(--hya-font-d); font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: #444; text-decoration: none; transition: color .2s;
}
.hya-footer__social a:hover { color: var(--hya-white); }
.hya-footer__bottom {
  padding: 20px 40px;
  max-width: 1160px; margin: 0 auto;
  border-top: .5px solid var(--hya-stone);
  display: flex; justify-content: space-between; align-items: center;
}
.hya-footer__legal { font-size: 11px; color: #333; }
.hya-footer__legal a { color: #3a3a3a; text-decoration: none; margin-left: 14px; }

/* ── PRODUCT PAGE ── */
.hya-pdp-hero {
  background: var(--hya-black);
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: calc(100vh - 64px);
}
.hya-pdp-gallery {
  background: var(--hya-char);
  border-right: .5px solid var(--hya-stone);
  display: flex; flex-direction: column;
}
.hya-pdp-copy {
  padding: 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.hya-pdp-name {
  font-family: var(--hya-font-d);
  font-size: 46px; font-weight: 700;
  line-height: .95; letter-spacing: -.01em; text-transform: uppercase;
  color: var(--hya-white); margin-bottom: 10px;
}
.hya-pdp-price {
  font-family: var(--hya-font-d);
  font-size: 32px; font-weight: 700;
  color: var(--hya-white); margin-bottom: 20px;
}
.hya-size-btn {
  width: 44px; height: 44px;
  border: .5px solid var(--hya-stone); background: none;
  font-family: var(--hya-font-d); font-size: 13px; font-weight: 600;
  color: var(--hya-muted); cursor: pointer;
  transition: all .15s; border-radius: 2px;
}
.hya-size-btn:hover { border-color: var(--hya-mid); color: var(--hya-white); }
.hya-size-btn.is-active { border-color: var(--hya-white); color: var(--hya-white); background: rgba(255,255,255,.04); }
.hya-size-btn.is-out { opacity: .25; cursor: default; text-decoration: line-through; }
.hya-atc-btn {
  width: 100%; padding: 16px;
  background: var(--hya-white); color: var(--hya-black);
  font-family: var(--hya-font-d); font-size: 14px; font-weight: 700;
  letter-spacing: .10em; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer; transition: background .2s;
  margin-bottom: 8px;
}
.hya-atc-btn:hover { background: var(--hya-bone); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hya-section { padding: 64px 20px; }
  .hya-hero__content { padding: 0 20px 56px; }
  .hya-hero__bottom { grid-template-columns: 1fr 1fr; }
  .hya-story-inner { grid-template-columns: 1fr; }
  .hya-story-left { border-right: none; border-bottom: .5px solid var(--hya-stone); padding: 40px 24px; }
  .hya-story-right { display: flex; flex-direction: column; }
  .hya-manifesto-block { padding: 32px 24px; }
  .hya-values-block { padding: 28px 24px; }
  .hya-grid-3 { grid-template-columns: 1fr 1fr; }
  .hya-email-inner { grid-template-columns: 1fr; }
  .hya-email-left { border-right: none; border-bottom: .5px solid var(--hya-stone); padding: 40px 24px; }
  .hya-email-right { padding: 40px 24px; }
  .hya-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 20px 40px; }
  .hya-footer__bottom { padding: 16px 20px; flex-direction: column; gap: 8px; text-align: center; }
  .hya-pdp-hero { grid-template-columns: 1fr; }
  .hya-pdp-gallery { border-right: none; border-bottom: .5px solid var(--hya-stone); }
  .hya-pdp-copy { padding: 32px 20px; }
}