:root{
  --bg:#0b0b0c;--panel:#111113;--text:#ffffff;
  --muted:rgba(255,255,255,.70);--muted2:rgba(255,255,255,.50);
  --border:rgba(255,255,255,.10);
  --btn:#cfd8ff;--btnText:#0b0b0c;
  --radius:18px;--radiusSm:12px;
  --shadow:0 10px 30px rgba(0,0,0,.35);
}
*{box-sizing:border-box}html,body{margin:0;padding:0}
body.hymc-body{font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial; background:var(--bg);color:var(--text);line-height:1.55}
a{color:inherit;text-decoration:none}a:hover{opacity:.95}img{max-width:100%;height:auto;display:block}
.hymc-container{max-width:1120px;margin:0 auto;padding:0 20px}
.hymc-main{padding:34px 0 70px}

/* Header */
.hymc-header{position:sticky;top:0;z-index:50;background:rgba(11,11,12,.82);backdrop-filter:blur(10px);border-bottom:1px solid var(--border)}
.hymc-header-inner{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:16px 0}
.hymc-logo{font-weight:650;letter-spacing:.06em;text-transform:uppercase;font-size:14px;display:inline-block;border-bottom:1px solid transparent;padding-bottom:2px}
.hymc-logo:hover{border-bottom-color:rgba(255,255,255,.35)}
/* v20.10: logo underline is drawn inside SVG to match exact text width */
.hymc-header .hymc-logo{border-bottom:none !important;padding-bottom:0 !important;}
.hymc-header .hymc-logo:hover{border-bottom-color:transparent !important;}


.hymc-nav-wrap{display:flex;align-items:center;gap:18px}
.hymc-nav{list-style:none;margin:0;padding:0;display:flex;align-items:center;gap:18px}
.hymc-nav a{font-size:13px;color:var(--muted);padding:6px 0;border-bottom:1px solid transparent}
.hymc-nav a:hover{color:var(--text);border-bottom-color:rgba(255,255,255,.25)}
.hymc-mini-cart{font-size:13px;color:var(--muted);padding:8px 10px;border:1px solid var(--border);border-radius:999px}
.hymc-cart-count{display:inline-block;margin-left:6px;padding:2px 8px;border-radius:999px;background:rgba(255,255,255,.10);font-size:12px}

.hymc-burger{display:none;align-items:center;justify-content:center;gap:6px;flex-direction:row;background:transparent;border:0;padding:10px;border-radius:12px;cursor:pointer}
.hymc-burger .dot{width:5px;height:5px;border-radius:999px;background:rgba(255,255,255,.75);display:block}
.hymc-mobile{border-top:1px solid var(--border);background:rgba(11,11,12,.92)}
.hymc-mobile-inner{padding:16px 20px;display:flex;flex-direction:column;gap:14px}
/* Hide mobile panel on desktop by default */
#hymc-mobile{display:none;}

