/* 쇼핑몰 CTA 섹션 */
.shopping-cta-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.urgency-message {
    background: rgba(239, 68, 68, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.urgency-message p {
    font-size: 1.1rem;
    font-weight: 600;
}

.urgency-message strong {
    color: #fca5a5;
}

.cta-benefits {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.cta-benefits p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fca5a5;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #3b82f6;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
}
