/** Shopify CDN: Minification failed

Line 6:79 Unexpected "/"

**/
 ----------------------------- GLOBAL VARIABLES ----------------------------- */
:root {
  --font-body-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --transition-standard: 0.3s ease;
  --overlay-blur: blur(12px);
  --badge-border-radius: 4px;
}

/* ----------------------------- GENERAL RESET & GLOBALS ----------------------------- */
html, body {
  font-family: var(--font-body-family);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #111;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-smooth: always;
  zoom: 100%;
  scroll-behavior: smooth;
  backface-visibility: hidden;
}

/* ----------------------------- STICKY ADD TO CART ----------------------------- */
.sticky-add-to-cart {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: top var(--transition-standard), opacity var(--transition-standard), backdrop-filter var(--transition-standard);
}

.sticky-add-to-cart.show-sticky {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.sticky-add-to-cart.animate {
  transform: translateY(-8px);
}

.sticky-add-to-cart.show-sticky.animate {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .sticky-add-to-cart {
    padding: 0.8rem 1rem;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: var(--overlay-blur);
    -webkit-backdrop-filter: var(--overlay-blur);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  }
}

@media (min-width: 769px) {
  .sticky-add-to-cart {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: var(--overlay-blur);
    -webkit-backdrop-filter: var(--overlay-blur);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  }
}

/* ----------------------------- COLLECTION PRODUCT CARD ----------------------------- */
.product-item {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding: 1px;
  margin-bottom: 20px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 2.0);
  background-color: #fff;
  transition: transform 0.2s ease;
  will-change: transform;
}

.product-item:hover {
  transform: scale(1.02);
}

/* ----------------------------- IMAGE OVERLAYS ----------------------------- */
.card-media {
  position: relative;
  overflow: visible;
  will-change: transform;
  z-index: 0;
}

.card-media img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--badge-border-radius);
  transition: transform var(--transition-standard);
  filter: contrast(112%) saturate(106%);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12), 0 10px 30px rgba(0, 0, 0, 0.06);
  will-change: transform;
}

.card-media:hover img,
.card-media.hover-active img {
  transform: scale(1.02) translateY(-2px);
}

@media (prefers-reduced-motion: no-preference) {
  .card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
    transition: opacity var(--transition-standard);
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 240, 0.02) 0%, rgba(0, 0, 0, 0.12) 70%, rgba(0, 0, 0, 0.18) 100%),
                linear-gradient(135deg, rgba(0, 0, 0, 0.06), transparent 60%),
                linear-gradient(225deg, rgba(0, 0, 0, 0.07), transparent 60%);
    background-blend-mode: multiply;
    animation: breathingLight 6s ease-in-out infinite;
  }
}

.card-media:hover::after,
.card-media.hover-active::after {
  opacity: 0.45;
}

/* ----------------------------- MOOD-SPECIFIC OVERLAY TINTS ----------------------------- */
.card-media.vibe-romantic::after { background-color: rgba(226, 102, 202, 0.2); } /* More vivid magenta-pink */
.card-media.vibe-luxury::after { background-color: rgba(255, 180, 0, 0.2); }    /* More golden yellow */
.card-media.vibe-techy::after { background-color: rgba(40, 160, 255, 0.2); }     /* Slightly deeper blue */
.card-media.vibe-sporty::after { background-color: rgba(172, 245, 0, 0.2); }     /* Brighter lime-green */
.card-media.vibe-feminine::after { background-color: rgba(250, 120, 230, 0.2); } /* More electric pink */
.card-media.vibe-masculine::after { background-color: rgba(80, 80, 80, 0.2); }   /* Deeper, stronger gray */
.card-media.vibe-natural::after { background-color: rgba(190, 140, 100, 0.2); }  /* Warmer earthy tone */
.card-media.vibe-edgy::after { background-color: rgba(50, 50, 50, 0.2); }        /* Darker charcoal */
.card-media.vibe-minimal::after { background-color: rgba(220, 220, 220, 0.2); }  /* Brighter light gray */
.card-media.vibe-casual::after { background-color: rgba(120, 160, 255, 0.2); }   /* Slightly cooler blue */
.card-media.vibe-everyday::after { background-color: rgba(160, 160, 160, 0.2); } /* Softer neutral gray */
.card-media.vibe-hot::after { background-color: rgba(255, 70, 70, 0.2); }        /* More saturated red */
.card-media.vibe-formal::after { background-color: rgba(85, 85, 185, 0.2); }     /* Richer indigo */
.card-media.vibe-relaxed::after { background-color: rgba(110, 225, 170, 0.2); }  /* Fresher mint-green */
.card-media.vibe-sexy::after { background-color: rgba(255, 30, 120, 0.2); }      /* Sharper fuchsia */


