/** Shopify CDN: Minification failed

Line 551:0 Unexpected "}"

**/
/* ============================================================
   HIGHER CRAFT — BASE.CSS
   Global reset, variables, typography, utilities
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--color-bg, #2a2820);
}

/* ── CSS Variables (defaults — overridden by Theme Settings) ── */
:root {
  --font-body: 'Jost', sans-serif;
  --font-display: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --color-bg: #2a2820;
  --color-text: #f5edd8;
  --color-gold: #c9a84c;
  --color-gold-mid: #dbb96a;
  --color-gold-hi: #f0d080;
  --color-gold-deep: #7a5c1e;
  --color-gold-glow: #fff0b0;
  --color-forest-dark: #0a1408;
  --color-forest: #122010;

  --font-size-base: 16px;
  --font-size-sm: 0.875rem;
  --font-size-xs: 0.75rem;

  --header-height: 80px;
  --container-max: 1480px;
  --grid-gap: 3px;
}

/* ── HTML / Body ── */
html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

a, button, input, select, textarea, label {
  cursor: none;
}

/* ── Custom Cursor ── */
#hc-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gold);
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s ease;
  box-shadow: 0 0 14px var(--color-gold), 0 0 28px rgba(201,168,76,0.4);
}

#hc-cursor.is-hover {
  transform: translate(-50%, -50%) scale(2.2);
  background: transparent;
  border: 1px solid var(--color-gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
}

#hc-cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

/* ── Grain overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8000;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Container ── */
.hc-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 4rem;
}

@media (max-width: 768px) {
  .hc-container { padding: 0 1.5rem; }
}

/* ── Section backgrounds ── */
.hc-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hc-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hc-section-bg-overlay {
  position: absolute;
  inset: 0;
}

.hc-section-content {
  position: relative;
  z-index: 1;
}

/* ── Typography base ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
}

p { line-height: 1.7; }

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

img, video {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: none;
}

ul, ol { list-style: none; }

/* ── Utility: Gold text ── */
.hc-gold {
  background: linear-gradient(160deg, var(--color-gold-glow) 0%, var(--color-gold-hi) 25%, var(--color-gold-mid) 55%, var(--color-gold) 75%, var(--color-gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Utility: Label / eyebrow ── */
.hc-label {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-shadow: 0 0 16px rgba(201,168,76,0.4);
}

/* ── Utility: Section title ── */
.hc-section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.1;
}

.hc-section-title em {
  font-style: italic;
  color: var(--color-gold-mid);
}

/* ── Utility: Buttons ── */
.hc-btn-gold {
  display: inline-block;
  padding: 0.88rem 2.7rem;
  background: linear-gradient(135deg, #8a6820, var(--color-gold), var(--color-gold-mid), var(--color-gold-hi));
  background-size: 250% 100%;
  background-position: right center;
  color: var(--color-bg);
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  text-decoration: none;
}

.hc-btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: translateX(-100%);
  transition: transform 0.55s;
}

.hc-btn-gold:hover {
  background-position: left center;
  box-shadow: 0 0 30px rgba(201,168,76,0.5), 0 0 70px rgba(201,168,76,0.18);
  transform: translateY(-3px);
}

.hc-btn-gold:hover::after { transform: translateX(100%); }

.hc-btn-ghost {
  display: inline-block;
  padding: 0.88rem 2.7rem;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.38);
  color: var(--color-gold-mid);
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.4s;
  text-decoration: none;
}

.hc-btn-ghost:hover {
  border-color: var(--color-gold-hi);
  color: var(--color-gold-hi);
  box-shadow: 0 0 20px rgba(201,168,76,0.2), inset 0 0 20px rgba(201,168,76,0.04);
  transform: translateY(-3px);
}

/* ── Reveal on scroll ── */
.hc-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hc-reveal-d1 { transition-delay: 0.15s; }
.hc-reveal-d2 { transition-delay: 0.30s; }
.hc-reveal-d3 { transition-delay: 0.45s; }

/* ── Ornament divider ── */
.hc-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-gold);
  font-size: 0.5rem;
}

.hc-ornament::before,
.hc-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  max-width: 120px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.55));
}

.hc-ornament::after {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.55));
}

/* ── Age gate ── */
#hc-age-gate {
  position: fixed;
  inset: 0;
  background: rgba(6,6,4,0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

#hc-age-gate.is-hidden { display: none; }

.hc-age-gate__box {
  text-align: center;
  padding: 4rem;
  border: 1px solid rgba(201,168,76,0.2);
  max-width: 480px;
  width: 90%;
  background: rgba(10,20,8,0.8);
}

.hc-age-gate__logo {
  width: 90px;
  margin: 0 auto 2rem;
}

.hc-age-gate__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.18em;
  color: var(--color-gold-mid);
  margin-bottom: 0.5rem;
}

.hc-age-gate__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245,237,216,0.5);
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}

.hc-age-gate__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hc-age-gate__legal {
  margin-top: 2rem;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.25);
}

/* ── Cart drawer ── */
#hc-cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 440px;
  height: 100vh;
  background: #0a1408;
  border-left: 1px solid rgba(201,168,76,0.15);
  z-index: 3000;
  transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#hc-cart-drawer.is-open { right: 0; }

.hc-cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,6,4,0.7);
  z-index: 2999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.hc-cart-drawer__overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.hc-cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.hc-cart-drawer__title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-mid);
}

.hc-cart-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
  color: rgba(201,168,76,0.6);
  cursor: none;
  transition: all 0.3s;
}

.hc-cart-drawer__close:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.hc-cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
}

.hc-cart-drawer__empty {
  text-align: center;
  padding: 4rem 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(245,237,216,0.3);
  font-size: 1.1rem;
}

.hc-cart-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.hc-cart-item__image {
  width: 72px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-forest-dark);
}

.hc-cart-item__info { flex: 1; }

.hc-cart-item__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.hc-cart-item__price {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--color-gold-mid);
}

.hc-cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.hc-cart-item__qty button {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(201,168,76,0.25);
  color: rgba(201,168,76,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: none;
  transition: all 0.2s;
}

.hc-cart-item__qty button:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

@keyframes fireflyFloat {
  0%   { transform: translate(0, 0); opacity: 0; }
  5%   { opacity: 1; }
  25%  { transform: translate(var(--dx1), -30px); }
  50%  { transform: translate(var(--dx2), -15px); opacity: 0.8; }
  75%  { transform: translate(var(--dx3), -45px); }
  95%  { opacity: 0.6; }
  100% { transform: translate(var(--dx4), -20px); opacity: 0; }
}

.hc-cart-item__qty span {
  font-size: 0.8rem;
  color: rgba(245,237,216,0.6);
  min-width: 20px;
  text-align: center;
}

.hc-cart-drawer__footer {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.hc-cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.2rem;
}

.hc-cart-drawer__total-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.4);
}

.hc-cart-drawer__total-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--color-gold-mid);
}

.hc-cart-drawer__checkout {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ── Mobile ── */

  #hc-cart-drawer { width: 100%; right: -100%; }
}
#hc-cursor,
#hc-cursor-ring {
  left: 200px;
  top: 200px;
}
* {
  cursor: none !important;
}
#hc-cursor, #hc-cursor-ring {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ── HC Product image — prevent natural dimensions overriding layout ── */
.hc-strain__main-img-wrap img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}
/* ── Remove Shopify section wrapper padding ── */
.shopify-section {
  padding: 0 !important;
  margin: 0 !important;
}