/* Coming Soon Product Styles */
.coming-soon-badge {
    background-color: #ff6b00;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .coming-soon-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.product-price-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.original-price {
    text-decoration: line-through;
    color: #86868b;
    font-size: 0.9rem;
}

.sale-price {
    color: #e51c23;
    font-weight: 600;
}

.coming-soon-notice {
    background-color: #f5f5f7;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    border-left: 4px solid #ff6b00;
}

.coming-soon-notice h4 {
    margin-top: 0;
    color: #1d1d1f;
    font-size: 1rem;
}

.coming-soon-notice p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #515154;
}

.notify-btn {
    background-color: #ff6b00;
    color: white;
    border: none;
    border-radius: 980px;
    padding: 12px 20px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.notify-btn:hover {
    background-color: #e05e00;
}

.disabled-btn {
    background-color: #d2d2d7;
    color: #86868b;
    cursor: not-allowed;
}

.disabled-btn:hover {
    background-color: #d2d2d7;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .coming-soon-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .coming-soon-notice {
        padding: 12px;
    }
    
    .notify-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .coming-soon-notice {
        background-color: #1d1d1f;
        border-left-color: #ff6b00;
    }
    
    .coming-soon-notice h4 {
        color: #f5f5f7;
    }
    
    .coming-soon-notice p {
        color: #a1a1a6;
    }
    
    .original-price {
        color: #a1a1a6;
    }
    
    .disabled-btn {
        background-color: #424245;
        color: #a1a1a6;
    }
}
