/** Shopify CDN: Minification failed

Line 720:1 Expected identifier but found "."
Line 727:0 Unexpected "}"

**/
/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 10px; }
body {
  background: #fff;
  color: #000;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select {
  font-family: inherit; font-size: inherit;
  letter-spacing: inherit; border: none;
  background: none; outline: none; cursor: pointer; appearance: none;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  text-align: center;
  padding: 9px 20px;
  font-size: 1rem;
  letter-spacing: 0.12em;
  font-weight: 400;
  text-transform: uppercase;
}

/* ─── HEADER ─── */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 28px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-nav a {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.15s;
}
.header-nav a:hover { opacity: 0.45; }

.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Spinning logo */
.logo-spin {
  width: 42px;
  height: 42px;
  animation: none;
  display: block;
}
.logo-spin img { width: 42px; height: 42px; object-fit: contain; }
.logo-spin--placeholder svg { width: 42px; height: 42px; }

@keyframes logo-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
}
.header-actions a {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.15s;
}
.header-actions a:hover { opacity: 0.45; }

/* ─── COLLECTION / HOME GRID ─── */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 40px 0 80px;
}

.product-tile {
  display: block;
  padding: 20px 40px 36px;
  text-align: center;
}

.product-tile__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.product-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.product-tile__img--front { opacity: 1; z-index: 2; }
.product-tile__img--back { opacity: 0; z-index: 1; }

.product-tile:hover .product-tile__img--front { opacity: 0; }
.product-tile:hover .product-tile__img--back { opacity: 1; }

.product-tile__img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f4f4f4;
}

.product-tile__info { margin-top: 18px; }

.product-tile__name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-tile__price {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.product-tile__price--sold-out { color: #999; }

.collection-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}

/* ─── PRODUCT PAGE ─── */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 120px);
}

