/** Shopify CDN: Minification failed

Line 8:28 Unexpected "<"
Line 47:0 Unexpected "<"
Line 198:24 Expected identifier but found "3"

**/
<!-- paste this just before </head> in theme.liquid -->
<style>
/* ---------- FORCE header menu link styles ---------- */

/* Generic pattern for AI-generated classes */
a[class^="ai-custom-header-nav-link-"],
a[class*=" ai-custom-header-nav-link-"] {
  color: #000000 !important;         /* black by default */
  opacity: 1 !important;             /* cancel dimming */
  transition: color .18s ease, transform .18s ease !important;
  display: inline-block;             /* prevents layout jump when scaling */
  will-change: transform, color;
  -webkit-font-smoothing: antialiased;
}

/* If you know the exact class from your markup (example below), include it for maximum specificity.
   Replace the long class name with the one you have in your HTML if different. */
.ai-custom-header-nav-link-akzhhs212ahbdyjmzyaigenblock995ebc8pcafhf {
  color: #000000 !important;
  opacity: 1 !important;
}

/* Hover/focus effects only on hover-capable devices (prevents touch weirdness) */
@media (hover: hover) {
  a[class^="ai-custom-header-nav-link-"]:hover,
  a[class*=" ai-custom-header-nav-link-"]:hover,
  a[class^="ai-custom-header-nav-link-"]:focus,
  a[class*=" ai-custom-header-nav-link-"]:focus {
    color: #800032 !important;        /* wine brown on hover */
    transform: scale(1.05) !important;/* slight magnify */
    text-decoration: none !important;
  }
}

/* If theme reduces parent's opacity, ensure links stay visible */
.header a[class^="ai-custom-header-nav-link-"],
.header a[class*=" ai-custom-header-nav-link-"] {
  opacity: 1 !important;
}
</style>
/* Force menu links to always be solid black by default */
.menu-list__link {
  color: #000 !important;       /* black text */
  opacity: 1 !important;        /* cancel out the subdued opacity */
  transition: color 0.25s ease, transform 0.25s ease !important;
}

/* On hover/focus/active state → wine brown + scale */
@media (hover: hover) {
  .menu-list__link:hover,
  .menu-list__link:focus,
  .menu-list__link[aria-current="page"] {
    color: #800032 !important;  /* wine brown */
    transform: scale(1.05) !important; /* magnify slightly */
  }
}
/* Default state: solid black, no opacity dimming */
.menu-list__link {
  color: #000 !important;           /* clean black */
  opacity: 1 !important;            /* remove any grayish dimming */
  transform: scale(1);
  transition: 
    color 0.3s ease, 
    transform 0.25s ease;           /* smooth hover effect */
  will-change: color, transform;
}

/* Active menu item (current page) → wine brown */
.menu-list__link[aria-current="page"],
.menu-list__link.menu-list__link--active {
  color: #800032 !important;        /* wine brown */
  font-weight: 600;                 /* optional: makes it stand out */
}

/* Hover / focus → wine brown + scale up slightly */
@media (hover: hover) {
  .menu-list__link:hover,
  .menu-list__link:focus {
    color: #800032 !important;
    transform: scale(1.05);
  }
}
.site-nav__item a,
.site-nav__item a:visited {
  color: #830002; /* your brownish brand color */
  transition: color 0.3s ease, transform 0.3s ease;
  text-shadow: none !important;
  opacity: 1 !important;
}

.site-nav__item a:hover {
  color: #830002; /* lighter brown highlight */
  transform: scale(1.05);
  text-shadow: none !important;
  opacity: 1 !important;
}

.site-nav__item a.active {
  color: #800032 !important; /* same brown when active */
  font-weight: 600;
  text-shadow: none !important;
  opacity: 1 !important;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 45px;
  height: 45px;
  display: block;
}
  
.whatsapp-float:hover {
  transform: scale(1.1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* adjusts for sticky header */
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1); /* elegant slow finish */
}
/* --- Smooth Highlight Section Animation --- */
.highlight-section {
  transition:
    transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 1.2s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.6s ease-in-out;
  will-change: transform, box-shadow, opacity;
}

.highlight-section.active-highlight {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.25),
              0 0 100px rgba(255, 255, 255, 0.2);
  opacity: 1;
  z-index: 3;
}

.highlight-section:not(.active-highlight) {
  opacity: 0.9;
}
.highlight-section {
  opacity: 0;
}
.highlight-section.active-highlight {
  opacity: 1;
}

