/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 12:1 Expected identifier but found "%"
Line 169:0 Unexpected "}"

**/
{% comment %}
  Enhanced Button Animations and Hover Effects
  Following Shopify theme development best practices
{% endcomment %}

/* Button Animation Variables */
:root {
  --button-hover-scale: 1.05;
  --button-active-scale: 0.95;
  --button-shadow-hover: 0 8px 25px rgba(var(--color-shadow), 0.15);
  --button-shadow-active: 0 4px 15px rgba(var(--color-shadow), 0.1);
  --button-transition-smooth: all var(--duration-default) cubic-bezier(0.4, 0, 0.2, 1);
  --button-transition-bounce: all var(--duration-medium) cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Color inversion variables for better control */
  --button-hover-bg-opacity: 0.9;
  --button-hover-text-opacity: 1;
}

/* Enhanced Button Base Styles - Hero Section Inspired */
.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded {
  /* Hero Section Button Styling */
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transform-origin: center;
  will-change: transform, box-shadow, background-color, color;

  /* Enhanced transitions for smooth animations */
  transition: var(--button-transition-smooth);

  /* Color inversion hover state */
  &:hover:not([disabled]):not(.disabled) {
    /* Scale and lift effect */
    transform: translateY(-2px) scale(var(--button-hover-scale));
    box-shadow: var(--button-shadow-hover);

    /* Color inversion: text becomes white, background becomes text color */
    color: #ffffff !important;
    background-color: rgba(var(--color-button-text), var(--alpha-button-background));
  }

  /* Active state for tactile feedback */
  &:active:not([disabled]):not(.disabled) {
    transform: translateY(0) scale(var(--button-active-scale));
    box-shadow: var(--button-shadow-active);
    transition-duration: var(--duration-short);

    /* Maintain white text on active */
    color: #ffffff !important;
    background-color: rgba(var(--color-button-text), calc(var(--alpha-button-background) + 0.1));
  }

  /* Focus state improvements */
  &:focus-visible {
    transform: translateY(-1px) scale(var(--button-hover-scale));
    box-shadow:
      0 0 0 0.3rem rgb(var(--color-background)),
      0 0 0 0.5rem rgba(var(--color-foreground), 0.5),
      var(--button-shadow-hover);

    /* White text on focus */
    color: #ffffff !important;
    background-color: rgba(var(--color-button-text), var(--alpha-button-background));
  }
}

/* Primary Button Enhancements - Hero Section Style with Better Readability */
.button--primary {
  /* Hero Section Primary Button Styling with CYAN accent */
  background: linear-gradient(135deg, #0cf6e1 0%, #00d4aa 100%);
  color: #000000;
  box-shadow: 0 4px 20px rgba(12, 246, 225, 0.3);
  position: relative;
  overflow: hidden;
  
  /* Shimmer effect on hover */
  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left var(--duration-medium) ease;
    z-index: 1;
  }
  
  &:hover:not([disabled]):not(.disabled)::before {
    left: 100%;
  }
  
  /* Enhanced hover with Hero Section effects */
  &:hover:not([disabled]):not(.disabled) {
    /* Hero Section hover effect */
    transform: translateY(-2px) scale(var(--button-hover-scale));
    box-shadow: 0 8px 30px rgba(12, 246, 225, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    
    /* Better readability - CYAN background, white text */
    color: #ffffff !important;
    background: linear-gradient(135deg, #0cf6e1 0%, #00d4aa 100%);
  }
}

/* Secondary Button Enhancements - Hero Section Style with Better Readability */
.button--secondary {
  /* Hero Section Secondary Button Styling with CYAN accent */
  background: transparent;
  color: #0cf6e1;
  border: 2px solid #0cf6e1;
  position: relative;
  
  /* Enhanced hover with Hero Section effects */
  &:hover:not([disabled]):not(.disabled) {
    /* Hero Section hover effect */
    transform: translateY(-2px) scale(var(--button-hover-scale));
    box-shadow: 0 8px 30px rgba(12, 246, 225, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
    
    /* Better readability - CYAN background, white text */
    background: #0cf6e1;
    color: #ffffff !important;
    border-color: #0cf6e1;
  }
}
  
  /* Ripple effect */
  &::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(var(--color-secondary-button-text), 0.1);
    transform: translate(-50%, -50%);
    transition: width var(--duration-medium) ease, height var(--duration-medium) ease;
    z-index: 0;
  }
  
  &:active:not([disabled]):not(.disabled)::after {
    width: 300px;
    height: 300px;
  }
}

/* Tertiary Button Enhancements - Hero Section Style with Better Readability */
.button--tertiary {
  /* Hero Section Tertiary Button Styling with CYAN accent */
  background: transparent;
  color: #0cf6e1;
  border: none;
  position: relative;
  
  /* Underline animation */
  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #0cf6e1;
    transform: translateX(-50%);
    transition: width var(--duration-default) ease;
  }
  
  &:hover:not([disabled]):not(.disabled)::after {
    width: 100%;
  }
  
  /* Enhanced hover with Hero Section effects */
  &:hover:not([disabled]):not(.disabled) {
    /* Hero Section hover effect */
    transform: translateY(-2px) scale(var(--button-hover-scale));
    box-shadow: 0 8px 30px rgba(12, 246, 225, 0.2), 0 0 15px rgba(255, 255, 255, 0.1);
    
    /* Better readability - CYAN background, white text */
    color: #ffffff !important;
    background-color: rgba(12, 246, 225, 0.2);
  }
}

