/**
 * public/css/style.css
 * San Miguel Campaign Plugin - base styles
 * 
 * Minimal, everything else via inline style from DB
 */

.smcp-form-wrapper {
    max-width: 600px;
    margin: 40px auto;
    padding: 25px;
    background: inherit;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: inherit;
}

.smcp-form-wrapper h2 {
    margin-top: 0;
    color: inherit;
}

.smcp-form-wrapper p {
    color: inherit;
}

.smcp-field-group {
    margin-bottom: 20px;
}

.smcp-field-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: inherit;
}

.smcp-field-group input,
.smcp-field-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
    color: inherit;
    background: transparent;
}

.smcp-field-group input:focus,
.smcp-field-group textarea:focus {
    border-color: inherit;
    outline: none;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

.smcp-btn {
    background: inherit;
    color: inherit;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.smcp-btn:hover {
    background: inherit;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.smcp-thankyou {
    background: inherit;
    color: inherit; 
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
    animation: fadeSlideIn 0.6s ease;
}

.smcp-social-cta {
    text-align: center;
    margin-top: 20px;
}

.smcp-social-cta a {
    display: inline-block;
    margin: 0 10px;
    font-size: 28px;
    color: inherit;
    transition: color 0.3s, transform 0.2s;
}

.smcp-social-cta a:hover {
    color: inherit;
    transform: scale(1.15);
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.smcp-checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.smcp-checkbox-group input[type="checkbox"] {
    margin: 0;
}

/* --- SOCIAL BUTTONS NO POPUP (SWEETALERT) --- */
.voucher-game-social {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 24px;
}
.voucher-social-btn {
    background: #fff;
    border-radius: 50%;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 14px #b9925e55;
    font-size: 2.1em;
    margin: 0 6px;
    transition: transform 0.18s, background 0.25s, color 0.25s, border-color 0.25s;
    color: #b9925e;
    border: 2.5px solid #ffd700;
    text-decoration: none;
}
.voucher-social-btn:hover {
    background: #ffd700;
    color: #222;
    border-color: #b9925e;
    transform: scale(1.13) rotate(-7deg);
}

/* SweetAlert2 popup custom class for further tweaks if needed */
.smcp-swal-popup {
    font-family: inherit;
}