/** Shopify CDN: Minification failed

Line 31:10 Expected identifier but found whitespace
Line 31:12 Unexpected "{"
Line 31:21 Expected ":"
Line 31:40 Unexpected "0"
Line 31:43 Unexpected "{"
Line 31:52 Expected ":"
Line 31:70 Expected ":"

**/
/* Define CSS custom properties for consistent styling */
:root {
  --animation-duration: 0.4s;
  --animation-easing: cubic-bezier(0.4, 0, 0.2, 1);
  --button-hover-scale: 1.05;
  --gradient-bg: rgb(var(--color-background));
  --border-radius: 8px;
  --shadow-color: rgba(0, 0, 0, 0.15);
  --divider-color: rgba(0, 0, 0, 0.1);
}

/* Main sticky ATC container - Hidden by default */
#md-sticky-atc {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: {{ section.settings.pt }}rem 0 {{ section.settings.pb }}rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%) scale(0.98);
  transition: opacity var(--animation-duration) var(--animation-easing),
              transform var(--animation-duration) var(--animation-easing),
              box-shadow 0.3s var(--animation-easing);
  background: var(--gradient-bg);
  /* box-shadow: 0 4px 16px var(--shadow-color); */
  will-change: transform, opacity, box-shadow;
}

/* Only show on mobile */
@media (max-width: 550px) {
  #md-sticky-atc {
    display: block;
  }
}

#md-sticky-atc.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  aria-hidden: false;
  /* box-shadow: 0 6px 20px var(--shadow-color); */
  padding-bottom: 10px;
  border-bottom: 1px solid #8c868982;
}

.sticky-atc-button.button--disabled:disabled {
    background-color: #000000; /* Black background for disabled state */
    color: #ffffff; /* White text for disabled state */
    cursor: not-allowed; /* Show "not-allowed" cursor */
    opacity: 0.7; /* Slightly transparent */
    transition: opacity 0.5s ease-in-out, background-color 0.5s ease-in-out !important;
}

.sticky-atc-button.fade-out:disabled {
    opacity: 0.3; /* Make the button fade out when disabled */
}



/* Mobile-first grid layout */
#md-sticky-atc .page-width-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 0.5rem;
  align-items: center;
}

/* Product image container styles */
.sticky-product-image-container {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.sticky-product-image {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

/* Responsive image handling */
.mobile-only {
  display: block;
}
.desktop-only {
  display: none;
}

@media (min-width: 400px) {
  .mobile-only {
    display: none;
  }
  .desktop-only {
    display: block;
  }
  .sticky-product-image {
    max-height: 80px;
  }
}

/* Close button positioning */
.sticky-atc-close {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  background-color: transparent;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display:none;
}

.top-link-container {
  text-align: center;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #8c868982;
}

.top-center-link {
  color: inherit;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
}

/* Price section */
#md-sticky-atc .product-content {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#md-sticky-atc .product-content .price    {
  font-size: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity var(--animation-duration) var(--animation-easing),
              transform var(--animation-duration) var(--animation-easing);
      padding-top: 4px;
      padding-bottom: 0px;
}

#md-sticky-atc .product-content .price-item    {
  font-size: 14px;
   
}

#md-sticky-atc .product-content .price-item--sale    {
  font-size: 14px;
  color: #BB7A7E;
}

#md-sticky-atc.show .product-content .price {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.15s;
}

/* Quantity selector section */
#md-sticky-atc .quantity-selector-container {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#md-sticky-atc .quantity {
  display: flex;
  align-items: center;
}
#md-sticky-atc .quantity:after {
  box-shadow:none;
}

#md-sticky-atc .quantity__input {
  font-size: 1.2rem;
  width: 37px;
  padding: 1.3rem;
  border: 1px solid #ccc;
  border-radius: none;
  text-align: center;
  flex: none;
}

#md-sticky-atc .quantity__button {
  padding: 0.5rem;
  background: #f5f5f5;
  border-radius: none;
  cursor: pointer;
  min-width: 36px;
}

/* ATC and wishlist section */
#md-sticky-atc .product-form-container {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
  margin-top: 0.5rem;
}

/* Sticky ATC button */
#md-sticky-atc .sticky-atc-button {
  width: 100%;
  height:40px;
  padding: 0.75rem 1rem;
  border-radius: none;
  transition: opacity var(--animation-duration) var(--animation-easing),
              transform var(--animation-duration) var(--animation-easing),
              scale 0.2s var(--animation-easing);
  transform: translateY(20px);
  /* opacity: 0; */
  font-size: 0.9rem;
}

#md-sticky-atc.show .sticky-atc-button {
  transform: translateY(0);
  /* opacity: 1; */
  transition-delay: 0.2s;
}

/* Wishlist button styling */
#md-sticky-atc button.swym-button.swym-add-to-wishlist-view-product{
    position: relative !important;
    font-size: 20px !important;
    box-shadow: unset !important;
    right: 0% !important;
    color: #000 !important;
}
#md-sticky-atc .swym-add-to-wishlist-view-product:after {
      color: #000 !important;
}
#md-sticky-atc .swym-button {
  background: transparent !important;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}
#md-sticky-atc  .swym-btn-container[data-position=default] .swym-add-to-wishlist.swym-icontext:after {
  color: #000000;
  font-size: 15px;
  width: 40px;
}

/* Divider line between ATC and navigation */
#md-sticky-atc .divider-line {
  grid-column: 1;
  grid-row: 4;
  width: 100%;
  height: 1px;
  background-color: var(--divider-color);
  margin: 0.5rem 0;
}

/* Sticky navigation bar */
#sticky-navigation-bar {
  position: fixed;
  top: calc({{ section.settings.pt }}rem + {{ section.settings.pb }}rem + 118px);
  left: 0;
  width: 100%;
  background: var(--gradient-bg);
  box-shadow: 0 2px 8px var(--shadow-color);
  z-index: 98;
  padding: 0.5rem 0;
  transform: translateY(-100%);
  opacity: 0;
  transition: opacity var(--animation-duration) var(--animation-easing),
              transform var(--animation-duration) var(--animation-easing);
}

#md-sticky-atc.show + #sticky-navigation-bar {
  transform: translateY(0);
  opacity: 1;
}

#sticky-navigation-bar .nav-links {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

#sticky-navigation-bar .nav-links a {
  color: #3F3D3E;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s ease, opacity 0.2s ease;
  font-size: 14px;
  font-family: 'Gotham';
}

#sticky-navigation-bar .nav-links a.active {
  color: #3F3D3E;
  font-weight: 400;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  #md-sticky-atc,
  #md-sticky-atc .product-content .price,
  #md-sticky-atc .sticky-atc-button,
  #sticky-navigation-bar {
    transition: none;
    transform: none;
    /* opacity: 1; */
  }
}

/* Hide completely on larger screens */
@media (min-width: 551px) {
  #md-sticky-atc,
  #sticky-navigation-bar {
    display: none !important;
  }
}

 
 