@media (max-width: 860px){.hymc-nav-wrap{display:none}.hymc-burger{display:flex}}
/* gradients */
.hymc-caribbean{background:linear-gradient(90deg,#ffd7e7,#cfd8ff,#d5ffe8);-webkit-background-clip:text;background-clip:text;color:transparent}

/* Utility: wrap any text (including <strong>) with a gradient */
.hymc-gradient-text{
  /* Robust gradient-text (matches our SVG gradient vibe, avoids paint overlap) */
  display:inline-block;
  vertical-align:baseline;
  line-height:1.05;
  padding:0 .01em;
  --hymc-grad: linear-gradient(90deg,#ffd7e7,#cfd8ff,#d5ffe8);
  background-image: var(--hymc-grad);
  background-repeat:no-repeat;
  background-size:100% 100%;
  background-position:0 50%;
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hymc-gradient-text--caribbean{--hymc-grad:linear-gradient(90deg,#ffd7e7,#cfd8ff,#d5ffe8)}
.hymc-gradient-text--trinidad{--hymc-grad:linear-gradient(90deg,#ff3b3b,#ffffff,#111111)}
.hymc-gradient-text--guyana{--hymc-grad:linear-gradient(90deg,#19c37d,#ffd54a,#ff3b3b)}
.hymc-gradient-text--jamaica{--hymc-grad:linear-gradient(90deg,#19c37d,#ffd54a,#111111)}

/* Subtle pastel heading options (front-page only uses a few) */
.hymc-section-title--soft{color:rgba(207,216,255,.92)}
.hymc-section-title--soft2{color:rgba(213,255,232,.90)}
.hymc-flag{font-weight:750;letter-spacing:.18em;text-transform:uppercase}
.hymc-flag--trinidad{background:linear-gradient(90deg,#ff3b3b,#ffffff,#111111);-webkit-background-clip:text;background-clip:text;color:transparent}
.hymc-flag--guyana{background:linear-gradient(90deg,#19c37d,#ffd54a,#ff3b3b);-webkit-background-clip:text;background-clip:text;color:transparent}
.hymc-flag--jamaica{background:linear-gradient(90deg,#19c37d,#ffd54a,#111111);-webkit-background-clip:text;background-clip:text;color:transparent}

/* hero */
.hymc-hero{padding:24px 0 10px}.hymc-kicker{color:var(--muted2);font-size:12px;letter-spacing:.08em;text-transform:uppercase}
.hymc-hero-title{font-size:42px;line-height:1.1;margin:12px 0 12px;letter-spacing:-.02em}
.hymc-hero-sub{max-width:640px;color:rgba(255,255,255,.78);margin:0 0 18px}
@media (max-width:640px){.hymc-hero-title{font-size:34px}}
.hymc-cta-row{display:flex;gap:12px;flex-wrap:wrap;margin:8px 0 16px}

/* buttons */
.hymc-btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 16px;border-radius:999px;background:var(--btn);color:var(--btnText);font-weight:650;font-size:13px;letter-spacing:.02em;border:0;transition:filter .18s ease,opacity .18s ease,background-color .18s ease}
.hymc-btn--soft{background:rgba(255,255,255,.10);color:#fff;border:1px solid var(--border)}
.hymc-btn:hover{filter:brightness(.985);opacity:.98}
.hymc-btn--soft:hover{background:rgba(255,255,255,.12)}
.hymc-pill-btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:999px;font-weight:650;font-size:12px;letter-spacing:.02em;transition:background-color .18s ease,border-color .18s ease,opacity .18s ease}
.hymc-pill-btn--outline{background:transparent;border:1px solid rgba(255,255,255,.18);color:rgba(255,255,255,.86)}
.hymc-pill-btn--outline:hover{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.28)}

.hymc-values{display:flex;gap:10px;flex-wrap:wrap;margin:10px 0 20px}
.hymc-pill{padding:8px 12px;border-radius:999px;border:1px solid var(--border);color:var(--muted);font-size:12px}

/* country section */
.hymc-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin:0 0 14px}
@media (max-width:720px){.hymc-section-head{flex-direction:column;align-items:flex-start}}
.hymc-section-title{font-size:16px;letter-spacing:.04em;text-transform:uppercase;color:rgba(255,255,255,.82);margin:0}
.hymc-country-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
@media (max-width:980px){.hymc-country-grid{grid-template-columns:1fr}}
.hymc-country-card{border:1px solid var(--border);border-radius:18px;padding:16px;background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03));transition:border-color .15s ease,background-color .15s ease}
.hymc-country-card:hover{border-color:rgba(255,255,255,.18);background:rgba(255,255,255,.045)}
.hymc-country-top{display:flex;align-items:center;justify-content:space-between;gap:14px}
.hymc-country-cta{font-size:12px;padding:8px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.18);color:rgba(255,255,255,.86);background:rgba(255,255,255,.03);transition:background-color .18s ease,border-color .18s ease}
.hymc-country-card:hover .hymc-country-cta{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.28)}
.hymc-country-sub{margin-top:10px;color:rgba(255,255,255,.70);font-size:13px}

/* tiles */
.hymc-tiles{display:grid;grid-template-columns:repeat(6,1fr);gap:10px;margin:14px 0 24px}
@media (max-width:980px){.hymc-tiles{grid-template-columns:repeat(3,1fr)}}
@media (max-width:520px){.hymc-tiles{grid-template-columns:repeat(2,1fr)}}
.hymc-tile{padding:18px 14px;border-radius:var(--radius);background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.03));border:1px solid var(--border);transition:border-color .15s ease,background-color .15s ease}
.hymc-tile:hover{border-color:rgba(255,255,255,.18)}

/* footer */
.hymc-footer{border-top:1px solid var(--border);padding:34px 0 0;background:rgba(17,17,19,.45)}
.hymc-footer-inner{display:flex;align-items:flex-start;justify-content:space-between;gap:26px;padding-bottom:28px}
@media (max-width:980px){.hymc-footer-inner{flex-direction:column}}
.hymc-footer-brand{font-weight:750;letter-spacing:.08em;text-transform:uppercase;font-size:12px}
.hymc-footer-tagline{margin-top:8px;font-size:13px}
.hymc-footer-sub{margin-top:8px;font-size:12px;color:rgba(255,255,255,.62)}
.hymc-footer-version{margin-top:10px;font-size:11px}
.hymc-footer-links{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;min-width:720px}
@media (max-width:980px){.hymc-footer-links{min-width:0;grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:560px){.hymc-footer-links{grid-template-columns:1fr}}
.hymc-footer-col{display:flex;flex-direction:column;gap:10px}
.hymc-footer-coltitle{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.75)}
.hymc-footer-col a{color:rgba(255,255,255,.68);font-size:13px}
.hymc-footer-col a:hover{color:#fff}
.hymc-footer-bottom{border-top:1px solid var(--border);padding:14px 0}
.hymc-footer-bottominner{display:flex;align-items:center;justify-content:space-between;gap:14px}
@media (max-width:720px){.hymc-footer-bottominner{flex-direction:column;align-items:flex-start}}
.hymc-muted{color:var(--muted2)}

/* Page content polish (Contact, FAQ, Policies, etc.) */
.hymc-article{max-width:900px}
.hymc-content h2{font-size:18px;letter-spacing:.02em;margin:26px 0 10px}
.hymc-content h3{font-size:15px;letter-spacing:.01em;margin:22px 0 8px;color:rgba(255,255,255,.92)}
.hymc-content p{margin:0 0 14px;color:rgba(255,255,255,.82)}
.hymc-content a{color:rgba(255,255,255,.92);text-decoration:underline;text-underline-offset:3px}
.hymc-content ul, .hymc-content ol{margin:0 0 14px;padding-left:20px;color:rgba(255,255,255,.82)}
.hymc-content li{margin:6px 0}

/* FAQ patterns (details/summary blocks) */
.hymc-content details{
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  padding:12px 14px;
  margin:10px 0;
}
.hymc-content details[open]{background:rgba(255,255,255,.04)}
.hymc-content summary{
  cursor:pointer;
  font-weight:700;
  color:rgba(255,255,255,.90);
  list-style:none;
}
.hymc-content summary::-webkit-details-marker{display:none}
.hymc-content summary:after{
  content:"+";
  float:right;
  color:rgba(255,255,255,.55);
}
.hymc-content details[open] summary:after{content:"–"}

/* Contact form styling (generic + popular plugins) */
.hymc-content input[type="text"],
.hymc-content input[type="email"],
.hymc-content input[type="tel"],
.hymc-content input[type="url"],
.hymc-content textarea,
.hymc-content select,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form textarea,
.wpforms-form select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
}
.hymc-content textarea{min-height:140px}
.hymc-content label,
.wpcf7 label,
.wpforms-form label{
  display:block;
  font-size:12px;
  color:rgba(255,255,255,.72);
  margin:0 0 6px;
}

.hymc-content button,
.hymc-content input[type="submit"],
.wpcf7 input[type="submit"],
.wpforms-form button[type="submit"]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  background:var(--btn);
  color:var(--btnText);
  border:0;
  font-weight:750;
  letter-spacing:.02em;
  transition:filter .18s ease,opacity .18s ease;
}
.hymc-content button:hover,
.hymc-content input[type="submit"]:hover,
.wpcf7 input[type="submit"]:hover,
.wpforms-form button[type="submit"]:hover{
  filter:brightness(.985);
  opacity:.98;
}


/* Panel */
.hymc-nav .sub-menu{
  list-style:none;
  margin: 12px 0 0;
  padding: 12px;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: rgba(17,17,19,.98);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  min-width: 560px;
  max-width: 720px;
  display: none;
  box-shadow: 0 16px 50px rgba(0,0,0,.45);
}

/* Show on hover OR click-open */
.hymc-nav li:hover > .sub-menu,
.hymc-nav li.is-open > .sub-menu{
  display:block;
}

/* Layout inside panel */
.hymc-nav .sub-menu{
  display:none; /* overridden by show rules above */
}
.hymc-nav li:hover > .sub-menu,
.hymc-nav li.is-open > .sub-menu{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

/* "Pill" links */
.hymc-nav .sub-menu a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  letter-spacing: .02em;
  transition: background-color .18s ease, border-color .18s ease, opacity .18s ease;
}
.hymc-nav .sub-menu a:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.24);
  opacity: 1;
}

/* If you use 3rd level menus, keep them simple */
.hymc-nav .sub-menu .sub-menu{
  position: static;
  transform:none;
  min-width:auto;
  max-width:none;
  border:0;
  box-shadow:none;
  background:transparent;
  padding: 0 0 0 8px;
  display:block !important;
}
.hymc-nav .sub-menu .sub-menu a{
  border:0;
  background:transparent;
  padding: 8px 10px;
  border-radius: 12px;
}

/* Mobile: keep submenu visible and not mega */
@media (max-width: 860px){
  .hymc-mobile .sub-menu{
    display:block !important;
    position: static !important;
    transform:none !important;
    min-width: 0 !important;
    max-width: none !important;
    border:0 !important;
    background: transparent !important;
    padding: 0 0 0 12px !important;
    box-shadow:none !important;
  }
  .hymc-mobile .sub-menu a{
    border:0 !important;
    background: transparent !important;
    padding: 6px 0 !important;
    border-radius: 0 !important;
    color: rgba(255,255,255,.70) !important;
  }
  .hymc-nav li.menu-item-has-children > a::after{ display:none; }
}

/* Narrow screens: panel full width */
@media (max-width: 980px){
  .hymc-nav .sub-menu{
    min-width: 420px;
  }
}


/* === Mega dropdown (Shop dropdown) === */
.hymc-nav li.menu-item-has-children > a{
  position:relative;
  padding-right: 14px;
}
.hymc-nav li.menu-item-has-children > a::after{
  content:"";
  display:inline-block;
  width:6px;height:6px;
  border-right:1.5px solid rgba(255,255,255,.55);
  border-bottom:1.5px solid rgba(255,255,255,.55);
  transform: rotate(45deg);
  margin-left:8px;
  position:relative;
  top:-1px;
}

/* Panel */
.hymc-nav .sub-menu{
  list-style:none;
  margin: 12px 0 0;
  padding: 14px;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: rgba(17,17,19,.98);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  min-width: 620px;
  max-width: 820px;
  display: none;
  box-shadow: 0 16px 50px rgba(0,0,0,.45);
}

/* Show on hover OR click-open */
.hymc-nav li:hover > .sub-menu,
.hymc-nav li.is-open > .sub-menu{
  display:grid;
}

/* Layout + vertical separators */
.hymc-nav li:hover > .sub-menu,
.hymc-nav li.is-open > .sub-menu{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items:start;
}

/* Create a subtle vertical divider between columns */
.hymc-nav .sub-menu::before{
  content:"";
  position:absolute;
  top:14px; bottom:14px;
  left:50%;
  width:1px;
  background: rgba(255,255,255,.08);
  transform: translateX(-50%);
  pointer-events:none;
}

/* "Pill" links */
.hymc-nav .sub-menu a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  letter-spacing: .02em;
  transition: background-color .18s ease, border-color .18s ease, opacity .18s ease;
  white-space:nowrap;
}
.hymc-nav .sub-menu a:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.24);
  opacity: 1;
}

/* 3rd-level "section" headings via Custom Link '#' */
.hymc-nav .sub-menu > li.menu-item-has-children > a{
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  justify-content:flex-start;
  gap:10px;
}
.hymc-nav .sub-menu > li.menu-item-has-children > a::after{ display:none; }

/* Third level list under a heading */
.hymc-nav .sub-menu .sub-menu{
  position: static;
  transform:none;
  min-width:auto;
  max-width:none;
  border:0;
  box-shadow:none;
  background:transparent;
  padding: 10px 0 0 0;
  display:block !important;
}
.hymc-nav .sub-menu .sub-menu a{
  border-radius: 999px;
}

/* Mobile: keep submenu stacked (no mega) */
@media (max-width: 860px){
  .hymc-mobile .sub-menu{
    display:block !important;
    position: static !important;
    transform:none !important;
    min-width: 0 !important;
    max-width: none !important;
    border:0 !important;
    background: transparent !important;
    padding: 0 0 0 12px !important;
    box-shadow:none !important;
  }
  .hymc-mobile .sub-menu::before{display:none !important;}
  .hymc-mobile .sub-menu a{
    border:0 !important;
    background: transparent !important;
    padding: 6px 0 !important;
    border-radius: 0 !important;
    color: rgba(255,255,255,.70) !important;
    white-space:normal !important;
  }
  .hymc-nav li.menu-item-has-children > a::after{ display:none; }
}

/* Narrow screens: panel width */
@media (max-width: 980px){
  .hymc-nav .sub-menu{
    min-width: 520px;
  }
}

/* === Page templates (About / Contact / FAQ / Lookbook) === */
.hymc-page-hero{margin:0 0 18px}
.hymc-page-lede{max-width:720px;color:rgba(255,255,255,.78);margin:8px 0 0}
.hymc-page-section{margin-top:18px}
.hymc-panel{border:1px solid rgba(255,255,255,.12);border-radius:18px;background:rgba(255,255,255,.03);padding:14px}
.hymc-split{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:12px}
@media (max-width: 860px){.hymc-split{grid-template-columns:1fr}}
.hymc-cardblock{border:1px solid rgba(255,255,255,.10);border-radius:16px;background:rgba(255,255,255,.03);padding:14px}
.hymc-cardblock-title{font-weight:800;letter-spacing:.06em;text-transform:uppercase;font-size:11px;color:rgba(255,255,255,.86);margin-bottom:6px}
.hymc-page-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px}

.hymc-contact-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:12px}
@media (max-width: 980px){.hymc-contact-grid{grid-template-columns:1fr}}
.hymc-contact-meta{margin-top:12px;display:flex;flex-direction:column;gap:10px}
.hymc-contact-line{display:flex;justify-content:space-between;gap:14px;padding:10px 12px;border-radius:14px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.02)}
.hymc-contact-label{color:rgba(255,255,255,.60);font-size:12px}
.hymc-contact-value{color:rgba(255,255,255,.86);font-size:12px}

