/** Shopify CDN: Minification failed

Line 418:53 Expected ":"
Line 418:75 Expected ":"
Line 420:1 Expected "{" but found end of file

**/
/* ============================================================================
  LUSH THEME GLOBAL STYLES
  Custom styles added for exactly matching the Lush reference design.
============================================================================== */

:root {
  /* Maison Kitsuné Cream Palette */
  --lush-color-text-dark: #111111;
  --lush-color-text-light: #666666;
  --lush-color-accent: #111111;
  --lush-color-badge-bg: #111111;
  --lush-color-badge-text: #ffffff;
  --lush-color-bg-light: #ffffff;
  --lush-color-bg-cream: #f0ebe3;

  /* Promo Grid Backgrounds - Warm Neutrals */
  --lush-promo-blue: #eae5de;
  --lush-promo-peach: #e8e3dc;
  --lush-promo-yellow: #f0ebe3;
  --lush-promo-pink: #ede8e1;

  /* Global Typography - Neue Haas Grotesk */
  --lush-font-heading: "Neue Haas Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --lush-font-body: "Neue Haas Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Base resets for Lush elements */
.lush-section {
  padding: 60px 0;
}

h1.lush-heading,
h2.lush-heading,
h3.lush-heading {
  font-family: var(--lush-font-heading);
  color: var(--lush-color-text-dark);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.lush-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lush-button:hover {
  background-color: var(--lush-color-text-dark);
  color: #fff;
}

/* ============================================================================
  LUSH PRODUCT CARD — Maison Kitsuné Style
============================================================================== */
.lush-product-card {
  position: relative;
  text-align: left;
  margin-bottom: 0;
  transition: all 0.3s ease;
  background: #ffffff;
}

.lush-product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--lush-color-bg-cream);
  padding: 0;
}

.lush-product-card__image-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.lush-product-card__image {
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* Premium Hover Implementations */
.lush-product-card__image.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* Default Zoom Hover if NO second image */
.lush-product-card:hover .lush-product-card__image {
  transform: scale(1.05);
}

/* If there's a second image, crossfade it in instead of zooming the first */
.lush-product-card:hover .lush-product-card__image.main-image.has-hover {
  opacity: 0;
}

.lush-product-card:hover .lush-product-card__image.hover-image {
  opacity: 1;
  transform: scale(1.05);
}

/* Custom Rectangular Monochrome Badge */
.lush-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lush-product-card__badge span.percent {
  margin-left: 4px;
}

/* Hover Action Icons */
.lush-product-card__actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 3;
}

.lush-product-card:hover .lush-product-card__actions {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 990px) {

  /* Disable product action grid on touch/mobile logic */
  .lush-product-card__actions {
    display: none !important;
  }
}

.lush-product-card__action-btn {
  background: #ffffff;
  border: none;
  color: var(--lush-color-text-dark);
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lush-product-card__action-btn svg {
  width: 18px;
  height: 18px;
}

.lush-product-card__action-btn:hover {
  background: var(--lush-color-text-dark);
  color: #ffffff;
}

/* Info Section */
.lush-product-card__info {
  padding: 10px 12px 16px 12px;
  text-align: left;
}

.lush-product-card__vendor {
  font-size: 10px;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
  display: block;
  font-weight: 400;
}

.lush-product-card__title {
  font-family: var(--lush-font-heading);
  font-size: 11px;
  font-weight: 400;
  color: #111;
  margin: 0 0 6px 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.4;
}

.lush-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.lush-product-card__prices {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.lush-product-card__price-sale {
  font-size: 13px;
  font-weight: 400;
  color: var(--lush-color-text-dark);
}

.lush-product-card__price-regular {
  font-size: 14px;
  color: var(--lush-color-text-light);
  text-decoration: line-through;
}

/* Star Rating */
.lush-product-card__rating {
  color: var(--lush-color-text-light);
  font-size: 14px;
}

.lush-product-card__rating .filled {
  color: var(--lush-color-text-dark);
}

/* Arrow Navigation Buttons (used in sliders) */
.lush-nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--lush-color-text-dark);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--lush-color-text-dark);
}

.lush-nav-arrow:hover {
  background: var(--lush-color-accent);
  border-color: var(--lush-color-accent);
  color: white;
}

.lush-nav-arrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Back to top/Fixed arrow override for Lush */
.lush-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--lush-color-accent);
  color: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .lush-scroll-top {
    display: none !important;
    /* Hide back-to-top so it doesn't overlap Bottom Nav on mobile */
  }
}

/* ==========================================================
   Mobile Bottom Navigation (App Style)
   ========================================================== */
.lush-mobile-bottom-nav {
  display: none;
  /* Hide on desktop by default */
}

@media screen and (max-width: 767px) {

  /* Show only on phone screens */
  .lush-mobile-bottom-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(var(--color-background));
    border-top: 1px solid rgba(var(--color-foreground), 0.1);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    /* Soft shadow above */
    z-index: 9999;
    /* Always on top */
    padding-bottom: env(safe-area-inset-bottom);
    /* iOS safe area spacing */
    backdrop-filter: blur(10px);
    /* Frosted glass effect if bg is slightly transparent */
  }

  /* Must add bottom padding to body so content isn't hidden behind the nav bar */
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom)) !important;
  }

  .lush-mobile-bottom-nav__list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    height: 60px;
  }

  .lush-mobile-bottom-nav__item {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .lush-mobile-bottom-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(var(--color-foreground), 0.6);
    /* Dim inactive items */
    transition: color 0.2s ease;
    gap: 4px;
    /* Space between icon and text */
  }

  /* Active State Styling */
  .lush-mobile-bottom-nav__link.is-active,
  .lush-mobile-bottom-nav__link:hover,
  .lush-mobile-bottom-nav__link:active {
    color: rgb(var(--color-foreground));
    /* Full brightness for active */
  }

  .lush-mobile-bottom-nav__link.is-active svg {
    stroke-width: 2.2;
    /* Slightly bolder icon when active */
  }

  .lush-mobile-bottom-nav__label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Cart Badge in Bottom Nav */
  .lush-mobile-bottom-nav__badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background-color: var(--lush-color-accent);
    /* E.g., red or brand color */
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid rgb(var(--color-background));
  }
}. l u s h - p r o d u c t - c a r d _ _ f o r m   {   m a r g i n :   0 ;   }  
 