/* Coming Soon Modal Styles */
.coming-soon-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483647; /* Maximize to beat any vendor page overlays */
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.2s ease-out;
    pointer-events: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        visibility: hidden;
    }
    to {
        opacity: 1;
        visibility: visible;
    }
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.coming-soon-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFD15C url('../images/BG.svg') no-repeat center center;
    background-size: cover;
    width: 90%;
    max-width: 500px;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

/* Prevent background scroll when modal is open */
body.modal-open {
    overflow: hidden !important;
}

@keyframes slideIn {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.coming-soon-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    z-index: -1;
}

.coming-soon-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.coming-soon-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.coming-soon-close i {
    font-size: 1.2rem;
    color: #666;
}

.coming-soon-icon {
    background: linear-gradient(135deg, #7EB143, #6BA037);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 10px 30px rgba(126, 177, 67, 0.3);
}

.coming-soon-icon i {
    font-size: 2.5rem;
    color: white;
}

.coming-soon-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a202c, #2d3748);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.coming-soon-features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 120px;
}

.feature-item i {
    font-size: 1.5rem;
    color: #7EB143;
    background: rgba(126, 177, 67, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
}

.coming-soon-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.notify-btn {
    background: linear-gradient(135deg, #7EB143, #6BA037);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(126, 177, 67, 0.3);
}

.notify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(126, 177, 67, 0.4);
    background: linear-gradient(135deg, #6BA037, #7EB143);
}

.notify-btn:disabled {
    cursor: not-allowed;
    transform: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coming-soon-content {
        width: 95%;
        padding: 2rem 1.5rem;
    }
    
    .coming-soon-content h2 {
        font-size: 1.6rem;
    }
    
    .coming-soon-content p {
        font-size: 1rem;
    }
    
    .coming-soon-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        min-width: auto;
    }
    
    .notify-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-content {
        padding: 1.5rem 1rem;
    }
    
    .coming-soon-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .coming-soon-icon i {
        font-size: 2rem;
    }
    
    .coming-soon-content h2 {
        font-size: 1.4rem;
    }
}