.hymc-lookbook-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
@media (max-width: 980px){.hymc-lookbook-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 520px){.hymc-lookbook-grid{grid-template-columns:1fr}}
.hymc-lookbook-grid img{border-radius:18px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.02)}



/* Responsive nav guards */
@media (min-width: 861px){#hymc-mobile{display:none !important;}}


/* NAV RESPONSIVE GUARANTEES (prevents both menus on desktop + ensures mobile panel displays) */
@media (min-width: 861px){
  .hymc-nav-wrap{display:flex !important;}
  .hymc-burger{display:none !important;}
  #hymc-mobile{display:none !important;}
}
@media (max-width: 860px){
  .hymc-nav-wrap{display:none !important;}
  .hymc-burger{display:flex !important;}
  #hymc-mobile{display:block !important;}
}


/* === Clean Responsive Nav v16 === */
/* Desktop */
@media (min-width: 861px){
  .hymc-nav-wrap{display:flex !important;}
  .hymc-burger{display:none !important;}
  #hymc-mobile{display:none !important;}
}

/* Mobile / Tablet */
@media (max-width: 860px){
  .hymc-nav-wrap{display:none !important;}
  .hymc-burger{display:flex !important;}

  .hymc-header{position:sticky; top:0; z-index:60;}
  .hymc-header{overflow:visible;}
  .hymc-header-inner{position:relative;}

  /* Panel lives under header, no body lock, no fixed overlay */
  #hymc-mobile{
    display:block !important;
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    top:100% !important;
    background: rgba(11,11,12,.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,.10);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height .24s ease, opacity .20s ease, transform .20s ease;
  }

  body.hymc-mobile-open #hymc-mobile{
    max-height: 82vh;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  #hymc-mobile .hymc-mobile-inner{
    padding: 14px 18px 18px !important;
  }

  /* Primary items */
  #hymc-mobile .hymc-nav{display:flex;flex-direction:column;gap:0;margin:0;padding:0;width:100%;}
  #hymc-mobile .hymc-nav > li{list-style:none;border-bottom:1px solid rgba(255,255,255,.08);padding:6px 0;}
  #hymc-mobile .hymc-nav > li:last-child{border-bottom:0;}
  #hymc-mobile .hymc-nav > li > a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    padding: 12px 2px;
    color: rgba(255,255,255,.88);
    font-size: 14px;
  }

  /* Chevron for parents */
  #hymc-mobile .hymc-nav > li.menu-item-has-children > a::after{
    content:"";
    width:8px;height:8px;
    border-right:1.5px solid rgba(255,255,255,.55);
    border-bottom:1.5px solid rgba(255,255,255,.55);
    transform: rotate(45deg);
    transition: transform .18s ease;
    margin-left:10px;
  }
  #hymc-mobile .hymc-nav > li.is-open > a::after{
    transform: rotate(-135deg);
  }

  /* Submenus: accordion */
  #hymc-mobile .sub-menu{
    list-style:none;
    margin: 0;
    padding: 0 0 10px 0;
    max-height: 0;
    overflow: hidden;
    opacity: .88;
    transform: translateY(-4px);
    transition: max-height .22s ease, opacity .22s ease, transform .22s ease;
  }
  #hymc-mobile li.is-open > .sub-menu{
    max-height: 900px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 8px;
  }

  #hymc-mobile .sub-menu li{margin:0 0 10px 0;}
  #hymc-mobile .sub-menu a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    padding: 10px 12px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    background: rgba(255,255,255,.03) !important;
    color: rgba(255,255,255,.82) !important;
    font-size: 13px !important;
  }
  #hymc-mobile .sub-menu a:hover{
    background: rgba(255,255,255,.06) !important;
    border-color: rgba(255,255,255,.22) !important;
  }

  /* Keep your View Cart + Checkout pills exactly as-is (already styled) */
}



