/** Shopify CDN: Minification failed

Line 335:0 Expected "}" to go with "{"

**/
/**
 * Sticky Add to Cart Button Styles
 * Matches page theme styling
 */

.sticky-add-to-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 550; /* Above header (500) but below popups (1300) */
  background-color: var(--color-background, #ffffff);
  border-top: 1px solid var(--color-border, #e5e5e5);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.2s ease-out;
  pointer-events: none;
  opacity: 0;
}

.sticky-add-to-cart.is-visible {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}

.sticky-add-to-cart__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 20px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: nowrap;
  overflow: hidden;
}

/* Thumbnail */
.sticky-add-to-cart__thumbnail {
  display: block;
  flex-shrink: 0;
  min-width: 60px;
  width: 60px;
  order: 1;
}

.sticky-add-to-cart__thumbnail img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* Variants and Options Display - Button styling */
.sticky-add-to-cart__variants,
.sticky-add-to-cart__selector-btn--options {
  order: 2;
}

/* Shared button style for variant and options selectors */
.sticky-add-to-cart__selector-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: var(--font-size-body-100, 14px);
  line-height: 1.4;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 500;
  font-size: var(--font-size-body-50);
  color: var(--color-text, #1a1a1a);
  background-color: var(--color-background, #ffffff);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 100px;
  max-width: 180px;
}

.sticky-add-to-cart__selector-btn:hover {
  border-color: var(--color-text, #1a1a1a);
  background-color: var(--color-background-secondary, #f5f5f5);
}

.sticky-add-to-cart__selector-btn:active {
  transform: scale(0.98);
}

.sticky-add-to-cart__selector-btn--options { order: 3; }

.sticky-add-to-cart__selector-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-add-to-placeholder {
  color: var(--color-text-secondary, #666666);
}

/* Mobile adjustments */
@media (max-width: 719px) {
  .sticky-add-to-cart__selector-btn {
    font-size: var(--font-size-body-75, 13px);
    padding: 6px 12px;
    min-width: 90px;
    max-width: 140px;
  }
}

/* Actions: Price and Button */
.sticky-add-to-cart__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 200px;
  order: 4;
}

.sticky-add-to-cart__price {
  font-size: var(--font-size-body-100, 14px);
  line-height: var(--line-height-body, 1.5);
  font-family: var(--font-body);
  color: var(--color-text, #1a1a1a);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 70px;
  font-weight: 500;
}

/* 
 * Add-to-Cart Button Styles
 * Inherits .btn.btn--primary from theme (with ::before/::after pseudo-elements)
 * Only override sizing and specific behaviors
 */
.sticky-add-to-cart__button {
  flex-shrink: 0;
  white-space: normal !important;
  min-width: 140px;
  max-width: 200px;
  overflow: hidden; /* Hide skewed ::before edges */
  border-radius: 4px;
  /* Theme handles background via ::before and ::after pseudo-elements */
}

.sticky-add-to-cart__button::before {
  width: 160% !important;
  left: -15px !important;
  border-radius: 4px;
}

.sticky-add-to-cart__button::after {
  border-radius: 4px;
}

/* Text content in button */
.sticky-add-to-cart__button [data-sticky-button-text] {
  white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
  display: inline-block;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

/* Icon container */
.sticky-add-to-cart__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.sticky-add-to-cart__button-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

/* Icon-only mode: compact button with just cart icon */
.sticky-add-to-cart__button.icon-only {
  min-width: 48px !important;
  max-width: 48px !important;
  padding: 12px !important;
  /* Theme's ::before/::after handle the background */
}

.sticky-add-to-cart__button.icon-only .sticky-add-to-cart__button-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-text-button, #ffffff);
  fill: none;
}

/* Button states */
.sticky-add-to-cart__button:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
}

.sticky-add-to-cart__button:active:not(:disabled) {
  transform: translateY(0);
}

.sticky-add-to-cart__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.sticky-add-to-cart__button.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Mobile Optimizations */
@media (max-width: 719px) {
  .sticky-add-to-cart__inner {
    padding: 10px 12px;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }

  .sticky-add-to-cart__selector-btn {
    font-size: var(--font-size-body-75, 13px);
    padding: 6px 12px;
    min-width: 90px;
    max-width: 140px;
  }

  .sticky-add-to-cart__variants { display: none; }

  .sticky-add-to-cart__price {
    font-size: var(--font-size-body-75, 13px);
    min-width: 50px;
  }

  .sticky-add-to-cart__button {
    min-width: 140px;
    max-width: 180px;
    flex-shrink: 0;
  }

  .sticky-add-to-cart__actions {
    gap: 10px;
    flex-shrink: 0;
    min-width: 180px;
  }
}

/* Very small screens - Hide options */
@media (max-width: 480px) {
  .sticky-add-to-cart__inner {
    padding: 8px 12px;
    gap: 8px;
  }


  .sticky-add-to-cart__options {
    display: none;
  }

  .sticky-add-to-cart__price {
    font-size: var(--font-size-body-75, 13px);
  }

  .sticky-add-to-cart__button {
    min-width: 120px;
  }

  .sticky-add-to-cart__actions {
    gap: 8px;
  }
}

/* Extra small screens - Hide variants */
@media (max-width: 400px) {
  .sticky-add-to-cart__variants {
    display: none;
}
 
 /* Ultra small screens - Hide thumbnail */
@media (max-width: 360px) {
  .sticky-add-to-cart__thumbnail {
    display: none !important;
  }
}

/* States */
.sticky-add-to-cart:not(.has-variants) .sticky-add-to-cart__variant-text {
  display: none;
}

.sticky-add-to-cart.has-variants .sticky-add-to-cart__placeholder {
  display: none;
}

.sticky-add-to-cart:not(.has-options) .sticky-add-to-cart__options {
  display: none;
}

/* Ensure sticky bar doesn't overlap footer or other elements */
body:has(.sticky-add-to-cart.is-visible) {
  padding-bottom: 0; /* Adjust if needed based on sticky bar height */
}

/* Accessibility */
.sticky-add-to-cart[aria-hidden="true"] {
  visibility: hidden;
}

.sticky-add-to-cart[aria-hidden="false"] {
  visibility: visible;
}