/* ----------------------------- MOOD BADGES ----------------------------- */
.vibe-badge-wrap {
  position: absolute;
  bottom: 6px;
  left: 6px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
  max-width: calc(100% - 12px);
  scrollbar-width: none;
  -ms-overflow-style: none;
  z-index: 1500;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}

.vibe-badge-wrap::-webkit-scrollbar {
  display: none;
}

.vibe-badge {
  flex: 0 0 auto;
  min-width: max-content;
  background-color: rgba(var(--vibe-fill-rgb, 0, 0, 0), var(--vibe-fill-alpha, 0.0));
  backdrop-filter: blur(6px);
  border: 2px solid rgba(var(--vibe-fill-rgb, 0, 0, 0), 1);
  color: white;
  font-size: 12px;
  font-weight: 500;
  font-family: sans-serif;
  padding: 4px 6px;
  border-radius: 4px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  opacity: 1.0;
  transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease, opacity 0.2s ease;
}

.card-media:hover .vibe-badge,
.card-media.hover-active .vibe-badge {
  opacity: 1;
  background-color: rgba(var(--vibe-fill-rgb, 0, 0, 0), 1);
  border-color: rgba(var(--vibe-fill-rgb, 0, 0, 0), 1);
}

/* ----------------------------- VARIANT POPUPS ----------------------------- */
.wrapper-item-size {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-standard);
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1600;
}

.card-media.hover-active .wrapper-item-size,
.card-media:hover .wrapper-item-size {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ----------------------------- ANIMATIONS ----------------------------- */
@keyframes breathingLight {
  0%, 100% { background-position: 50% 50%; }
  50% { background-position: 60% 40%; }
}

@keyframes shimmerSweep {
  0% { transform: translateX(-100%); opacity: 0; }
  25% { opacity: 0.6; }
  50% { opacity: 0.3; }
  75% { opacity: 0.1; }
  100% { transform: translateX(100%); opacity: 0; }
}

@keyframes flashReveal {
  0% { background: rgba(255, 255, 255, 0.6); }
  100% { background: transparent; }
}

/* ----------------------------- UTILITY ----------------------------- */
.small-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ----------------------------- MENU DROPDOWN ----------------------------- */
.menu-dropdown {
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-standard);
}

.menu-lv-item.has-megamenu:hover .menu-dropdown,
.menu-lv-item.has-megamenu:focus-within .menu-dropdown {
  opacity: 1;
  visibility: visible;
}

.disable-dropdown-animation .menu-dropdown {
  transition: none !important;
}


/* ------STYLING CODE FOR IMG OVERLAY TO CREATE DARKENED EFFECT ON IMAGE BANNERS ETC ON PAGES--------- */
.img-box::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.2); /* adjust opacity to suit brightness */
  z-index: 1;
  pointer-events: none;
}
.img-box img {
  position: relative;
  z-index: 0; /* ensure image stays underneath */
}
.content-box {
  position: relative;
  z-index: 2; /* ensure text appears above the overlay */
}







/* 🔒 Force wishlist icon to always be visible on all devices */
/*.card-wishlist .wishlist-icon {
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}*/

/* 🧼 Remove any hover-only styling or hiding */
/*.card-wishlist {
  opacity: 1 !important;
  visibility: visible !important;
}*/

/* 🧽 Optional: Remove animations or transitions if applied on hover */
/*.card-wishlist .wishlist-icon,
.card-wishlist .wishlist-icon svg {
  transition: none !important;
}*/


/* --------------------------- SITEMAP PAGE STYLING -----------------------------------------*/
/* Site map layout */

.productView-stickyCart.style-1.always-on-mobile {
  bottom: 0px !important;
}

SITEMAP CONTAINER

.productView-stickyCart.style-1.always-on-mobile {
  bottom: 0px !important;
}

SITEMAP CONTAINER
/* Ensures all links and text are black */
.sitemap-container a, 
.sitemap-container {
    color: #000 !important;
}

/* Adds padding to the right side of the container */
.sitemap-container {
    max-width: 100%; /* Prevents overflowing beyond the screen */
    padding-right: 20px; /* Adds space on the right */
}

