/* Loading Skeleton for Button */
.btn-skeleton {
    width: 100%;
    height: 56px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.05) 25%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 10px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Image Gallery Thumbnails */
.modal-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.gallery-thumb:hover {
    opacity: 1;
    border-color: rgba(0, 136, 255, 0.3);
}

.gallery-thumb.active {
    opacity: 1;
    border-color: #0088ff;
    box-shadow: 0 0 10px rgba(0, 136, 255, 0.4);
}

/* Social Proof Section */
.social-proof-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sales-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(0, 136, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 12px;
}

.sales-stats i {
    color: #0088ff;
    font-size: 1.1rem;
}

.sales-stats span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

.sales-stats strong {
    color: white;
    font-weight: 700;
}

/* Why This Product Section */
.why-section {
    margin-top: 1rem;
}

.why-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-title i {
    color: #0088ff;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.why-item i {
    color: #00ff88;
    font-size: 0.9rem;
}

.why-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}