/* Footer menu (Theme Location) */
.hymc-footer-nav{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px}
.hymc-footer-nav a{color:rgba(255,255,255,.68);font-size:13px}
.hymc-footer-nav a:hover{color:#fff}


/* Logo gradient (v20.7 SVG morph) */
.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.hymc-logo-svg{
  display:block;
  height:24px;
  width:auto;
}

.hymc-logo-svg text{
  font-family: inherit;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .08em;
}

.hymc-logo:hover .hymc-logo-svg{ filter: brightness(1.04); }

/* === Logo underline: luxury delayed hover + subtle draw animation ===
   Underline is drawn inside SVG and sized in JS to exact text width.
   This CSS keeps it hidden by default and reveals it after a short delay.
*/
.hymc-logo-underline{
  opacity: 0;
  /* JS sets dasharray/dashoffset to the exact underline width */
  transition:
    opacity 180ms ease 220ms,
    stroke-dashoffset 520ms cubic-bezier(.22,1,.36,1) 220ms;
}

.hymc-logo:hover .hymc-logo-underline{
  opacity: .65;
  stroke-dashoffset: 0;
}

/* Touch devices: no hover underline */
@media (hover: none){
  .hymc-logo-underline{ display:none; }
}



/* Mega menu stability (v19) — make it easier to move into panel without losing hover */
.hymc-nav li.menu-item-has-children{padding-bottom:10px;}
.hymc-nav .sub-menu{margin-top: 2px;}



/* =========================================
   Pillars (Pepper Sauce / Spices / Apparel)
   v20.13
========================================= */
.hymc-pillars{padding:56px 0}
.hymc-pillars-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}
.hymc-pillar-card{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:18px 18px 16px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
  text-decoration:none;
}
.hymc-pillar-card:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
}
.hymc-pillar-kicker{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted2);
}
.hymc-pillar-title{
  font-size:20px;
  font-weight:650;
  letter-spacing:-.01em;
}
.hymc-pillar-desc{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.hymc-pillar-cta{
  margin-top:auto;
  font-size:13px;
  color:rgba(255,255,255,.82);
}
.hymc-seo-copy{
  margin-top:18px;
  padding:18px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(255,255,255,.02);
}
.hymc-section-title--sm{font-size:18px}
.hymc-seo-copy a{
  text-decoration:underline;
  text-decoration-color:rgba(255,255,255,.25);
  text-underline-offset:4px;
}
.hymc-faq{margin-top:22px}
.hymc-faq-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.hymc-faq-card{
  padding:16px;
  border-radius:var(--radiusSm);
  border:1px solid var(--border);
  background:rgba(255,255,255,.02);
}
.hymc-faq-q{font-weight:650;margin-bottom:6px}
.hymc-faq-a{font-size:14px;line-height:1.55}

@media (max-width: 980px){
  .hymc-pillars-grid{grid-template-columns:1fr;gap:12px}
  .hymc-faq-grid{grid-template-columns:1fr}
}