/* Font size controls using CSS variables */
.sitemap-container {
    --level-1-size: 1.2rem;
    --level-2-size: 1rem;
    --level-3-size: 0.9rem;
}

/* Styling for level 1 links */
.sitemap-level-1 > li > a {
    font-size: var(--level-1-size);
    font-weight: 600;
}

/* Styling for level 2 links */
.sitemap-level-2 a {
    font-size: var(--level-2-size);
    display: block !important; /* Ensures each link starts on a new line */
}

/* Styling for level 3 links */
.sitemap-level-3 {
    display: flex;
    flex-wrap: wrap; /* Allows links to move to a new row when needed */
    gap: 15px; /* Adds spacing between links */
    max-width: 100%; /* Prevents links from overflowing past the container */
}

.sitemap-level-3 a {
    font-size: var(--level-3-size);
    display: block !important; /* Ensures each link starts on a new line */
    margin-bottom: 8px;
    padding-left: 10px;
    margin-left: 10px;
    max-width: 250px; /* Limits link width */
    overflow-wrap: break-word; /* Ensures long words wrap properly */
    word-wrap: break-word; /* Alternative for better browser support */
    white-space: normal; /* Allows natural line breaks */
}

/* Fixes potential conflicts with flexbox styles */
.sitemap-level-2 {
    display: block !important; /* Overrides flexbox layout */
}

/* Define text size controls */
.sitemap-container {
    --level-1-size: 2.205rem; /* Change this value to control Level 1 text */
    --level-2-size: 1.5rem; /* Change this value to control Level 2 text */
    --level-3-size: 1.2rem; /* Change this value to control Level 3 text */
}

/* Apply text size controls */
.sitemap-level-1 a {
    font-size: var(--level-1-size);
    font-weight: 600;
}

.sitemap-level-2 a {
    font-size: var(--level-2-size);
font-weight: 450;
}

.sitemap-level-3 a {
    font-size: var(--level-3-size);
}

/* Ensures all text and links are black */
.sitemap-container a, 
.sitemap-container {
    color: #000 !important;
}

/* Adds padding to the right side */
.sitemap-container {
    max-width: 100%; /* Prevents overflow */
    padding-right: 20px;
}

/* Allows wrapping to new lines when needed */
.sitemap-level-3 {
    display: flex;
    flex-wrap: wrap; /* Ensures extra lines for long groups */
    gap: 10px; /* Adds spacing between links */
    max-width: 100%; /* Keeps content inside the container */
}

/* Controls max width of individual links */
.sitemap-level-3 a {
    max-width: 250px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
}

.sitemap-level-3 a {
    font-family: "Gill Sans Nova", sans-serif;
    font-weight: 400; /* Medium weight */
  font-size: 14px; /* Sets the font size to 13px */
}

.sitemap-level-3 a:hover {
    background-color: #eeecea; /* Sets the background color on hover */
    transition: background-color 0.3s ease-in-out; /* Adds a smooth transition */
}



.sitemap-container {
    --level-3-spacing: 20px; /* Adjust this value */
}
@media (max-width: 768px) { /* Targets mobile devices */
    .sitemap-level-3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Creates two links per row */
        gap: 10px; /* Adds space between links */
    }

    .sitemap-level-3 a {
        text-align: center; /* Centers text inside each tab */
        padding: 10px; /* Adds space inside the links */
        display: block; /* Ensures proper alignment */
        border: 1px solid #ccc; /* Adds a tab-like border */
        background-color: #f5f5f5; /* Light background for tab effect */
    }
}

.sitemap-level-1 li {
    margin-bottom: 15px; /* Adds vertical spacing between items */
}

.sitemap-level-3:last-of-type {
    margin-bottom: 30px; /* Adjust spacing before the next .sitemap-level-1 */
}

.sitemap-level-2 {
    margin-top: 0px !important; /* Prevents extra space before .sitemap-level-2 */
}

.sitemap-level-3:last-of-type {
    margin-bottom: var(--level-3-to-2-spacing, 20px); /* Adjustable space */
}


/* Prevent unwanted spacing before .sitemap-level-2 */
.sitemap-level-2 {
    margin-top: 0px !important;
}



.sitemap-container {
    --level-3-spacing: 5px; /* Adjust this value */
}

.sitemap-container {
    --level-3-row-spacing: 5px; /* Adjust this to fine-tune row spacing */
}



