/** Shopify CDN: Minification failed

Line 543:0 Unexpected "}"

**/
/* ── Variables ── */
:root {
  --bg:      #070B14;
  --navy:    #0F1728;
  --surface: #171E2F;
  --text:    #ECEFF7;
  --muted:   #A8B0C3;
  --glow:    #9BB8FF;
  --border:  rgba(255,255,255,0.05);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: radial-gradient(circle at 80% 10%, rgba(155,184,255,.07), transparent 30%),
              radial-gradient(circle at 10% 90%, rgba(185,167,255,.05), transparent 35%),
              var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Layout ── */
.wrap { width: min(1160px, 92%); margin: auto; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(7,11,20,.78);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 500;
  letter-spacing: .02em;
}
.site-nav a {
  margin-left: 28px;
  color: var(--muted);
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .25s;
}
.site-nav a:hover { color: var(--text); }
.cart-btn {
  background: transparent;
  border: 1px solid rgba(155,184,255,.35);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: .85rem;
  cursor: pointer;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: .3s;
}
.cart-btn:hover { background: rgba(155,184,255,.08); }

/* ── Hero ── */
.hero {
  min-height: 94vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(155,184,255,.13), transparent 50%);
  animation: pulse 9s ease-in-out infinite;
}
.hero-inner { position: relative; z-index: 2; animation: fadeUp 1.1s ease; }
.hero-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500; line-height: 1.1;
  margin-bottom: 22px;
}
.hero-inner p { color: var(--muted); max-width: 620px; margin: auto; line-height: 1.75; font-size: 1.05rem; }
.hero-inner .btn { margin-top: 36px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 999px;
  border: 1px solid rgba(155,184,255,.4);
  background: rgba(23,30,47,.85);
  color: var(--text); font-size: .9rem;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; transition: .3s;
  box-shadow: 0 0 28px rgba(155,184,255,.06);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(155,184,255,.15); }
.btn-solid {
  background: var(--text); color: var(--bg);
  border-color: var(--text);
}
.btn-solid:hover { background: #d0d8ee; border-color: #d0d8ee; }

/* ── Section base ── */
.section { padding: 100px 0; }
.section-label {
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--glow); margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500; margin-bottom: 50px;
}
.section-title.center { text-align: center; }

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: rgba(23,30,47,.7);
  border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform .35s, box-shadow .35s;
  color: inherit;
  cursor: pointer;
}
.card:hover { transform: translateY(-7px); box-shadow: 0 0 40px rgba(155,184,255,.07); }
.card-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  background: linear-gradient(160deg, #1B2740, #0F1728);
}
.card-body { padding: 22px 24px; }
.card-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; margin-bottom: 6px; }
.card-body .price { color: #F2EDE3; margin-bottom: 16px; font-size: .95rem; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: rgba(23,30,47,.7);
  border: 1px solid var(--border);
  border-radius: 24px; padding: 36px;
  backdrop-filter: blur(12px);
}
.testimonial .stars { color: var(--glow); margin-bottom: 14px; letter-spacing: 3px; }
.testimonial h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: 10px; }
.testimonial p { color: var(--muted); line-height: 1.8; font-size: .95rem; }

/* ── Newsletter ── */
.newsletter-box {
  background: rgba(23,30,47,.7);
  border: 1px solid var(--border);
  border-radius: 28px; padding: 70px;
  text-align: center; backdrop-filter: blur(12px);
}
.newsletter-box p { color: var(--muted); margin: 10px auto 30px; max-width: 480px; }
.newsletter-row { display: flex; gap: 12px; max-width: 440px; margin: auto; }
.newsletter-row input {
  flex: 1; background: rgba(15,23,40,.9);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px; padding: 13px 20px;
  color: var(--text); font-size: .9rem;
}
.newsletter-row input:focus { outline: none; border-color: rgba(155,184,255,.35); }

/* ── Footer ── */
.site-footer {
  padding: 70px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px; align-items: end;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: 10px; }
.footer-tagline { color: var(--muted); font-size: .9rem; }
.footer-copy { color: var(--muted); font-size: .8rem; margin-top: 8px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; transition: color .2s; }
.footer-links a:hover { color: var(--text); }

