/* --- Global Styling for Section --- */
.yc-comingsoon-wrap {
    font-family: 'Segoe UI', Roboto, sans-serif;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f4f7ff, #ffffff);
    color: #222;
    text-align: center;
}

.yc-container {
    max-width: 900px;
    margin: auto;
}

.yc-container a{
    text-decoration: none;
}
/* Heading */
.yc-comingsoon-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #4a57ff, #00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.yc-subtext {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* Features */
.yc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.yc-feature-card {
    padding: 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yc-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

.yc-feature-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.yc-feature-text {
    font-size: 15px;
    color: #666;
}

/* CTA Button */
.yc-cta-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    background: linear-gradient(45deg, #4a57ff, #00c2ff);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    font-size: 17px;
    box-shadow: 0 6px 18px rgba(0, 140, 255, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
}

.yc-cta-btn:hover {
    color:#f2f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 140, 255, 0.4);
}

/* Shop Button */
.yc-shop-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background: #fff;
    border: 2px solid #4a57ff;
    color: #4a57ff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.yc-shop-btn:hover {
    background: #4a57ff;
    color: #fff;
}

/* Modal styles */
#yc-notify-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
}

.yc-modal-box {
    max-width: 420px;
    margin: 100px auto;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    animation: pop 0.25s ease;
}

@media (min-width: 992px) {
    /* Target the last feature card in the list */
    .yc-feature-card:last-child {
        /*
         * Key change: Force it to take 100% of the available width.
         * The exact property depends on the parent container's display property.
         */
        
        /* If the parent is using CSS Grid: */
        grid-column: 1 / -1; 
        
        /* OR, if the parent is using Flexbox: */
        flex-basis: 100%;
        width: 100%;
        
        /* Reset any margin that prevents it from filling the space */
        margin-left: 0;
        margin-right: 0;
    }
    .yc-feature-card:last-child .yc-feature-text{
        text-align:left!important;
    }
}

@keyframes pop {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.yc-close-modal {
    float: right;
    font-size: 20px;
    cursor: pointer;
    margin-top: -10px;
}

.yc-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
}

.yc-submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #4a57ff, #00c2ff);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
}

#yc-notify-message {
    margin-top: 12px;
    font-size: 14px;
    color: #333;
}