.sitemap-level-3 a {
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px; /* Ensures exactly 5px space between wrapped rows */
    column-gap: 10px; /* Maintains horizontal spacing */
}


/*----------------------------- HEADER NAV MENU ITEMS STYLING---------------------------------*/
/* Style for top-level menu items */
.menu-lv-1__action {
  display: inline-block;
  padding: 8px 12px;
  line-height: 1;
  border-radius: 0;
  border: 1px solid transparent;           /* Prevent layout shift on hover */
  text-decoration: none;
  transition: background-color 0.1s ease, border-color 0.1s ease;
}

.menu-lv-1__action:hover {
  background-color: #ECECEC;               /* Very light grey */
  border-color: #ffffff;                   /* Subtle border on hover */
}




/* Kill underline animation inside level 1 menu item's span */
.menu-lv-1__action .text::before,
.menu-lv-1__action .text::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
  transition: none !important;
  animation: none !important;
  transform: none !important;
  border: none !important;
  box-shadow: none !important;
  position: static !important;
}


/* ===========================
   Fiveluxx – Link styling for FAQs & Policies
   Default: slightly bolder text; Hover: underline + grey bg
   =========================== */

:root {
  --policy-link-weight: 600;
  --policy-link-hover-bg: #f5f5f5; /* adjust if your theme gray differs */
}

/* Apply to any <a> inside .policy-content OR any <a> with .policy-link */
.policy-content a,
a.policy-link {
  font-weight: var(--policy-link-weight);
  text-decoration: none;
  text-underline-offset: 2px;
  text-decoration-thickness: from-font;
  transition: background-color .15s ease, text-decoration-color .15s ease, color .15s ease, opacity .15s ease;
}

/* Hover state */
.policy-content a:hover,
a.policy-link:hover {
  text-decoration: underline;
  background-color: var(--policy-link-hover-bg);
}

/* Keyboard accessibility */
.policy-content a:focus-visible,
a.policy-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  text-decoration: underline;
  background-color: var(--policy-link-hover-bg);
}

/* Active press feedback */
.policy-content a:active,
a.policy-link:active {
  opacity: 0.9;
}

/* Keep visited link color consistent with theme (optional) */
.policy-content a:visited,
a.policy-link:visited {
  color: inherit;
}

/* Optional: better balance in dark themes */
@media (prefers-color-scheme: dark) {
  .policy-content a:hover,
  a.policy-link:hover,
  .policy-content a:focus-visible,
  a.policy-link:focus-visible {
    background-color: rgba(255, 255, 255, 0.08);
  }
}

/* Do not override button-styled links */
.policy-content .button,
.policy-content .btn,
.policy-content button a {
  font-weight: inherit;
  text-decoration: none;
  background-color: initial;
}

/* ===========================
   Fiveluxx – Content link styling (TEXT LINKS ONLY)
   - Excludes ALL nav/header, ALL footers, dark sections, and product/media links
   =========================== */

