/* ===== COMING SOON SECTION ===== */
.products-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #111 100%);
    position: relative;
    overflow: hidden;
}

.coming-soon-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(230, 57, 70, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-red) 0%,
        #FF6B6B 50%,
        var(--primary-red) 100%);
    animation: progressLine 3s ease-in-out infinite;
}

@keyframes progressLine {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.coming-soon-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(230, 57, 70, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.coming-soon-icon {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: var(--space-md);
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.coming-soon-card h3 {
    font-size: 2.2rem;
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, #fff 0%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-card > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-container {
    background: rgba(230, 57, 70, 0.1);
    border-radius: 16px;
    padding: var(--space-lg);
    margin: var(--space-lg) auto;
    max-width: 600px;
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.countdown-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
}

.time-unit .number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    padding: 0.5rem;
    position: relative;
    display: inline-block;
}

.time-unit .number::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-red), #FF6B6B);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.3;
}

.time-unit .label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===== NOTIFY FORM ===== */
.notify-me {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: var(--space-lg);
    margin-top: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.notify-me p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.notify-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.notify-input:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(230, 57, 70, 0.05);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.notify-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-notify {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-red), #FF6B6B);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-notify:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.btn-notify:active {
    transform: translateY(-1px);
}

/* ===== BACKGROUND ELEMENTS ===== */
.coming-soon-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(230, 57, 70, 0.05) 0%,
        transparent 70%);
    z-index: -1;
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 0 1rem;
    }
    
    .coming-soon-card {
        padding: var(--space-lg);
    }
    
    .coming-soon-card h3 {
        font-size: 1.8rem;
    }
    
    .coming-soon-card > p {
        font-size: 1rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 70px;
    }
    
    .time-unit .number {
        font-size: 2.5rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-input {
        min-width: 100%;
    }
    
    .btn-notify {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .coming-soon-card {
        padding: var(--space-md);
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .time-unit {
        min-width: 60px;
    }
    
    .time-unit .number {
        font-size: 2rem;
    }
    
    .time-unit .label {
        font-size: 0.7rem;
    }
}

/* ===== LOADING ANIMATION ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon-card {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== PULSE EFFECT ===== */
.pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    box-shadow: 
        0 0 0 0 rgba(230, 57, 70, 0.7),
        inset 0 0 0 1px rgba(230, 57, 70, 0.3);
    animation: pulseBorder 2s infinite;
    z-index: -1;
}

@keyframes pulseBorder {
    0% {
        box-shadow: 
            0 0 0 0 rgba(230, 57, 70, 0.7),
            inset 0 0 0 1px rgba(230, 57, 70, 0.3);
    }
    70% {
        box-shadow: 
            0 0 0 20px rgba(230, 57, 70, 0),
            inset 0 0 0 1px rgba(230, 57, 70, 0.1);
    }
    100% {
        box-shadow: 
            0 0 0 0 rgba(230, 57, 70, 0),
            inset 0 0 0 1px rgba(230, 57, 70, 0.3);
    }
}

/* ===== ADDITIONAL DECORATIVE ELEMENTS ===== */
.decorative-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatDot 10s infinite linear;
}

.dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.dot:nth-child(2) { top: 40%; right: 15%; animation-delay: 1s; }
.dot:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
.dot:nth-child(4) { bottom: 10%; right: 25%; animation-delay: 3s; }

@keyframes floatDot {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(10px) translateX(-10px);
    }
    75% {
        transform: translateY(-10px) translateX(20px);
    }
}