/** Shopify CDN: Minification failed

Line 24:4 Unexpected "{"
Line 24:5 Expected identifier but found "%"
Line 24:38 Unexpected "{"
Line 24:39 Expected identifier but found "%"
Line 26:4 Unexpected "{"
Line 26:5 Expected identifier but found "%"
Line 26:38 Unexpected "{"
Line 26:39 Expected identifier but found "%"

**/
.custom-button-1 {
    display: inline-flex;
    position: absolute;
    top: 10px;
    right: 10px;
    align-items: center;
    overflow: hidden;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    {% comment %} padding: 10px 12px; {% endcomment %}
    background: rgba(212, 212, 212, 0.95);
    {% comment %} border-radius: 25%; {% endcomment %}
}

.custom-button-1 {
    gap: 0;
}

.custom-button-1 .btn-text-1 {
    font-size: 14px;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transform: translateX(8px);
    margin: 0;
    padding: 0;
    transition: max-width 0.35s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.custom-button-1:hover .btn-text-1 {
    max-width: 120px;
    opacity: 1;
    transform: translateX(0);
    margin-right: 8px;
}

/* Minimal Compare Icon Button Styles */
.plp-compare-icon-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(212, 212, 212, 0.95);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.plp-compare-icon-btn:hover .compare-icon {
    stroke: white;
}

.plp-compare-icon-btn:hover .compare-tooltip {
    opacity: 1;
    visibility: visible;
    /* transform: translateX(-50%) translateY(0); */
}

.plp-compare-icon-btn.added .compare-icon {
    stroke: white;
}

.plp-compare-icon-btn.added .compare-tooltip {
    display: none;
}

.compare-tooltip {
    position: absolute;
    top: 50%;
    right: 2%;
    /* {% comment %} transform: translateY(-50%) translateX(0); {% endcomment %} */
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;

    /* {% comment %} font-size: 14px;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transform: translateX(8px);
    margin: 0;
    padding: 0;
    transition:
    max-width 0.35s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
    } {% endcomment %}

    {% comment %} .compare-tooltip::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0, 0, 0, 0.9);
    } {% endcomment %} */
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: white;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    animation: slideIn 0.3s ease-out;
    border-left: 4px solid;
}

.toast-error { border-left-color: #ef4444; }
.toast-error .toast-icon { color: #ef4444; }
.toast-warning { border-left-color: #f59e0b; }
.toast-warning .toast-icon { color: #f59e0b; }
.toast-info { border-left-color: #3b82f6; }
.toast-info .toast-icon { color: #3b82f6; }
.toast-success { border-left-color: #10b981; }
.toast-success .toast-icon { color: #10b981; }

.toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
}

.toast-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #6b7280;
}

@keyframes slideIn {
    from {
    transform: translateX(400px);
    opacity: 0;
    }
    to {
    transform: translateX(0);
    opacity: 1;
    }
}

@keyframes slideOut {
    from {
    transform: translateX(0);
    opacity: 1;
    }
    to {
    transform: translateX(400px);
    opacity: 0;
    }
}

.toast-hiding {
    animation: slideOut 0.3s ease-in forwards;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Notification bar positioning */
#comparison-notification-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999999 !important;
}

/* Responsive Styles */
@media (max-width: 640px) {
    .toast-container {
    left: 10px;
    right: 10px;
    top: 10px;
    }

    .toast {
    min-width: auto;
    max-width: 100%;
    }

    .plp-compare-icon-btn {
    width: 32px;
    height: 32px;
    }

    .compare-icon {
    width: 18px;
    height: 18px;
    }

    .compare-tooltip {
    font-size: 11px;
    padding: 4px 8px;
    }
}
/* Compare Button Styles for Product Thumbnails */

.pdp-compare-icon-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(212, 212, 212, 0.95);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  padding: 0;
}

.pdp-compare-icon-btn:hover {
  background-color: rgba(220, 38, 38, 1);
  transform: scale(1.1);
}

.pdp-compare-icon-btn:active {
  transform: scale(0.95);
}

/* Tooltip Styles */
.compare-tooltip {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.compare-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #333;
}

.pdp-compare-icon-btn:hover .compare-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Icon Styles */
.compare-icon {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Active/Selected State */
.pdp-compare-icon-btn.active,
.pdp-compare-icon-btn.added,
.pdp-compare-icon-btn.is-comparing {
  background-color: rgba(220, 38, 38, 1);
}

.pdp-compare-icon-btn.active:hover,
.pdp-compare-icon-btn.is-comparing:hover {
  background-color: rgba(220, 38, 38, 1);
}

/* Container for product thumbnail - add this to your product card */
.product-card,
.product-thumbnail {
  position: relative;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .pdp-compare-icon-btn {
    width: 36px;
    height: 36px;
    top: 8px;
    right: 8px;
  }
  
  .compare-icon {
    width: 18px;
    height: 18px;
  }
  
  .compare-tooltip {
    display: none; /* Hide tooltip on mobile for cleaner UI */
  }
}

@media (max-width: 480px) {
  .pdp-compare-icon-btn {
    width: 32px;
    height: 32px;
  }
  
  .compare-icon {
    width: 16px;
    height: 16px;
  }
}
.product__inventory {
    position: absolute;
    z-index: 1;
    /* top: 10px; */
    font-weight: bold;
    left: 15px;
    padding: 0
    border-radius: 6px;
}

/* Alternative positioning - Bottom Right (uncomment if preferred) */
/*
.pdp-compare-icon-btn {
  top: auto;
  bottom: 10px;
  right: 10px;
}
*/

/* Alternative positioning - Top Left (uncomment if preferred) */
/*
.pdp-compare-icon-btn {
  left: 10px;
  right: auto;
}

.compare-tooltip {
  left: 50px;
  right: auto;
}

.compare-tooltip::after {
  left: -5px;
  right: auto;
  border-width: 5px 5px 5px 0;
  border-color: transparent #333 transparent transparent;
}
*/