/* 💎 Minimalist Sale Badge */
.product-badges__badge--rectangle.color-sale,
.product-badges__badge--rectangle {
  background-color: #ffffff !important;
  color: #800002 !important;
  border: 1px solid rgba(128, 0, 2, 0.4) !important; /* Softer maroon outline */
  border-radius: 9999px !important; /* Fully rounded for pill look */
  font-weight: 500 !important;
  font-size: 12px !important;
  letter-spacing: 0.5px;
  padding: 4px 12px !important;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Hover — soft inverse */
.product-badges__badge--rectangle:hover {
  background-color: #800002 !important;
  color: #ffffff !important;
  border-color: #800002 !important;
  box-shadow: 0 2px 8px rgba(128, 0, 2, 0.15);
  transform: translateY(-1px);
}

/* 💎 Raani Hover Add to Cart Button */
.quick-add__button--add {
  background-color: #ffffff !important;
  color: #800002 !important;
  border: 1px solid rgba(128, 0, 2, 0.4) !important;
  border-radius: 9999px !important;
  font-weight: 00 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;3
  padding: 8px 18px !important;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* 👇 Control vertical spacing (adjust as you like) */
  margin-bottom: 18px !important; /* Try 12px–24px range */
}

/* Hover — deep ma*
/* 🎯 Adjust Add to Cart button spacing only for laptop screens */
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .quick-add__button--add {
    margin-bottom: 5px !important; /* Move slightly lower */
  }
}
/* 🟣 Only affects the hidden drawer (slide-in) menu */
.header__drawer--mobile .menu-list__item,
.header__drawer--mobile a {
  font-size: 20px !important; /* adjust to what looks good */
  font-weight: 600; /* optional */
  letter-spacing: 0.5px; /* optional */
  text-transform: none; /* optional */
}

/* Add subtle line spacing & padding */
.header__drawer--mobile li {
  margin-bottom: 0px;
}

/* Optional: control link hover or focus */
.header__drawer--mobile a:hover {
  opacity: 0.8;
}
/* --- MODERN POPUP STYLE MENU (HORIZON THEME) --- */
.menu-drawer-container {
  position: relative;
  z-index: 9999; /* keeps everything on top */
}

/* Main menu pop-up panel */
.menu-drawer {
  position: fixed;
  top: 70px; /* adjust to match your header height */
  right: 20px;
  width: 300px;
  max-width: 90%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

/* When active/open (theme adds 'menu-opening' class) */
.menu-drawer.menu-opening {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

/* Hide the default fullscreen backdrop look */
.menu-drawer__backdrop {
  background: hsla(0, 0.00%, 0.00%, 0.08);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.menu-drawer__backdrop[open],
.menu-drawer-container[open] .menu-drawer__backdrop {
  opacity: 1;
}

/* Make sure the hamburger icon always stays visible */
.header__icon--menu {
  position: relative;
  z-index: 10000 !important;
}

/* Optional: smaller link text to fit popup aesthetic */
.menu-drawer__menu-item-text {
  font-size: 1.0rem;
  letter-spacing: 0.5px;
}
/* Make the popup drawer itself semi-transparent */
.menu-drawer {
  background: #ffffff; /* solid white background */
  backdrop-filter: none; /* remove blur inside drawer */

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}
/* Keep hamburger static but keep the popup close icon */
.header__icon--menu .header-drawer-icon--close {
  display: none !important; /* hide only the header icon cross */
}

.menu-drawer .header-drawer-icon--close {
  display: inline-flex !important; /* keep the one inside menu visible */
}

.ai-footer-center-amlrjt09hrdnty0cwvaigenblocke464f92rirewu {
  display: flex;
  flex-direction: column; /* Stack logo above payment icons */
  align-items: center;    /* Center horizontally */
  justify-content: center;
  text-align: center;
  gap: 10px; /* Space between logo and icons */
}

.ai-footer-logo-amlrjt09hrdnty0cwvaigenblocke464f92rirewu {
  display: block;
  margin: 0 auto;
}

.ai-footer-payment-icons-amlrjt09hrdnty0cwvaigenblocke464f92rirewu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Remove spacing between mobile menu items (Horizont theme) */
.header__drawer--mobile li,
.header__drawer--mobile .menu-list__item,
.header__drawer--mobile a {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.3 !important; /* keeps readable but tight */
}

/* Optional: tighten the overall list container */
.header__drawer--mobile .menu-list {
  gap: 0 !important;
  padding: 0 !important;
}

/* Ultra-tight spacing for hidden drawer menu items */
.header__drawer--mobile li,
.header__drawer--mobile .menu-list__item,
.header__drawer--mobile a {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.1 !important; /* tighter than before */
}

/* Target Shopify's built-in vertical spacing container */
.header__drawer--mobile .menu-list,
.header__drawer--mobile .menu-list__item + .menu-list__item {
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}

/* Optional: control inner link height precisely */
.header__drawer--mobile .menu-list__item a {
  display: block;
  padding: 2px 0 !important; /* reduce vertical padding */
}

/* === POPUP OVERLAY === */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* === POPUP CONTAINER === */
.popup-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  background: transparent; /* remove solid white */
  backdrop-filter: blur(4px);
  border-radius: 14px;
  overflow: hidden;
  max-width: 720px;
  width: 92%;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  position: relative;
  animation: popupFade 0.4s ease;
}

/* === IMAGE ON LEFT === */
.popup-image {
  flex: 1;
  max-width: 45%;
  overflow: hidden;
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* === CONTENT ON RIGHT === */
.popup-content {
  flex: 1;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.popup-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #000;
}

.popup-text {
  font-size: 1rem;
  color: #000;
  margin-bottom: 1rem;
}

.popup-btn {
  background: #800002;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  border-radius: 6px;
  font-size: 0.95rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.popup-btn:hover {
  background: #000;
}

/* === CLOSE ICON === */
.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 20px;
  color: #000;
  cursor: pointer;
}

/* === ANIMATION === */
@keyframes popupFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* === MOBILE VIEW (STILL SIDE-BY-SIDE) === */
@media (max-width: 700px) {
  .popup-inner {
    flex-direction: row;
    max-width: 90%;
    width: 90%;
  }

  .popup-image {
    max-width: 45%;
  }

  .popup-content {
    padding: 1.2rem;
  }

  .popup-title {
    font-size: 1.2rem;
  }

  .popup-text {
    font-size: 0.9rem;
  }

  .popup-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }
}

/* === POPUP OVERLAY === */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3px); /* <— strong blur */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0; /* start hidden */
  transition: opacity 0.6s ease; /* fade-in/out */
}