.product-gallery {
  padding: 40px 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-gallery__main {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
}
.product-gallery__main-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #f4f4f4;
}

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
}
.product-gallery__thumb {
  width: 70px;
  height: 70px;
  object-fit: contain;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.15s;
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover { border-color: #000; }

.product-details {
  padding: 80px 60px 60px 20px;
  display: flex;
  flex-direction: column;
}

.product-details__name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-details__price {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.product-details__label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.size-btn {
  width: 46px;
  height: 46px;
  border: 1px solid #000;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  background: #fff;
}
.size-btn:hover, .size-btn.selected { background: #000; color: #fff; }
.size-btn.unavailable {
  border-color: #ccc; color: #ccc; cursor: not-allowed;
  position: relative;
}
.size-btn.unavailable::after {
  content: '';
  position: absolute;
  top: 50%; left: 4px; right: 4px;
  height: 1px; background: #ccc;
  transform: rotate(-45deg);
}

.btn-atc {
  width: 100%;
  padding: 16px 24px;
  background: #000; color: #fff;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
  margin-bottom: 12px;
  border: 1px solid #000;
}
.btn-atc:hover { opacity: 0.7; }
.btn-atc--sold-out,
.btn-atc:disabled {
  background: #fff; color: #000;
  cursor: not-allowed; opacity: 1;
}

/* Accordion */
.product-accordion { margin-top: 32px; border-top: 1px solid #e0e0e0; }
.accordion-item { border-bottom: 1px solid #e0e0e0; }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; background: none; border: none;
}
.accordion-trigger::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  line-height: 1; transition: transform 0.2s;
}
.accordion-trigger.open::after { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding-bottom: 16px;
  font-size: 1rem; letter-spacing: 0.04em;
  line-height: 1.7; color: #444;
}
.accordion-body.open { display: block; }
.accordion-body p { margin-bottom: 8px; }

/* ─── CART ─── */
.cart-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 28px 100px;
}
.cart-page h1 {
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 40px;
}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px; align-items: start;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}
.cart-item:last-of-type { border-bottom: 1px solid #e0e0e0; }
.cart-item__img {
  width: 100px; height: 120px; object-fit: contain; background: #f4f4f4;
}
.cart-item__img-placeholder { width: 100px; height: 120px; background: #f4f4f4; }
.cart-item__name {
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px;
}
.cart-item__variant { font-size: 1rem; letter-spacing: 0.08em; color: #666; margin-bottom: 12px; }
.cart-item__qty { display: flex; align-items: center; gap: 12px; }
.qty-btn {
  width: 28px; height: 28px; border: 1px solid #000;
  font-size: 1.4rem; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s;
}
.qty-btn:hover { background: #f0f0f0; }
.qty-num { font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; min-width: 20px; text-align: center; }
.cart-item__remove {
  font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: #999; text-decoration: underline; cursor: pointer;
  margin-top: 8px; display: inline-block;
}
.cart-item__price { font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; white-space: nowrap; }
.cart-totals { margin-top: 32px; padding-top: 20px; }
.cart-totals__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.cart-note { font-size: 1rem; letter-spacing: 0.06em; color: #666; margin: 4px 0 24px; }
.btn-checkout {
  width: 100%; padding: 18px 24px;
  background: #000; color: #fff;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; margin-top: 20px;
  border: 1px solid #000; transition: opacity 0.15s;
}
.btn-checkout:hover { opacity: 0.7; }
.cart-empty { text-align: center; padding: 80px 0; }
.cart-empty p { font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: #666; margin-bottom: 24px; }
.btn-continue {
  display: inline-block; padding: 14px 28px;
  border: 1px solid #000; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; transition: background 0.15s, color 0.15s;
}
.btn-continue:hover { background: #000; color: #fff; }

/* ─── CONTACT ─── */
.contact-page { max-width: 560px; margin: 0 auto; padding: 60px 28px 100px; }
.contact-page h1 {
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px;
}
.contact-page p { font-size: 1rem; letter-spacing: 0.06em; color: #555; margin-bottom: 36px; line-height: 1.7; }
.contact-page__content { margin-bottom: 28px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px;
}
.form-field input, .form-field textarea {
  width: 100%; border: 1px solid #000;
  padding: 12px 14px; font-size: 1rem; letter-spacing: 0.06em;
  font-family: inherit; background: #fff; resize: vertical;
}
.form-field textarea { min-height: 130px; }
.btn-submit {
  padding: 15px 32px; background: #000; color: #fff;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; border: 1px solid #000; transition: opacity 0.15s;
}
.btn-submit:hover { opacity: 0.7; }
.form-success {
  font-size: 1rem; letter-spacing: 0.08em; color: #000;
  padding: 12px 0; margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

/* ─── POLICY / PAGE ─── */
.policy-page { max-width: 700px; margin: 0 auto; padding: 60px 28px 100px; }
.policy-page h1 {
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 36px;
}
.policy-page h2 {
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin: 28px 0 10px;
}
.policy-page p, .policy-page li {
  font-size: 1rem; letter-spacing: 0.04em; color: #444; line-height: 1.8; margin-bottom: 10px;
}
.policy-page ul { padding-left: 20px; margin-bottom: 16px; }

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid #e8e8e8;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 1rem; letter-spacing: 0.1em;
  text-transform: uppercase; transition: opacity 0.15s;
}
.footer-links a:hover { opacity: 0.45; }
.footer-copy { font-size: 1rem; letter-spacing: 0.06em; color: #999; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .product-page { grid-template-columns: 1fr; }
  .product-gallery { padding: 30px 20px; }
  .product-details { padding: 0 20px 60px; }
}
@media (max-width: 600px) {
  .site-header { padding: 14px 16px; }
  .header-nav { gap: 14px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); padding: 20px 0 60px; }
  .product-tile { padding: 12px 16px 28px; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item__price { grid-column: 2; }
  .footer-links { gap: 14px; }
}

/* ─── MOBILE FIXES ─── */
@media (max-width: 768px) {
  /* Header: shrink padding, keep 3-col layout */
.site-header {
  padding: 12px 14px;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
}

.header-nav {
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.header-nav::-webkit-scrollbar { display: none; }

.header-nav a,
.header-actions a {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.header-actions {
  gap: 8px;
  justify-content: flex-end;
}

.header-logo img,
.logo-spin {
  width: 36px !important;
  height: 36px !important;
}

  /* 2-column product grid on mobile */
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 0 60px;
  }

  .product-tile {
    padding: 8px 8px 20px;
  }

  .product-tile__name {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }

  .product-tile__price {
    font-size: 0.9rem;
  }

  /* Product page: stack vertically */
  .product-page {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    padding: 20px 16px 16px;
  }

  .product-details {
    padding: 0 16px 60px;
  }

  /* Cart */
  .cart-page {
    padding: 40px 16px 80px;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }

  .cart-item__price {
    grid-column: 2;
  }

  /* Contact / Policy */
  .contact-page,
  .policy-page {
    padding: 40px 16px 80px;
  }

  /* Footer */
  .site-footer {
    padding: 20px 16px;
  }

  .footer-links {
    gap: 12px;
  }
}

@media (max-width: 400px) {
  /* Very small screens — hide some nav items to prevent overflow */
  .header-nav a:nth-child(n+3) {
    display: none;
  }

  .logo-spin {
    width: 34px;
    height: 34px;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 0 40px;
  }

  .product-tile {
    padding: 8px 8px 20px;
  }
}
/* ─── COMING SOON BACKGROUND ─── */
.coming-soon-bg {
  position: relative;
  width: 100%;
  height: calc(100vh - 64px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-bg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.coming-soon-bg__placeholder {
  position: absolute;
  inset: 0;
  background: #111;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.coming-soon-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.coming-soon-label {
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.coming-soon-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.coming-soon-sub {
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
/* ─── FAQ PAGE ─── */
.faq-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}
.faq-page__header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-page__title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid #000;
}
.faq-item:last-child {
  border-bottom: 1px solid #000;
}

.faq-item__question {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  transition: opacity 0.15s;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question:hover { opacity: 0.6; }

.faq-item__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: #000;
  transition: transform 0.2s;
}
.faq-item__icon::before {
  top: 50%; left: 0;
  width: 100%; height: 1px;
  transform: translateY(-50%);
}
.faq-item__icon::after {
  left: 50%; top: 0;
  width: 1px; height: 100%;
  transform: translateX(-50%);
}
.faq-item[open] .faq-item__icon::after {
  transform: translateX(-50%) scaleY(0);
}

..faq-item__answer {
  padding: 0 4px 24px;
  font-size: 4.05rem;
  line-height: 1.8;
  color: #444;
  letter-spacing: 0.04em;
}
}
.faq-item__answer p { margin-bottom: 12px; }
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer strong { color: #000; }
.faq-item__answer a {
  color: #000;
  border-bottom: 1px solid rgba(0,0,0,0.4);
}