/** Shopify CDN: Minification failed

Line 542:32 Unexpected "{"
Line 573:0 Expected identifier but found "<"
Line 587:0 Expected identifier but found "<"
Line 588:0 Expected "}" to go with "{"

**/
:root {
  --mocha-dark: #2A1C14;
  --mocha: #3C2A1E;
  --mocha-light: #4E382A;
  --cream: #F3E9DA;
  --cream-dim: #D8C7B2;
  --brass: #C98A3B;
  --brass-light: #E3AC5E;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--mocha-dark);
  color: var(--cream);
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Fraunces', serif; margin: 0; color: var(--cream); }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ---- Header / Nav ---- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(42,28,20,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(243,233,218,0.08);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 1.5px solid var(--brass);
}
.nav-logo span {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--cream);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--brass-light); }
.nav-links a.active { color: var(--brass-light); }

.nav-cta {
  background: var(--brass);
  color: var(--mocha-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .nav-inner { flex-wrap: wrap; }
  .nav-links { gap: 14px; font-size: 0.8rem; order: 3; width: 100%; justify-content: center; padding-top: 6px; }
  .nav-cta { display: none; }
}

/* ---- Tagbar ---- */
.tagbar {
  background: var(--mocha-dark);
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 8px 0;
  border-bottom: 1px solid rgba(243,233,218,0.06);
}
.tagbar span { color: var(--brass-light); }

/* ---- Footer ---- */
footer {
  background: var(--mocha-dark);
  border-top: 1px solid rgba(243,233,218,0.08);
  padding: 40px 0 26px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 26px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 1.5px solid var(--brass);
}
.footer-brand span {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.98rem;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--cream-dim);
}
.footer-links a:hover { color: var(--brass-light); }

footer .fine-print {
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  opacity: 0.6;
  border-top: 1px solid rgba(243,233,218,0.06);
  padding-top: 18px;
}

/* ---- Shared section styles ---- */
.section { padding: 64px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-light);
  display: block;
  margin-bottom: 10px;
}
.section-head h2 { font-size: 1.7rem; font-weight: 700; }

.btn-primary {
  background: var(--brass);
  color: var(--mocha-dark);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 30px;
  border-radius: 999px;
  display: inline-block;
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 30px;
  border-radius: 999px;
  border: 1.5px solid rgba(243,233,218,0.3);
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--brass); color: var(--brass-light); }

/* ---- Coming soon page ---- */
.coming-soon {
  padding: 100px 0 110px;
  text-align: center;
}
.coming-soon-icon {
  width: 64px; height: 64px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--mocha);
  border: 1.5px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon-icon svg { width: 28px; height: 28px; fill: var(--brass-light); }
.coming-soon .eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 16px;
}
.coming-soon .eyebrow::before, .coming-soon .eyebrow::after { content:''; width: 26px; height: 1px; background: var(--brass); opacity: 0.6; }
.coming-soon h1 {
  font-size: clamp(1.9rem, 4.4vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.coming-soon p {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: 44ch;
  margin: 0 auto 30px;
}
.notify-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 420px;
  margin: 0 auto;
}
.notify-form input {
  flex: 1 1 220px;
  background: var(--mocha);
  border: 1px solid rgba(243,233,218,0.15);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--cream);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.88rem;
}
.notify-form input::placeholder { color: var(--cream-dim); }
.notify-form button {
  background: var(--brass);
  color: var(--mocha-dark);
  border: none;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
}

