/* Modern product form - responsive, clean, consistent with sample */

.product-form-modern,
.product-form-modern input,
.product-form-modern select,
.product-form-modern label {
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.product-form-modern {
    background: #fff;
    border: 1px solid #ff6a2f;
    border-radius: 12px;
    padding: 16px;
    margin: 18px auto 0;
    max-width: 600px;
    width: 90%;
}

/* Hacer que las tarjetas de precios coincidan con el ancho del formulario */
.variants-container {
    max-width: 600px;
    width: 94%;
    margin: 18px auto 0;
}

/* Botón de consulta personalizada */
.custom-consultation-btn {
    max-width: 600px;
    width: 90%;
    margin: 18px auto 0;
    text-align: center;
}

.consultation-button {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    width: 100%;
    max-width: 500px;
}

.consultation-button::before,
.consultation-button::after {
    content: none !important;
    display: none !important;
}

.consultation-button:hover {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.consultation-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
}

.product-form-modern .pfm-title {

    color: #fe5c24;
    margin: 0 0 12px 0;
    letter-spacing: .2px;
}

.product-form-modern .pfm-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-form-modern .pfm-field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    width: 100%;
}

.product-form-modern .pfm-field label {
    flex: 0 0 auto;
    min-width: 100px;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: rgba(50, 50, 50, 0.87);
    margin-bottom: 0;
    white-space: normal;
}

.product-form-modern select,
.product-form-modern .pfm-price {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    border: 2px solid #d9dde3;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    background: #fff;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-form-modern select option {
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    padding: 10px 12px;
}

.product-form-modern select:focus {
    outline: none;
    border-color: #ff2d76;
    box-shadow: 0 0 0 3px #ffe3ef;
}

.product-form-modern .pfm-output .pfm-price {
    font-weight: 700;
    color: #ff6a2f;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-form-modern .pfm-field {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .product-form-modern .pfm-field label {
        min-width: 80px;
        font-size: 15px;
        font-weight: 700;
        line-height: 24px;
        margin-bottom: 0;
    }

    .product-form-modern select,
    .product-form-modern .pfm-price {
        font-size: 14px;
        padding: 8px 10px;
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }

    .product-form-modern select option {
        font-size: 14px;
    }
}

/* Estilos para contador de tiempo y fecha de entrega - Tipografía TF */
.countdown-timer,
.date {
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

.countdown-timer {
    margin-bottom: 4px;
}

.date {
    font-weight: 500;
}