/* ── Cart Drawer ── */
.overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.55);
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.overlay.active { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed; top: 0; right: -420px; z-index: 201;
  width: 400px; height: 100vh;
  background: #0A1020;
  border-left: 1px solid var(--border);
  padding: 36px 30px;
  transition: right .4s ease;
}
.drawer.open { right: 0; }
.drawer-close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none; color: var(--muted);
  font-size: 1.3rem; cursor: pointer; transition: color .2s;
}
.drawer-close:hover { color: var(--text); }
.drawer h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 10px; }
.drawer p { color: var(--muted); }

/* ── Product page ── */
.product-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.product-layout img {
  width: 100%; border-radius: 20px; object-fit: cover;
  background: linear-gradient(160deg,#1B2740,#0F1728);
  aspect-ratio: 1;
}
.product-info h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; margin-bottom: 14px; }
.product-price { font-size: 1.5rem; color: #F2EDE3; margin-bottom: 20px; }
.product-desc { color: var(--muted); line-height: 1.85; margin-bottom: 28px; }
.variant-select {
  width: 100%; background: rgba(15,23,40,.9);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 13px 16px;
  color: var(--text); font-size: 1rem; margin-bottom: 20px;
}

/* ── Collection ── */
.collection-header { margin-bottom: 50px; }
.collection-header h1 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; }
.collection-header p { color: var(--muted); margin-top: 10px; }

