/* HallowixStudios V39 — Store chooser light-mode label + Cart artwork polish. */

/* STORE / CHOOSE YOUR STORE
   The selector remains Bark in both themes. In light mode the label itself
   should read dark, while the Hallowix pictogram on the right stays bright. */
html[data-theme="light"] .market-console::before{
  color:var(--bark,#2E241E)!important;
}
html[data-theme="light"] .market-console::after{
  filter:brightness(0) invert(1)!important;
  opacity:.72!important;
}

/* CART
   V39 lowers the artwork by another 15px from V35 and removes the large
   clipped top-right radial light. The transparent PNG itself now produces a
   contained Lantern glow, so the light follows the illustration silhouette. */
.hx-cart-art{
  top:calc(50% + 25px)!important;
  filter:
    drop-shadow(0 9px 12px rgba(0,0,0,.18))
    drop-shadow(0 0 7px rgba(217,179,108,.52))
    drop-shadow(0 0 18px rgba(217,179,108,.30))!important;
}
.hx-cart-drawer::before{
  height:124px!important;
  background:linear-gradient(180deg,color-mix(in srgb,var(--moss-brand,#5C7A5E) 11%,transparent),transparent 92%)!important;
}
@media(max-width:760px){
  .hx-cart-art{top:calc(50% + 24px)!important}
}
@media(max-width:520px){
  .hx-cart-art{
    top:calc(50% + 23px)!important;
    filter:
      drop-shadow(0 7px 10px rgba(0,0,0,.17))
      drop-shadow(0 0 6px rgba(217,179,108,.48))
      drop-shadow(0 0 14px rgba(217,179,108,.26))!important;
  }
}