/* ---- Home page: hero ---- */
.hero { padding: 64px 0 40px; text-align: center; }
.hero-logo { margin: 0 auto 26px; max-width: 300px; position: relative; }
.hero-logo::before { content: ''; position: absolute; inset: -10px; border: 1.5px solid var(--brass); border-radius: 8px; transform: rotate(-1deg); pointer-events: none; }
.hero-logo img { display: block; width: 100%; height: auto; border-radius: 6px; box-shadow: 0 24px 50px -18px rgba(0,0,0,0.6); }
.eyebrow { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass-light); display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.eyebrow::before, .eyebrow::after { content:''; width: 26px; height: 1px; background: var(--brass); opacity: 0.6; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; line-height: 1.08; max-width: 18ch; margin: 0 auto 16px; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--brass-light); }
.hero-sub { font-size: 1.02rem; color: var(--cream-dim); max-width: 46ch; margin: 0 auto 30px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Home page: mission strip ---- */
.mission-strip { background: var(--mocha); border-top: 1px solid rgba(243,233,218,0.06); border-bottom: 1px solid rgba(243,233,218,0.06); padding: 26px 0; text-align: center; }
.mission-strip p { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 1.08rem; color: var(--cream); max-width: 52ch; margin: 0 auto; }
.mission-strip p strong { font-style: normal; color: var(--brass-light); font-weight: 700; }

/* ---- Home page: Rev teaser ---- */
.rev-teaser { background: var(--mocha); border-radius: 14px; padding: 40px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.rev-teaser-img { flex: 1 1 260px; max-width: 300px; }
.rev-teaser-img img { width: 100%; border-radius: 8px; display: block; box-shadow: 0 20px 40px -16px rgba(0,0,0,0.5); }
.rev-teaser-text { flex: 1 1 320px; }
.rev-teaser-text .section-label { margin-bottom: 8px; }
.rev-teaser-text h2 { font-size: 1.5rem; margin-bottom: 14px; max-width: 20ch; }
.rev-teaser-text p { font-size: 0.92rem; color: var(--cream-dim); margin-bottom: 20px; max-width: 48ch; }

/* ---- Cart drawer (starter — wired up via cart.js) ---- */
.cart-icon-link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--cream-dim);
}
.cart-icon-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.cart-icon-link:hover { color: var(--brass-light); }
.cart-count {
  position: absolute;
  top: -7px; right: -9px;
  background: var(--brass);
  color: var(--mocha-dark);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(380px, 92vw);
  background: var(--mocha-dark);
  border-left: 1px solid rgba(243,233,218,0.1);
  box-shadow: -20px 0 50px -20px rgba(0,0,0,0.6);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(243,233,218,0.08);
}
.cart-drawer-header h3 { font-size: 1.1rem; }
.cart-drawer-close { background: none; border: none; color: var(--cream-dim); font-size: 1.3rem; cursor: pointer; line-height: 1; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-drawer-empty { color: var(--cream-dim); font-size: 0.9rem; text-align: center; padding: 40px 0; }
.cart-drawer-footer { padding: 18px 20px; border-top: 1px solid rgba(243,233,218,0.08); }
.cart-drawer-footer .cart-subtotal { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 14px; }
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 99; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ---- About page ---- */
.about-hero { padding: 48px 0 0; text-align: center; }
.puppy-frame { margin: 28px auto 0; max-width: 260px; position: relative; }
.puppy-frame::before { content: ''; position: absolute; inset: -8px; border: 1.5px solid var(--brass); border-radius: 4px; transform: rotate(-1.2deg); pointer-events: none; }
.puppy-frame img { display: block; width: 100%; height: auto; border-radius: 3px; box-shadow: 0 16px 32px -14px rgba(0,0,0,0.55); }
.polaroid-caption { font-family: 'Space Mono', monospace; font-size: 10.5px; letter-spacing: 0.03em; color: var(--brass-light); text-align: center; margin-top: 10px; }
.polaroid-caption strong { color: var(--cream); }
.paw-divider { display:flex; justify-content:center; align-items:center; gap:14px; margin: 42px 0 6px; opacity:0.5; }
.paw-divider .line { height:1px; width:64px; background: rgba(243,233,218,0.2); }
.paw-divider svg { width:13px; height:13px; fill: var(--brass); }
.about-body-section { padding: 30px 0; }
.about-body-section .section-label { margin-bottom: 10px; }
.about-body-section h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 14px; max-width: 24ch; }
.about-body-section p { font-size: 0.92rem; color: var(--cream-dim); max-width: 62ch; }
.about-body-section p + p { margin-top: 11px; }
.lede { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 1.05rem; color: var(--cream); max-width: 32ch; margin-bottom: 12px; line-height: 1.35; }
.stat-strip { background: var(--mocha-light); border: 1px solid rgba(243,233,218,0.08); border-radius: 8px; padding: 20px 22px; margin: 20px 0 6px; display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.stat-num { font-family:'Fraunces', serif; font-weight:800; font-size: 2.1rem; color: var(--brass-light); line-height:1; }
.stat-text { font-size: 0.84rem; color: var(--cream-dim); max-width: 44ch; }
.stat-text strong { color: var(--cream); }
.pull-quote { border-left: 2px solid var(--brass); padding: 3px 0 3px 18px; margin: 22px 0; }
.pull-quote p { font-family:'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 1.02rem; color: var(--cream); line-height: 1.4; }
.revnow-section { padding: 20px 0 60px; }
.revnow-head { text-align: center; margin-bottom: 20px; }
.revnow-head h2 { margin-bottom: 5px; }
.revnow-head p { font-size: 0.82rem; color: var(--brass-light); font-family: 'Space Mono', monospace; }
.revnow-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.revnow-row figure { margin: 0; flex: 1 1 0; min-width: 110px; max-width: 140px; aspect-ratio: 3 / 4; border-radius: 6px; overflow: hidden; background: var(--mocha-light); border: 1px solid rgba(243,233,218,0.1); }
.revnow-row img { width:100%; height:100%; object-fit: cover; display:block; }
.about-cta { background: var(--mocha); border-radius: 14px; text-align:center; padding: 44px 30px; margin-top: 10px; }
.about-cta .eyebrow2 { font-family:'Space Mono', monospace; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 12px; display:block; }
.about-cta h2 { font-size: 1.35rem; max-width: 22ch; margin: 0 auto 12px; }
.about-cta p { color: var(--cream-dim); max-width: 44ch; margin: 0 auto 22px; font-size: 0.88rem; }
@media (max-width: 600px) { .revnow-row figure { min-width: 90px; max-width: 30%; } }

/* ---- Coming soon / Contact ---- */
.coming-soon { padding: 100px 0 110px; text-align: center; }
.coming-soon-icon { width: 64px; height: 64px; margin: 0 auto 26px; border-radius: 50%; background: var(--mocha); border: 1.5px solid var(--brass); display: flex; align-items: center; justify-content: center; }
.coming-soon-icon svg { width: 28px; height: 28px; fill: var(--brass-light); }
.coming-soon h1 { font-size: clamp(1.9rem, 4.4vw, 2.7rem); font-weight: 800; margin-bottom: 14px; }
.coming-soon p { font-size: 1rem; color: var(--cream-dim); max-width: 44ch; margin: 0 auto 30px; }
.contact-form { max-width: 480px; margin: 0 auto; text-align: left; }
.contact-form label { display: block; font-size: 0.82rem; color: var(--cream-dim); margin-bottom: 6px; font-weight: 500; }
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--mocha); border: 1px solid rgba(243,233,218,0.15);
  border-radius: 8px; padding: 11px 14px; color: var(--cream); font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem; margin-bottom: 16px;
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form button {
  background: var(--brass); color: var(--mocha-dark); border: none; font-weight: 700;
  font-size: 0.9rem; padding: 13px 30px; border-radius: 999px; cursor: pointer; font-family: 'Work Sans', sans-serif;
}
.form-success { background: var(--mocha-light); border: 1px solid var(--brass); border-radius: 8px; padding: 16px 20px; margin-bottom: 20px; font-size: 0.88rem; color: var(--cream); }

/* ---- Shop / Collection grid ---- */
.collection-head { text-align: center; padding: 56px 0 10px; }
.collection-head h1 { font-size: clamp(1.9rem, 4.4vw, 2.6rem); font-weight: 800; margin-bottom: 10px; }
.collection-head p { color: var(--cream-dim); max-width: 46ch; margin: 0 auto; font-size: 0.95rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 40px 0 80px; }
.product-card { background: var(--mocha); border: 1px solid rgba(243,233,218,0.08); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; }
.product-card-img { aspect-ratio: 1 / 1; background: var(--mocha-light); overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { font-size: 1rem; margin-bottom: 6px; }
.product-card-price { font-family: 'Space Mono', monospace; color: var(--brass-light); font-size: 0.9rem; margin-bottom: 14px; }
.product-card-body form { margin-top: auto; }
.product-card-body button {
  width: 100%; background: var(--brass); color: var(--mocha-dark); border: none; font-weight: 700;
  font-size: 0.86rem; padding: 11px 0; border-radius: 999px; cursor: pointer; font-family: 'Work Sans', sans-serif;
}
.product-card-body a.view-product { display: block; text-align: center; font-size: 0.82rem; color: var(--cream-dim); margin-top: 8px; }
.product-card-body a.view-product:hover { color: var(--brass-light); }
.collection-empty { text-align: center; padding: 70px 0 100px; color: var(--cream-dim); font-size: 0.95rem; }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

/* ---- Product detail page ---- */
.product-detail { display: flex; gap: 46px; padding: 56px 0 90px; flex-wrap: wrap; }
.product-detail-img { flex: 1 1 380px; max-width: 460px; }
.product-detail-img img { width: 100%; border-radius: 10px; display: block; box-shadow: 0 24px 50px -20px rgba(0,0,0,0.55); }
.product-detail-info { flex: 1 1 340px; }
.product-detail-info h1 { font-size: 1.7rem; margin-bottom: 10px; }
.product-detail-price { font-family: 'Space Mono', monospace; color: var(--brass-light); font-size: 1.1rem; margin-bottom: 20px; }
.product-detail-info .desc { color: var(--cream-dim); font-size: 0.92rem; margin-bottom: 24px; line-height: 1.7; }
.variant-select { margin-bottom: 20px; }
.variant-select label { display: block; font-size: 0.82rem; color: var(--cream-dim); margin-bottom: 6px; }
.variant-select select {
  width: 100%; background: var(--mocha); border: 1px solid rgba(243,233,218,0.15); border-radius: 8px;
  padding: 11px 14px; color: var(--cream); font-family: 'Work Sans', sans-serif; font-size: 0.9rem;
}
.product-detail-info button.add-to-cart-btn {
  background: var(--brass); color: var(--mocha-dark); border: none; font-weight: 700;
  font-size: 0.95rem; padding: 14px 34px; border-radius: 999px; cursor: pointer; font-family: 'Work Sans', sans-serif;
}
.product-detail-info button.add-to-cart-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---- Blog listing & article (for when News becomes a real Blog) ---- */
.blog-head { text-align: center; padding: 56px 0 10px; }
.blog-head h1 { font-size: clamp(1.9rem, 4.4vw, 2.6rem); font-weight: 800; margin-bottom: 10px; }
.blog-head p { color: var(--cream-dim); max-width: 46ch; margin: 0 auto; font-size: 0.95rem; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; padding: 40px 0 80px; }
.blog-card { background: var(--mocha); border: 1px solid rgba(243,233,218,0.08); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; }
.blog-card-img { aspect-ratio: 16 / 10; background: var(--mocha-light); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 20px 22px 24px; }
.blog-card-date { font-family: 'Space Mono', monospace; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass-light); display: block; margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card-body p { font-size: 0.88rem; color: var(--cream-dim); margin-bottom: 14px; }
.blog-card-body a.read-more { font-size: 0.84rem; color: var(--brass-light); font-weight: 600; }
.blog-empty { text-align: center; padding: 70px 0 100px; color: var(--cream-dim); font-size: 0.95rem; }
@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }

.article-wrap { max-width: 720px; margin: 0 auto; padding: 56px 28px 90px; }
.article-eyebrow { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-light); display: block; margin-bottom: 14px; }
.article-wrap h1 { font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 800; margin-bottom: 14px; }
.article-meta { font-size: 0.85rem; color: var(--cream-dim); margin-bottom: 30px; }
.article-img { border-radius: 10px; overflow: hidden; margin-bottom: 32px; }
.article-img img { width: 100%; display: block; }
.article-body { font-size: 1rem; color: var(--cream-dim); line-height: 1.8; }
.article-body p { margin-bottom: 18px; }
.article-body h2, .article-body h3 { color: var(--cream); margin: 28px 0 14px; }
.article-back { display: inline-block; margin-top: 40px; color: var(--brass-light); font-size: 0.9rem; font-weight: 600; }
/* Dropdown Navigation */
.nav-item {
  position: relative;
}