/* Quick Add Button Enhancements - Hero Section Style with Better Readability */
.quick-add__submit {
  /* Hero Section Quick Add Button Styling with CYAN accent */
  background: linear-gradient(135deg, #0cf6e1 0%, #00d4aa 100%);
  color: #000000;
  box-shadow: 0 4px 20px rgba(12, 246, 225, 0.3);
  position: relative;
  overflow: hidden;
  
  /* Enhanced hover with Hero Section effects */
  &:hover:not([disabled]):not(.disabled) {
    /* Hero Section hover effect */
    transform: translateY(-2px) scale(var(--button-hover-scale));
    box-shadow: 0 8px 30px rgba(12, 246, 225, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    
    /* Pulse animation for attention */
    animation: button-pulse var(--duration-long) ease-in-out infinite;
    
    /* Better readability - CYAN background, white text */
    color: #ffffff !important;
    background: linear-gradient(135deg, #0cf6e1 0%, #00d4aa 100%);
  }
  
  /* Icon animation */
  .icon-wrap {
    transition: transform var(--duration-default) ease;
  }
  
  &:hover:not([disabled]):not(.disabled) .icon-wrap {
    transform: translateX(4px);
  }
}

/* Loading State Enhancements */
.button.loading {
  position: relative;
  
  .loading__spinner {
    animation: button-spin var(--duration-extended) linear infinite;
  }
  
  /* Disable hover effects during loading */
  &:hover {
    transform: none;
    box-shadow: inherit;
  }
}

/* Disabled State Improvements */
.button:disabled,
.button[aria-disabled='true'],
.button.disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  
  &:hover {
    transform: none;
    box-shadow: inherit;
  }
}

/* Card Quick Add Button Specific Styles - Hero Section Style with Better Readability */
.card--horizontal__quick-add {
  /* Hero Section Card Quick Add Button Styling with CYAN accent */
  background: linear-gradient(135deg, #0cf6e1 0%, #00d4aa 100%);
  color: #000000;
  box-shadow: 0 4px 20px rgba(12, 246, 225, 0.3);
  position: relative;
  
  /* Enhanced hover with Hero Section effects */
  &:hover:not([disabled]):not(.disabled) {
    /* Hero Section hover effect */
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(12, 246, 225, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    
    /* Better readability - CYAN background, white text */
    color: #ffffff !important;
    background: linear-gradient(135deg, #0cf6e1 0%, #00d4aa 100%);
  }
  
  .animate-arrow .icon-wrap {
    transition: transform var(--duration-default) ease;
  }
  
  &:hover:not([disabled]):not(.disabled) .animate-arrow .icon-wrap {
    transform: translateX(6px);
  }
}

/* Volume Pricing Button Enhancements - Hero Section Style with Better Readability */
.card__information-volume-pricing-note--button {
  /* Hero Section Volume Pricing Button Styling with CYAN accent */
  background: transparent;
  color: #0cf6e1;
  border: 1px solid #0cf6e1;
  position: relative;
  
  /* Enhanced hover with Hero Section effects */
  &:hover:not([disabled]):not(.disabled) {
    /* Hero Section hover effect */
    transform: translateY(-1px) scale(var(--button-hover-scale));
    box-shadow: 0 4px 15px rgba(12, 246, 225, 0.2), 0 0 10px rgba(255, 255, 255, 0.1);
    
    /* Better readability - CYAN background, white text */
    color: #ffffff !important;
    background-color: rgba(12, 246, 225, 0.2);
  }
}

/* Modal Close Button Enhancements - Hero Section Style with Better Readability */
.quick-add-modal__toggle,
.button-close {
  /* Hero Section Modal Close Button Styling with CYAN accent */
  background: transparent;
  color: #0cf6e1;
  border: 1px solid #0cf6e1;
  position: relative;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Enhanced hover with Hero Section effects */
  &:hover:not([disabled]):not(.disabled) {
    /* Hero Section hover effect */
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(12, 246, 225, 0.2), 0 0 10px rgba(255, 255, 255, 0.1);
    
    /* Better readability - CYAN background, white text */
    color: #ffffff !important;
    background-color: rgba(12, 246, 225, 0.2);
  }
  
  &:active:not([disabled]):not(.disabled) {
    transform: rotate(90deg) scale(0.95);
  }
}

/* Keyframe Animations */
/* Keyframe Animations - Updated for CYAN accent */
@keyframes button-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(12, 246, 225, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(12, 246, 225, 0);
  }
}

@keyframes button-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes button-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .button,
  .shopify-challenge__button,
  .customer button,
  button.shopify-payment-button__button--unbranded {
    transition: color var(--duration-default) ease, background-color var(--duration-default) ease;
    
    &:hover:not([disabled]):not(.disabled) {
      transform: none;
      /* Keep color inversion but remove transforms */
      color: rgb(var(--color-button));
      background-color: rgba(var(--color-button-text), var(--alpha-button-background));
    }
    
    &:active:not([disabled]):not(.disabled) {
      transform: none;
    }
  }
  
  .button--primary::before,
  .button--secondary::after,
  .button--tertiary::after {
    display: none;
  }
  
  .quick-add__submit:hover:not([disabled]):not(.disabled) {
    animation: none;
  }
  
  .button.loading .loading__spinner {
    animation: none;
  }
  
  /* Disable scaling animations but keep color changes */
  .card--horizontal__quick-add:hover:not([disabled]):not(.disabled) {
    transform: none;
  }
  
  .quick-add-modal__toggle:hover:not([disabled]):not(.disabled),
  .button-close:hover:not([disabled]):not(.disabled) {
    transform: none;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .button:hover:not([disabled]):not(.disabled) {
    box-shadow: 0 0 0 2px currentColor;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .button:hover:not([disabled]):not(.disabled) {
    transform: none;
    box-shadow: inherit;
    /* Keep color inversion on touch devices */
    color: rgb(var(--color-button));
    background-color: rgba(var(--color-button-text), var(--alpha-button-background));
  }
  
  .button:active:not([disabled]):not(.disabled) {
    transform: scale(0.95);
    transition-duration: var(--duration-short);
    /* Maintain color inversion on active */
    color: rgb(var(--color-button));
    background-color: rgba(var(--color-button-text), calc(var(--alpha-button-background) + 0.1));
  }
}

/* Dark Mode Enhancements */
@media (prefers-color-scheme: dark) {
  :root {
    --button-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.3);
    --button-shadow-active: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
}

/* Performance Optimizations */
.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded {
  /* GPU acceleration for smooth animations */
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Focus Management for Accessibility */
.button:focus-visible {
  outline: 2px solid rgb(var(--color-button-text));
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .button {
    box-shadow: none;
    transform: none;
  }
  
  .button::before,
  .button::after {
    display: none;
  }
}
