/** Shopify CDN: Minification failed

Line 270:4 Expected ":"

**/
/* ==========================================================================
   Shop Drawer Menu — styles
   Add this file to Assets as shop-drawer.css
   ========================================================================== */

:root{
  --shop-drawer-bg: #EEEBE5;
  --shop-drawer-border: #ececec;
  --shop-drawer-title: #000;
  --shop-drawer-subtitle: #8a8a8a;
  --shop-drawer-badge-bg: #2f4a3c;
  --shop-drawer-badge-color: #ffffff;
  --shop-drawer-speed: 320ms;
}

.shop-drawer-wrapper{
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}

.shop-drawer__header {
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 0 20px;

}

li.shop-drawer__submenu-item {
   border-bottom: 1px solid var(--shop-drawer-border);
}

.shop-drawer-wrapper[data-open="true"]{
  pointer-events: auto;
  visibility: visible;
}

/* Overlay: blurs + dims the rest of the site, like a cart drawer */
.shop-drawer__overlay{
  position: absolute;
  inset: 0;
  background: rgba(20,20,20,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--shop-drawer-speed) ease;
}

.shop-drawer-wrapper[data-open="true"] .shop-drawer__overlay{
  opacity: 1;
}

.shop-drawer{
  position: absolute;
  top: var(--shop-drawer-top, 60px);
  left: 0;
  height: calc(100% - var(--shop-drawer-top, 60px));
  width: min(94vw, var(--shop-drawer-width, 420px));
  background: var(--shop-drawer-bg);
  box-shadow: 8px 0 40px rgba(0,0,0,0.12);
  transform: translateX(-100%);
  transition: transform var(--shop-drawer-speed) cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}

.shop-drawer-wrapper[data-open="true"] .shop-drawer{
  transform: translateX(0);
}

.shop-drawer__close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: #222;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* menu */
.shop-drawer__inline-menu{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--shop-drawer-border);
}

.shop-drawer__inline-menu-link{
  font-size: 14px;
  font-weight: 500;
  color: var(--shop-drawer-title);
  text-decoration: none;
}

.shop-drawer__inline-menu-link:hover{
  text-decoration: underline;
}

/* ---------- Panel stack (main list + drill-down sub-panels) ---------- */

.shop-drawer__panels{
  position: relative;
  width: 100%;
  height: 95%;
  overflow: hidden;
}

.shop-drawer__panel{
  position: absolute;
  inset: 0;
  overflow-y: auto;
  background: var(--shop-drawer-bg);
  transform: translateX(100%);
  transition: transform var(--shop-drawer-speed) cubic-bezier(.4,0,.2,1);
  scrollbar-width: thin;
}

.shop-drawer__panel::-webkit-scrollbar{
  width: 6px;
}
.shop-drawer__panel::-webkit-scrollbar-thumb{
  background: #cfcfcf;
  border-radius: 4px;
}

.shop-drawer__panel--main{
  transform: translateX(0);
  z-index: 1;
}

/* When a sub-panel is active: main slides left, sub-panel slides in from right */
.shop-drawer__panel--main.is-shifted{
  transform: translateX(-100%);
}

.shop-drawer__panel--sub.is-active{
  transform: translateX(0);
  z-index: 2;
}

.shop-drawer__list{
  list-style: none;
  margin: 0;
  padding: 20px 0px;
}

span.shop-drawer__trigger-name {
    font-size: 20px;
    
}

.shop-drawer__item{
  border-bottom: 1px solid var(--shop-drawer-border);
}

.shop-drawer__item-link{
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 14px 40px;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.shop-drawer__item-link:hover{
  background-color: #f8f6f3ff;
}

.shop-drawer__thumb{
  position: relative;
  flex: none;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  background: #f2f0eb;
}

.shop-drawer__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-drawer__badge{
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--shop-drawer-badge-bg);
  color: var(--shop-drawer-badge-color);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
}

.shop-drawer__text{
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.shop-drawer__title{
  font-size: 18px;
  font-weight: 500;
  color: var(--shop-drawer-title);
}

.shop-drawer__subtitle{
  font-size: 13px;
  color: var(--shop-drawer-subtitle);
}

.shop-drawer__arrow{
  margin-left: auto;
  flex: none;
  color: #222;
}

/* ---------- Promo card (image with overlay) ---------- */

.shop-drawer__promo{
  padding: 12px 20px;
  border-bottom: 1px solid var(--shop-drawer-border);
}

.shop-drawer__promo-link{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
}

.shop-drawer__promo-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  es
}

.shop-drawer__promo-overlay{
  position: absolute;
  inset: 0;
}

.shop-drawer__promo-content{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #ffffff;
}

.shop-drawer__promo-eyebrow{
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
}

.shop-drawer__promo-heading{
  font-size: 18px;
  font-weight: 600;
}

.shop-drawer__promo-btn{
  margin-top: 6px;
  display: inline-flex;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  color: #000;
}

/* ---------- Sub-panel: back button + product grid ---------- */

.shop-drawer__back{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 18px 20px;
  border: none;
  border-bottom: 1px solid var(--shop-drawer-border);
  background: transparent;
  font: inherit;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  position: sticky;
  top: 0;
  z-index: 2;
}

.shop-drawer__back svg{
  flex: none;
}

.shop-drawer__product-list{
  list-style: none;
  margin: 0;
  padding: 0 0 8px 0;
}

.shop-drawer__product-item{
  border-bottom: 1px solid var(--shop-drawer-border);
}

.shop-drawer__products-empty{
  padding: 16px 20px;
  font-size: 13px;
  color: var(--shop-drawer-subtitle);
  list-style: none;
}

.shop-drawer__view-all{
  display: block;
  margin: 16px 20px 20px;
  padding: 10px 16px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid #222;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce){
  .shop-drawer,
  .shop-drawer__overlay,
  .shop-drawer__panel{
    transition: none !important;
  }
}

@media (max-width: 480px){
  .shop-drawer{
    width: 100vw;
  }
}