/** Shopify CDN: Minification failed

Line 8:0 Unexpected "{"
Line 8:1 Expected identifier but found "%"
Line 11:1 Expected identifier but found "%"

**/
{% comment %}
  Modern Cart Icon and Conversion Optimization
  Following Shopify theme development best practices
{% endcomment %}

/* Remove ALL possible click effects from any source */
.header__icon--cart:active,
.header__icon--cart:focus:active,
#cart-icon-bubble:active,
#cart-icon-bubble:focus:active {
  transform: none !important;
  background: rgba(255, 0, 128, 0.1) !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

/* Remove any animation or transition effects on click */
.header__icon--cart,
.header__icon--cart *,
#cart-icon-bubble,
#cart-icon-bubble * {
  animation: none !important;
  transition: background-color 0.3s ease, transform 0.3s ease !important;
}

/* AGGRESSIVE removal of ALL click effects and sounds */
.header__icon--cart,
.header__icon--cart *,
#cart-icon-bubble,
#cart-icon-bubble * {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
  border: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  pointer-events: auto !important;
}

/* Remove ALL pseudo-elements that could create circles */
.header__icon--cart::before,
.header__icon--cart::after,
.header__icon--cart *::before,
.header__icon--cart *::after,
#cart-icon-bubble::before,
#cart-icon-bubble::after,
#cart-icon-bubble *::before,
#cart-icon-bubble *::after {
  display: none !important;
  content: none !important;
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Override base.css focus styles */
.header__icon--cart:focus,
.header__icon--cart:focus-visible,
#cart-icon-bubble:focus,
#cart-icon-bubble:focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
}

/* Remove all focus rings and click effects */
.header__icon--cart,
.header__icon--cart:focus,
.header__icon--cart:active,
.header__icon--cart:focus-visible,
#cart-icon-bubble,
#cart-icon-bubble:focus,
#cart-icon-bubble:active,
#cart-icon-bubble:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.header__icon--cart:focus-visible {
  outline: none !important;
}

/* Remove any ripple or click effects */
.header__icon--cart::after,
.header__icon--cart::before {
  display: none !important;
}

/* Remove any webkit tap highlights */
.header__icon--cart {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

/* Remove any button-like click effects */
.header__icon--cart:active {
  transform: none !important;
  background: rgba(255, 0, 128, 0.1) !important;
}

/* Modern Cart Icon Variables */
:root {
  --cart-icon-size: 24px;
  --cart-icon-size-mobile: 22px;
  --cart-badge-size: 18px;
  --cart-badge-size-mobile: 16px;
  --cart-animation-duration: 0.3s;
  --cart-hover-scale: 1.1;
  --cart-pulse-scale: 1.15;
}

/* Modern Shopping Bag Icon - Clean Design */
.header__icon--cart {
  background: transparent !important;
  border: none !important;
  border-radius: 12px !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.header__icon--cart::before {
  display: none !important;
}

.header__icon--cart:hover::before {
  display: none !important;
}

.header__icon--cart:hover {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.header__icon--cart .svg-wrapper {
  width: 28px !important;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Custom Cart Icon Image */
.cart-icon-image {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.header__icon--cart:hover .cart-icon-image {
  transform: none !important;
}

/* Cart Icon Placeholder */
.cart-icon-placeholder {
  width: 24px !important;
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.header__icon--cart:hover .cart-icon-placeholder {
  transform: none !important;
}

/* Modern Cart Badge */
.cart-count-bubble {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: var(--cart-badge-size);
  height: var(--cart-badge-size);
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
  animation: cart-badge-pulse 2s infinite;
  z-index: 10;
}

.cart-count-bubble span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Cart Badge Animations */
@keyframes cart-badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
  }
  50% {
    transform: scale(var(--cart-pulse-scale));
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.6);
  }
}

@keyframes cart-icon-bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: scale(1);
  }
  40%, 43% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1.1);
  }
  90% {
    transform: scale(1.05);
  }
}

/* Add to Cart Success Animation */
.header__icon--cart.cart-added {
  animation: cart-icon-bounce 0.6s ease;
}

.header__icon--cart.cart-added .cart-count-bubble {
  animation: cart-badge-pulse 0.6s ease, cart-badge-bounce 0.6s ease;
}

@keyframes cart-badge-bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: scale(1);
  }
  40%, 43% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1.1);
  }
  90% {
    transform: scale(1.05);
  }
}

/* Empty Cart State */
.header__icon--cart:not(:hover) .svg-wrapper svg {
  fill: rgba(12, 246, 225, 0.7);
}

/* Mobile Optimizations */
@media screen and (max-width: 749px) {
  .header__icon--cart {
    width: 40px;
    height: 40px;
  }
  
  .header__icon--cart .svg-wrapper {
    width: var(--cart-icon-size-mobile);
    height: var(--cart-icon-size-mobile);
  }
  
  .cart-count-bubble {
    min-width: var(--cart-badge-size-mobile);
    height: var(--cart-badge-size-mobile);
    top: -6px;
    right: -6px;
  }
  
  .cart-count-bubble span {
    font-size: 0.65rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .header__icon--cart,
  .cart-count-bubble {
    animation: none !important;
    transition: none !important;
  }
  
  .header__icon--cart:hover {
    transform: none;
  }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
  .header__icon--cart {
    background: rgba(12, 246, 225, 0.2);
    border-color: #0cf6e1;
  }
  
  .header__icon--cart .svg-wrapper svg {
    fill: #0cf6e1;
  }
  
  .cart-count-bubble {
    background: #ff4757;
    border-color: #ffffff;
  }
}

/* Dark Mode Adjustments */
@media (prefers-color-scheme: dark) {
  .header__icon--cart {
    background: rgba(12, 246, 225, 0.15);
    border-color: rgba(12, 246, 225, 0.3);
  }
  
  .header__icon--cart:hover {
    background: rgba(12, 246, 225, 0.25);
    border-color: rgba(12, 246, 225, 0.5);
  }
}
