/** Shopify CDN: Minification failed

Line 30:0 Unexpected "<"
Line 50:0 Unexpected "<"
Line 70:0 Unexpected "}"

**/
/* === Drawer menu links (works for Kalles 4.3.7.1) === */
.t4s-drawer__inner .t4s-menu-drawer__item > a {
    color: #AE83A1 !important;
    font-weight: 600;
}

/* === Drawer footer links (Wishlist, Search, Need help?) === */
.t4s-drawer__inner .t4s-menu-drawer__footer a {
    color: #AE83A1 !important;
    font-weight: 600;
}

/* === Drawer background (matches your gradient) === */
.t4s-drawer__inner {
    background: linear-gradient(180deg, #5A3E61 0%, #AE83A1 50%, #F977FF 100%) !important;
}

/* === Hover effect === */
.t4s-drawer__inner .t4s-menu-drawer__item > a:hover {
    color: #F7B3E8 !important;
}

<style>
/* FORCE override drawer menu styling */
.t4s-menu-drawer,
.t4s-menu-drawer__content,
.t4s-drawer__inner {
  background: linear-gradient(180deg, #5A3E61 0%, #AE83A1 50%, #F977FF 100%) !important;
}

.t4s-menu-drawer__item a,
.t4s-menu-drawer__footer a,
.drawer__menu-item a,
.drawer__footer a {
  color: #FFFFFF !important;
  font-weight: 600 !important;
}

.t4s-menu-drawer__item a:hover,
.drawer__menu-item a:hover {
  color: #F7B3E8 !important;
}
</style>

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  }
}