#woosn-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #00000078;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 9999;
    width: 100%;
    height: 100vh;
}
.woosn-popup-inner {
    position: relative;
}
.woosn-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-weight: bold;
    cursor: pointer;
}
.woosn-notify-btn, .woosn-soldout-btn {
    display: inline-block;
    padding: 10px 14px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px ! IMPORTANT;
}
.woosn-soldout-btn {
    background: #ccc;
    cursor: not-allowed;
}

.woosn-popup-inner {
    max-width: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    position: fixed;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    font-family: sans-serif;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.woosn-notify-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.woosn-notify-form input,
.woosn-notify-form button {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.woosn-notify-form button {
    background-color: #2eb172;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.woosn-notify-form button:hover {
    background-color: #239a5f;
}

.woosn-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}
form#woosn-form input {
    padding: 10px !important;
}

.woosn-notify-form label {
    font-weight: bold;
    margin-bottom: 3px;
}
.woosn-notify-form input[type="text"],
.woosn-notify-form input[type="email"],
.woosn-notify-form input[type="number"],
.woosn-notify-form input[type="date"] {
    padding: 10px;
    font-size: 14px;
    width: 100%;
}
.woosn-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.woosn-form-group {
    display: flex;
    flex-direction: column;
}

.woosn-form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.woosn-form-group input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.woosn-form-button {
    margin-top: 20px;
    text-align: center;
}

.woosn-form-button button {
    padding: 12px 25px;
    font-size: 16px;
    background-color: #2eb172;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.woosn-form-button button:hover {
    background-color: #239a5f;
}

/* Mobile responsive: single column */
@media (max-width: 600px) {
    .woosn-form-grid {
        grid-template-columns: 1fr;
    }
}
.woosn-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.woosn-form-group {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
}

.woosn-form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.woosn-form-group input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.woosn-form-button {
    text-align: center;
}

.woosn-form-button button {
    padding: 12px 25px;
    font-size: 16px;
    background-color: #2eb172;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.woosn-form-button button:hover {
    background-color: #239a5f;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .woosn-form-group {
        flex: 1 1 100%;
    }
    .woosn-popup-inner {
    max-width: 100%;
    
    height: 80vh;
    overflow: scroll;
    width: 80%;
}
}
.woosn-popup-inner h3 {
    border-bottom: 1px solid #efecec;
    margin-bottom: 20px;
}