/* ── Cart page ── */
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; }
.cart-table th { text-align: left; color: var(--muted); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.cart-table td { padding: 20px 0; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table img { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; background: var(--surface); }
.cart-qty { width: 70px; background: rgba(15,23,40,.9); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: 8px 12px; color: var(--text); text-align: center; }
.cart-footer { display: flex; align-items: center; justify-content: flex-end; gap: 30px; }
.cart-total { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }

/* ── About ── */
.about-hero { padding: 90px 0 60px; }
.about-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem,5vw,4rem); margin-bottom: 22px; }
.about-hero p { color: var(--muted); max-width: 680px; line-height: 1.85; font-size: 1.05rem; }
.about-values {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px; margin-top: 60px;
}
.about-value {
  background: rgba(23,30,47,.7); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 24px; backdrop-filter: blur(12px);
}
.about-value h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: 8px; }
.about-value p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* ── Contact ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; padding: 90px 0; }
.contact-info h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,4vw,3.2rem); margin-bottom: 18px; }
.contact-info p { color: var(--muted); line-height: 1.8; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.field label { display: block; color: var(--muted); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; background: rgba(15,23,40,.9);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 14px 18px;
  color: var(--text); font-size: .95rem; font-family: Inter, sans-serif;
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: rgba(155,184,255,.35); }
.field textarea { min-height: 150px; resize: vertical; }
.form-success { background: rgba(155,184,255,.07); border: 1px solid rgba(155,184,255,.2); border-radius: 14px; padding: 20px 24px; color: var(--text); }

/* ── Search ── */
.search-form { display: flex; gap: 12px; margin-bottom: 50px; }
.search-form input { flex: 1; background: rgba(15,23,40,.9); border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: 14px 20px; color: var(--text); font-size: 1rem; }
.search-form input:focus { outline: none; border-color: rgba(155,184,255,.35); }

/* ── Generic page ── */
.page-body { padding: 80px 0 120px; }
.page-body h1 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; margin-bottom: 30px; }
.rte { color: var(--muted); line-height: 1.85; max-width: 760px; }
.rte p { margin-bottom: 1.3em; }
.rte h2 { font-family: 'Cormorant Garamond', serif; color: var(--text); font-size: 1.9rem; margin: 2em 0 .5em; }
.rte a { color: var(--glow); text-decoration: underline; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes pulse  { 0%,100% { transform:scale(1); } 50% { transform:scale(1.07); } }
.fade-up { animation: fadeUp .8s ease both; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 768px) {
  .wrap { width: min(1160px, 94%); }
  .section { padding: 60px 0; }
  .site-nav { display: none; }
  .drawer { width: 100%; right: -100%; }
  .drawer.open { right: 0; }
  .newsletter-box { padding: 36px 20px; }
  .newsletter-row { flex-direction: column; gap: 10px; }
  .newsletter-row input { border-radius: 14px; }
  .newsletter-row .btn { width: 100%; justify-content: center; }
  .cart-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cart-table img { width: 52px; height: 52px; }
  .hero { min-height: 88vh; padding: 20px 0; }
  .hero-inner h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-inner p { font-size: .95rem; padding: 0 4px; }
  .hero-inner .btn { margin-top: 24px; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 32px; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card-body { padding: 14px 16px; }
  .card-body h3 { font-size: 1rem; }
  .card-body .price { font-size: .85rem; margin-bottom: 12px; }
  .btn { padding: 12px 22px; font-size: .82rem; }
  .collection-header h1 { font-size: 2rem; }
  .collection-header { margin-bottom: 30px; }
  .about-hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .product-info h1 { font-size: 2rem; }
  .product-price { font-size: 1.2rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial { padding: 24px 20px; }
  .about-values { grid-template-columns: 1fr; gap: 14px; }
  .header-inner { padding: 14px 0; }
  .site-logo { font-size: 1.5rem; }
  .cart-btn { padding: 8px 16px; font-size: .78rem; }
}
@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-img { aspect-ratio: 1; }
  .search-form { flex-direction: column; }
  .search-form input { width: 100%; }
  .search-form .btn { width: 100%; }
  .newsletter-box { padding: 28px 16px; }
}

/* ── Mobile nav ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(7,11,20,.97);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 24px;
  color: var(--muted);
  font-size: .95rem;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--text); background: rgba(155,184,255,.04); }

/* ── Collections list page ── */
.collections-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* ── Skip link (accessibility) ── */
.skip-link {
  position: absolute; top: -9999px; left: 16px; z-index: 9999;
  background: var(--text); color: var(--bg);
  padding: 10px 18px; border-radius: 0 0 8px 8px;
  font-size: .85rem; letter-spacing: .04em;
  transition: top .1s;
}
.skip-link:focus { top: 0; }

/* ── Sale badge ── */
.badge-sale {
  background: rgba(155,184,255,.12); color: var(--glow);
  font-size: .72rem; letter-spacing: .06em;
  padding: 3px 10px; border-radius: 999px;
  vertical-align: middle; margin-left: 8px;
}

/* ── Responsive: show mobile menu button on small screens ── */
@media (max-width: 768px) {
  .mobile-menu-btn { display: flex !important; }
  .site-nav { display: none !important; }
}
@media (min-width: 769px) {
  .mobile-nav { display: none !important; }
  .mobile-menu-btn { display: none !important; }
}

/* ── Sticky Add to Cart ── */
.sticky-atc {
  position: fixed;
  bottom: -90px;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(10, 16, 32, 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: bottom .35s cubic-bezier(.4,0,.2,1);
  padding: 14px 0;
}
.sticky-atc.is-visible {
  bottom: 0;
}
.sticky-atc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sticky-atc-product {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.sticky-atc-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--surface);
  flex-shrink: 0;
}
.sticky-atc-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.sticky-atc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}
.sticky-atc-price {
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.sticky-atc-compare {
  text-decoration: line-through;
  opacity: .6;
}
.sticky-atc-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.sticky-atc-form {
  display: contents;
}
.sticky-atc-select {
  background: rgba(15,23,40,.9);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text);
  font-size: .85rem;
  cursor: pointer;
  max-width: 160px;
}
.sticky-atc-btn {
  white-space: nowrap;
  padding: 12px 28px;
  font-size: .85rem;
}
.sticky-atc-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
}
.sticky-atc-toast {
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(155,184,255,.15);
  border: 1px solid rgba(155,184,255,.3);
  color: var(--text);
  font-size: .82rem;
  padding: 8px 20px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  letter-spacing: .04em;
}
.sticky-atc-toast.show { opacity: 1; }
@media (max-width: 600px) {
  .sticky-atc-product { display: none; }
  .sticky-atc-inner { justify-content: center; }
  .sticky-atc-select { max-width: 130px; }
  .sticky-atc-btn { padding: 12px 22px; }
}

/* Smaller product images on mobile */
@media screen and (max-width: 768px) {
  .card img,
  .card-wrapper img,
  .product img,
  .product__media img,
  [class*="card"] img,
  [class*="product"] img,
  [class*="media"] img {
    max-height: 220px !important;
    object-fit: cover !important;
  }
}
}