/* Vars (reuse your policy defaults) */
:root {
  --content-link-weight: var(--policy-link-weight, 600);
  --content-link-hover-bg: var(--policy-link-hover-bg, #f5f5f5);
}

/* Base: target only text links in typical content areas */
:where(
  main,
  .main-content,
  .page-content,
  .container,
  .rte,
  .article,
  .productView,
  .cart,
  .customer,
  .policy-content
)
:is(p a, li a, dd a, dt a, blockquote a, .text a, .rte a, .policy-content a)

/* Strong exclusions: NAV + HEADER + FOOTER + BUTTONY LINKS + MEDIA/PRODUCT LINKS */
:not(
  /* NAV / HEADER (Ella + common) */
  .menu-lv-1__action,
  .menu-lv-item a,
  .site-nav a,
  .site-navigation a,
  .header a,
  .header-wrapper a,
  .header__menu a,
  .header__inline-menu a,
  .announcement-bar a,
  .mega-menu a,

  /* FOOTER (all known containers) */
  footer a,
  .site-footer a,
  .footer a,
  #footer a,

  /* Buttons / UI links */
  .button,
  .btn,
  [role="button"],
  .link--button,
  .no-underline,

  /* Size chips & product/media wrappers */
  .sizes-list a,
  .wrapper-item-size a,
  .card-media a,
  .product-item a,
  .product-card a,
  .card a,
  .grid-product__link,
  .product__media a,
  a.image-link,
  a:has(> img)
) {
  font-weight: var(--content-link-weight);
  text-decoration: none;
  text-underline-offset: 2px;
  text-decoration-thickness: from-font;
  transition:
    background-color .15s ease,
    text-decoration-color .15s ease,
    color .15s ease,
    opacity .15s ease;
}

/* Hover only where hover exists (prevents odd mobile “tap” effects) */
@media (hover: hover) {
  :where(
    main,
    .main-content,
    .page-content,
    .container,
    .rte,
    .article,
    .productView,
    .cart,
    .customer,
    .policy-content
  )
  :is(p a, li a, dd a, dt a, blockquote a, .text a, .rte a, .policy-content a)
  :not(
    .menu-lv-1__action,
    .menu-lv-item a,
    .site-nav a,
    .site-navigation a,
    .header a,
    .header-wrapper a,
    .header__menu a,
    .header__inline-menu a,
    .announcement-bar a,
    .mega-menu a,
    footer a,
    .site-footer a,
    .footer a,
    #footer a,
    .button,
    .btn,
    [role="button"],
    .link--button,
    .no-underline,
    .sizes-list a,
    .wrapper-item-size a,
    .card-media a,
    .product-item a,
    .product-card a,
    .card a,
    .grid-product__link,
    .product__media a,
    a.image-link,
    a:has(> img)
  ):hover {
    text-decoration: underline;
    background-color: var(--content-link-hover-bg);
  }
}

/* Focus-visible for accessibility */
:where(
  main,
  .main-content,
  .page-content,
  .container,
  .rte,
  .article,
  .productView,
  .cart,
  .customer,
  .policy-content
)
:is(p a, li a, dd a, dt a, blockquote a, .text a, .rte a, .policy-content a)
:not(
  .menu-lv-1__action,
  .menu-lv-item a,
  .site-nav a,
  .site-navigation a,
  .header a,
  .header-wrapper a,
  .header__menu a,
  .header__inline-menu a,
  .announcement-bar a,
  .mega-menu a,
  footer a,
  .site-footer a,
  .footer a,
  #footer a,
  .button,
  .btn,
  [role="button"],
  .link--button,
  .no-underline,
  .sizes-list a,
  .wrapper-item-size a,
  .card-media a,
  .product-item a,
  .product-card a,
  .card a,
  .grid-product__link,
  .product__media a,
  a.image-link,
  a:has(> img)
):focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  text-decoration: underline;
  background-color: var(--content-link-hover-bg);
}

/* Active + visited */
:where(
  main,
  .main-content,
  .page-content,
  .container,
  .rte,
  .article,
  .productView,
  .cart,
  .customer,
  .policy-content
)
:is(p a, li a, dd a, dt a, blockquote a, .text a, .rte a, .policy-content a)
:not(
  .menu-lv-1__action,
  .menu-lv-item a,
  .site-nav a,
  .site-navigation a,
  .header a,
  .header-wrapper a,
  .header__menu a,
  .header__inline-menu a,
  .announcement-bar a,
  .mega-menu a,
  footer a,
  .site-footer a,
  .footer a,
  #footer a,
  .button,
  .btn,
  [role="button"],
  .link--button,
  .no-underline,
  .sizes-list a,
  .wrapper-item-size a,
  .card-media a,
  .product-item a,
  .product-card a,
  .card a,
  .grid-product__link,
  .product__media a,
  a.image-link,
  a:has(> img)
):active { opacity: 0.9; }

:where(
  main,
  .main-content,
  .page-content,
  .container,
  .rte,
  .article,
  .productView,
  .cart,
  .customer,
  .policy-content
)
:is(p a, li a, dd a, dt a, blockquote a, .text a, .rte a, .policy-content a)
:not(
  .menu-lv-1__action,
  .menu-lv-item a,
  .site-nav a,
  .site-navigation a,
  .header a,
  .header-wrapper a,
  .header__menu a,
  .header__inline-menu a,
  .announcement-bar a,
  .mega-menu a,
  footer a,
  .site-footer a,
  .footer a,
  #footer a,
  .button,
  .btn,
  [role="button"],
  .link--button,
  .no-underline,
  .sizes-list a,
  .wrapper-item-size a,
  .card-media a,
  .product-item a,
  .product-card a,
  .card a,
  .grid-product__link,
  .product__media a,
  a.image-link,
  a:has(> img)
):visited { color: inherit; }