.nav-item ul,
.nav-item .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--mocha, #2c1a0e);
  border: 1px solid rgba(243,233,218,0.1);
  border-radius: 6px;
  min-width: 180px;
  z-index: 999;
  padding: 8px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.nav-item:hover ul,
.nav-item:hover .submenu {
  display: block;
}

.nav-item ul li a,
.nav-item .submenu a {
  display: block;
  padding: 8px 16px;
  color: var(--cream, #f3e9da);
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
}

.nav-item ul li a:hover,
.nav-item .submenu a:hover {
  background-color: rgba(243,233,218,0.08);
  color: var(--brass-light, #c9a84c);
}
.nav-dropdown {
  transition: opacity 0.15s ease;
}
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}
/* Reduce side margins on product/collection pages */
.product-page,
main {
  max-width: 1400px;
  padding-left: 24px;
  padding-right: 24px;
}
/* Remove excess bottom padding on product pages */
.product-page,
.product-template {
  padding-bottom: 40px;
}
/* Dropdown hover bridge — prevents menu from closing when moving mouse to sub-items */
.nav-item {
  position: relative;
}

.nav-item.has-dropdown::after { {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}
.nav-dropdown {
  transition: opacity 0.15s ease;
}
/* Dropdown hover bridge — prevents menu from closing when moving mouse to sub-items */
.nav-item {
  position: relative;
}
/* Dropdown hover bridge — prevents menu from closing when moving mouse to sub-items */
.nav-item {
  position: relative;
}
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav-dropdown {
  transition: opacity 0.15s ease;
}
<script>
  document.querySelectorAll('.nav-item.has-dropdown').forEach(function(item) {
    var timeout;
    item.addEventListener('mouseenter', function() {
      clearTimeout(timeout);
      this.querySelector('.nav-dropdown').style.display = 'block';
    });
    item.addEventListener('mouseleave', function() {
      var dropdown = this.querySelector('.nav-dropdown');
      timeout = setTimeout(function() {
        dropdown.style.display = 'none';
      }, 300);
    });
  });
</script>