/* When showing */
.popup-overlay.show {
  display: flex;
  opacity: 1;
}

/* === POPUP CONTAINER === */
.popup-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  background: #fff; /* pure white */
  border-radius: 14px;
  overflow: hidden;
  max-width: 720px;
  width: 92%;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  position: relative;
  transform: translateY(0);
}

/* === SIMPLE FADE-IN ONLY (NO FADE-OUT OR SLIDE) === */
.popup-image,
.popup-content {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* Fade in when popup appears */
.popup-overlay.show .popup-image,
.popup-overlay.show .popup-content {
  opacity: 1;
}

/* Instantly hide when closing */
.popup-overlay.closing .popup-image,
.popup-overlay.closing .popup-content {
  opacity: 0;
  transition: none;
}

/* --- Fix close button not clickable --- */
.popup-close {
  position: absolute !important;
  top: 12px !important;
  right: 16px !important;
  font-size: 26px !important;
  color: #000 !important;
  cursor: pointer !important;
  z-index: 2147483647 !important; /* 👈 top of the universe */
  pointer-events: auto !important;
}
.popup-overlay,
.popup-inner,
.popup-content {
  pointer-events: auto;
}
.swym-modal,
.swym-overlay,
.swym-popup {
  pointer-events: none !important;
}
.popup-text {
  letter-spacing: -0.3px; /* tighten just enough for a clean, minimal feel */
}
.popup-btn {
  padding: 0.5rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 4px;
}
.popup-btn {
  font-weight: 700; /* makes it bold */
}
.popup-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.6rem;
  
}
/* === MOBILE FIX: KEEP HORIZONTAL, PREVENT CROSS OVERLAP === */
@media (max-width: 700px) {
  .popup-inner {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    max-width: 95%;
    width: 95%;
  }

  .popup-image {
    max-width: 45%;
  }

  .popup-content {
    padding: 1.2rem 1.2rem 1.5rem 1.2rem;
    position: relative;
  }

  /* move the cross slightly higher and outside text area */
  .popup-close {
    top: 4px !important;
    right: 15px !important;
    font-size: 22px !important;
    z-index: 1000 !important;
  }

  /* push text down slightly so it doesn’t clash with cross */
  .popup-title {
    margin-top: 1.6rem;
    font-size: 1.2rem;
  }

  .popup-text {
    font-size: 0.9rem;
  }

  .popup-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1.1rem;
  }
}


/* === FIX: Disable hover scale transitions on mobile to stop flicker === */
@media (max-width: 768px) {
  .product-card,
  .collection-card,
  .resource-card {
    transform: none !important;
    transition: none !important;
    box-shadow: none !important;
  }

  .product-card:hover,
  .collection-card:hover,
  .resource-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  /* optional: add padding for mobile view bottom */
  .collection-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/* Reduce Shopify Inbox chat icon size */
.shopify-chat__bubble,
button[data-testid="chat-bubble-button"] {
  transform: scale(0.2); /* smaller icon */
  transform-origin: bottom right; /* keep position aligned */
}

/* Optional: adjust position if needed */
.shopify-chat__bubble {
  bottom: 10px !important;
  right: 10px !important;
}
