/* Contenedor Principal */
.f14a-subscription-wrapper {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.f14a-title {
    text-align: center;
    color: #4e342e; /* Café oscuro */
    margin-bottom: 25px;
    font-size: 24px;
}

/* Campos */
.f14a-section {
    margin-bottom: 20px;
}

.f14a-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.f14a-select, .f14a-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #fafafa;
}

/* Sección de Merch (Regalo) */
.f14a-merch-box {
    background: #fdf6e3; /* Crema suave */
    border: 1px dashed #d7ccc8;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    display: none; /* Oculto por defecto */
}

.f14a-merch-title {
    font-weight: bold;
    color: #d84315; /* Naranja quemado */
    margin-bottom: 10px;
    display: block;
}

.f14a-talla-options {
    display: flex;
    gap: 15px;
}

.f14a-talla-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Botón de Compra */
.f14a-submit-area {
    margin-top: 30px;
    text-align: center;
}

.f14a-btn-buy {
    background-color: #6d4c41;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.f14a-btn-buy:hover {
    background-color: #4e342e;
}

.f14a-price-tag {
    font-weight: bold;
    color: #ffeb3b; /* Amarillo para resaltar */
}