/* ============================================
   APPLE-STYLE TRY ON ME BUTTON
   Clean, minimal, and elegant
   ============================================ */

.try-on-btn {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    letter-spacing: -0.2px;
    opacity: 1;
}

/* Button hover effect */
.try-on-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%) translateY(-2px);
}

/* Button active/pressed effect */
.try-on-btn:active {
    transform: translateX(-50%) translateY(0) scale(0.96);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Mobile: Always show button */
@media (max-width: 768px) {
    .try-on-btn {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        font-size: 11px;
        padding: 6px 12px;
        bottom: 8px;
    }
    
    .try-on-btn:hover {
        transform: translateX(-50%) translateY(0);
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .try-on-btn {
        background: rgba(28, 28, 30, 0.95);
        color: #fff;
    }
    
    .try-on-btn:hover {
        background: rgba(28, 28, 30, 1);
    }
}

/* Wishlist button enhancement */
.wishlist-btn {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.wishlist-btn:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    transform: scale(1.1);
}

.wishlist-btn:active {
    transform: scale(0.95);
}

.wishlist-btn.active {
    background: rgba(255, 59, 48, 0.9) !important;
}

.wishlist-btn.active:hover {
    background: rgba(255, 59, 48, 1) !important;
}
