/* =========================================
   1. LAYOUT PRINCIPAL (CONFIGURADOR)
   ========================================= */
#product-configurator {
    font-family: sans-serif;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* =========================================
   FIX RESPONSIVO: ALTURA Y SCROLL INTERNO
   ========================================= */

/* Aseguramos que el wizard ocupe la altura disponible pero no se desborde */
#product-configurator {
    height: 100%;
    /* Importante: El contenedor padre (#prod-details-container) debe tener una altura definida (ej: 85vh) para que esto funcione */
    overflow: hidden;
}

#step-2-plans {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Evita que el paso entero crezca infinitamente */
}

/* Elementos que NO deben encogerse (Cabecera y Footer) */
.step-header,
.billing-toggle-wrapper,
.main-price-display,
.step-actions,
.add-to-cart-wrapper {
    flex-shrink: 0;
}

/* El contenedor de planes es el que debe hacer SCROLL */
.plans-container {
    flex-grow: 1;
    /* Ocupa el espacio disponible */
    overflow-y: auto;
    /* Scroll vertical si hace falta */
    min-height: 0;
    /* Truco Flexbox para permitir encogerse más del contenido */
    padding-right: 5px;
    /* Espacio para scrollbar */
    padding-bottom: 5px;

    /* Scrollbar más estético */
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

#prod-details-container {
    display: flex;
    flex-direction: column;
}

/* Contenedores de Toggles (Impresora/Funda) */
.toggle-wrapper {
    margin-bottom: 0;
    /* Ajustable si necesitas espacio */
}

/* Ocultar funda por defecto (JS lo activa si es necesario) */
#funda-toggle-container {
    display: none;
}

/* Wrapper del botón de compra */
.add-to-cart-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    max-height: 55px;
}

/* Precio Principal Grande */
.main-price-display {
    font-size: 38px;
    font-weight: 700;
    color: #AA151B;
    line-height: 1;
    margin: 20px 0 0;
    display: flex;
    align-items: flex-end;
    /* Alineados por la base */
    justify-content: left;
    gap: 15px;
    /* Espacio entre Hardware y Plan */
}

.currency {
    font-size: 18px;
}

.plan-price-display {
    color: black;
}

/* Info de Envío y Garantía */
.small-iva {
    color: gray;
    font-size: 18px;
    font-weight: 300;
}

.hardware-carousel-wrapper {
    animation: fadeIn 0.3s ease-in-out;
}


/* Cada Columna (apila tachado sobre grande) */
.price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Alinea los números a la derecha dentro de su columna */
}

/* El Precio Tachado (Pequeño y Gris) */
.strike-price {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 300;
    text-decoration: line-through;
    margin-bottom: -2px;
    /* Pegadito al precio grande */
    height: 16px;
    /* Altura fija para evitar saltos si aparece/desaparece */
}

/* La Fila del Precio Grande */
.big-price-row {
    line-height: 1;
    white-space: nowrap;
}

/* Estilos de Texto Grande (Heredados de tu diseño anterior) */
#final-price-display {
    font-size: 38px;
    font-weight: 700;
    color: #AA151B;
    /* Rojo */
}

#plan-price-display {
    font-size: 38px;
    font-weight: 700;
    color: #000;
}

.currency {
    font-size: 18px;
    font-weight: 600;
}

.plus-sign {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-right: 4px;
}

.small-iva {
    font-size: 14px;
    color: gray;
    font-weight: 300;
    margin-left: 5px;
    position: relative;
    top: -5px;
}

.badge-discount-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    align-items: center;
}

/* =========================================
   2. COMPONENTES: BOTONES Y TOGGLES
   ========================================= */

/* Grupo de botones Toggle (Con/Sin) */
.printer-toggle-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.printer-btn {
    flex: 1;
    background: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    max-width: 200px;
    padding: 6px 12px;
    /* antes seguramente era mayor */
    font-size: 13px;
    /* reduce el texto */
    min-width: auto;
    /* evita botones demasiado anchos */
    border-radius: 30px;
    /* opcional, más compacto */
}

/* Estados y Colores del Toggle */
.printer-btn_sin {
    border: 2px solid #eeba68;
    color: #eeba68;
}

.printer-btn_con {
    border: 2px solid #656565;
    color: #656565;
}

.printer-btn_sin.is-active,
.printer-btn_sin:hover {
    background: #eeba68;
    color: white;
}

.printer-btn_con.is-active,
.printer-btn_con:hover {
    background: #656565;
    color: white;
}

/* Botón Dorado (Añadir al Carrito) */
.gold-btn {
    width: 50%;
    background-color: #F3C37D;
    color: #111;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    border-radius: 8px;
    text-decoration: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s, box-shadow 0.2s;
    border: 1px solid #d4a355;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    min-height: 50px;
}

.gold-btn:hover {
    background: linear-gradient(to bottom, #f7d69f, #f5c470);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: #000;
}

.gold-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Variaciones (Chips de selección de Hardware) */
.var-buttons-wrapper {
    margin-bottom: 25px;
}

.var-btn {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    color: #333;
}

.var-btn:hover {
    border-color: #999;
}

.var-btn.selected {
    border-color: #eeba68;
    background-color: #fff8e1;
    color: #b47d1f;
    font-weight: 700;
}


/* =========================================
   3. COMPONENTES: TARJETAS DE PLANES
   ========================================= */
.plans-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-around;
    flex: 1;
    /* Ocupa el espacio restante */
}

.plan-card {
    display: block;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    background: white;
    transition: all 0.2s;
    position: relative;
    height: 30%;
    max-height: 90px;
    align-content: center;
    min-height: 50px;
    /* elimina altura forzada */
}



.plan-card:hover {
    border-color: #999;
}

.plan-card:has(input:checked) {
    /*border: 2px solid #555;*/
}

.plan-card input {
    display: none;
}

/* Radio oculto */

.plan-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Radio Button Customizado */
.plan-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #888;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
}

.plan-card input:checked~.plan-content .plan-circle {
    border-color: #dba617;
}

.plan-card input:checked~.plan-content .plan-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #dba617;
    border-radius: 50%;
}

.plan-name {
    font-weight: 600;
    color: #555;
    flex-grow: 1;
}

.plan-price-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-price-details {
    text-align: right;
}

.price-final {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    text-wrap: nowrap;
}

.price-original {
    font-size: 12px;
    text-decoration: line-through;
    color: #999;
}

.price-red {
    color: #d63638;
}

/* Badges */
.badge-discount {
    background: #32368D;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
}

.badge-discount.gold {
    background: var(--jarv-gold);
}

.badge-discount.ultra {
    background: #c90c0f;
}


/* =========================================
   4. CARRUSEL Y MINI TARJETAS
   ========================================= */
.hardware-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.carousel-track {
    display: flex;
    width: 100%;
    justify-content: space-around;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 5px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE */
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.mini-prod-card {
    min-width: 200px;
    max-width: 18%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.mini-prod-box {
    text-align: left;
}

.mini-prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: #eeba68;
}

.mini-prod-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 10px;
}

.mini-prod-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
    line-height: 1.2;
}

.mini-prod-subtitle {
    font-size: 15px;
    color: #3E4454;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    min-height: 16px;
}

/* Pastillas (Tags) */
.chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.prod-chip {
    background-color: #f0f4f8;
    color: #445;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #e1e4e8;
    white-space: nowrap;
}

/* Flechas Carrusel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #555;
    transition: all 0.2s;
}

.carousel-nav:hover {
    background: #eeba68;
    color: white;
    border-color: #eeba68;
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-nav.hidden {
    display: none;
}


/* =========================================
   5. TABLA DE ESPECIFICACIONES (FICHA TÉCNICA)
   ========================================= */
#prod-specs table.shop_attributes {
    display: block;
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    background: transparent;
    border: none;
}

#prod-specs table.shop_attributes tbody {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

#prod-specs table.shop_attributes tr {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid white;
    padding: 15px 20px;
    box-sizing: border-box;
}

#prod-specs table.shop_attributes th {
    flex: 0 0 35%;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    text-transform: capitalize;
    padding: 0;
    margin: 0;
    text-align: left;
    border: none;
}

#prod-specs table.shop_attributes td {
    flex: 1;
    color: white;
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
    margin: 0;
    border: none !important;
}

#prod-specs table.shop_attributes td p {
    margin: 0;
    padding: 0;
}

/* Fix descripción corta */
#prod-short-desc p br {
    content: "";
    display: block;
    margin-bottom: 15px;
}

#prod-title,
#prod-short-desc {
    animation: fadeIn 0.3s ease-in-out;
}


/* =========================================
   6. IMÁGENES Y ZOOM
   ========================================= */
#prod-main-img .elementor-widget-container {
    overflow: hidden;
    /*cursor: crosshair;*/
}

#prod-main-img img {
    transition: transform 0.1s linear;
    transform-origin: center center;
    will-change: transform;
    display: block;
}

#prod-gallery-container {
    display: flex;
    gap: 10px;
    /*overflow-x: auto;*/
}

.prod-gallery-img {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    background-color: #eaeaea !important;
}

img {
    box-shadow: none !important;
}


/* =========================================
   7. UTILIDADES Y FIXES
   ========================================= */

/* Fix PhotoSwipe (Galería Woo) */
.pswp:not(.pswp--open) {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -9999 !important;
    width: 0 !important;
    height: 0 !important;
}

/* Responsive Móvil */
@media (max-width: 768px) {
    #prod-specs table.shop_attributes tbody {
        grid-template-columns: 1fr;
    }

    .hardware-carousel-wrapper {
        padding: 0 10px;
    }

    .carousel-nav {
        display: none;
    }

    #prod-main-img .elementor-widget-container {
        pointer-events: none;
        /* Desactivar zoom en móvil */
    }
}

/* =========================================
   ESTILO UNIFICADO: ATRIBUTOS Y EXTRAS (Estilo "Etiqueta")
   ========================================= */

/* Título de cada sección */
.config-section-title {
    font-size: 14px;
    /* Un poco más pequeño */
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    margin-top: 20px;
    display: block;
    text-transform: capitalize;
}

/* Contenedor de la fila de botones */
.options-row {
    display: flex;
    gap: 10px;
    /* Espacio entre botones */
    margin-bottom: 5px;
    flex-wrap: wrap;
    /* Permite múltiples líneas si no caben */
    justify-content: flex-start;
    /* CLAVE: Alinea a la izquierda sin estirar */
}

/* ESTILO ÚNICO DEL BOTÓN (Variaciones y Extras iguales) */
.option-btn {
    /* flex-grow: 1, flex-shrink: 0, flex-basis: 30% */
    flex: 1 0 20%;
    min-width: 100px;
    /* Asegura que no sean diminutos en móviles */
    max-width: 30%;
    padding: 10px 15px;
    /* Un poco más de aire para clic fácil */
    justify-content: center;

    background-color: #ffffff;
    /* Fondo Blanco */
    border: 1px solid #d1d5db;
    /* Borde Gris suave */
    color: #6b7280;
    /* Texto Gris medio */

    font-family: 'Inter', sans-serif;
    font-size: 13px;
    /* Fuente ligeramente más pequeña */
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    border-radius: 6px;
    /* Bordes redondeados */

    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    /* Evita que el texto se rompa en dos líneas */
}

.option-btn.type-memoria,
.option-btn.type-capacidad {
    /* flex: 0 (no crecer), 1 (encoger si hace falta), auto (ancho del texto) */
    flex: 0 1 auto;
    width: 200px;
    /* Ancho automático según contenido */
    max-width: 250px;
    /* Opcional: limitar anchura máxima */
    padding: 8px 10px;
    /* Padding más ajustado */
}

/* ESTADO SELECCIONADO (ACTIVO - Estilo Dorado) */
.option-btn.selected {
    border-color: var(--jarv-gold);
    /* Borde Dorado */
    color: var(--jarv-gold);
    /* Texto Dorado oscuro para contraste */
    font-weight: 600;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Hover suave */
.option-btn:hover:not(.selected) {
    border-color: #9ca3af;
    /* Gris un poco más oscuro al pasar el mouse */
    background-color: #f9fafb;
}

@media (max-width: 1024px) {
    #prod-variations-container div {
        text-align: center;
        justify-content: center;
    }

    .main-price-display {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 736px) {
    .gold-btn {
        font-size: 15px;
    }

    #final-price-display,
    #plan-price-display {
        font-size: 25px;
    }

    .option-btn {
        max-width: 50%;
    }
}

/* =========================================
   WIZARD DE 2 PASOS Y TOGGLE
   ========================================= */

/* Navegación entre pasos */
.wizard-step {
    animation: fadeIn 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-actions {
    display: flex;
    justify-content: center;
    margin: 20px 0 0 0;
}

.step-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
    color: black;
    text-align: left;
}

.back-link {
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
    text-decoration: underline;
}

.step-title {
    font-weight: 700;
    font-size: 30px;
    text-transform: capitalize;
}

.step-description {
    font-weight: 300;
    /*text-transform: capitalize;*/
}

.partial-price-display {
    text-align: right;
    font-size: 14px;
    color: #6b7280;
    margin: 15px 0;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

#hardware-price-display {
    font-weight: 700;
    color: #000;
}

.full-width {
    width: 100%;
    display: block;
    text-align: center;
}

/* --- TOGGLE MENSUAL / ANUAL --- */
.billing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 15px;
    margin-bottom: 25px;
    background: #f9fafb;
    padding: 10px;
    border-radius: 50px;
}

.billing-label {
    font-weight: 600;
    font-size: 14px;
    color: #374151;
}

.discount-badge {
    background: #dcfce7;
    color: #166534;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    font-weight: 700;
}

/* El Switch CSS puro */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #eeba68;
    /* Dorado al activar */
}

input:checked+.slider:before {
    transform: translateX(20px);
}

/* Ajustes Tarjeta Plan para mostrar info */
.plan-info {
    flex-grow: 1;
}

.plan-desc {
    font-size: 11px;
    color: #9ca3af;
}

.price-subtext {
    font-size: 10px;
    color: #9ca3af;
    text-align: right;
}

/* =========================================
   SKELETON LOADING ANIMATION
   ========================================= */

/* La clase mágica */
.skeleton {
    background-color: #e1e1e1;
    /* Color base gris */
    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    background-position: -150% 0;
    animation: skeleton-shine 1.5s infinite linear;
    border-radius: 6px;
    /* Mismo radio que tus botones */
    color: transparent !important;
    /* Oculta texto si lo hubiera */
    pointer-events: none;
    /* Que no se pueda hacer click */
    border: none !important;
}

@keyframes skeleton-shine {
    to {
        background-position: 150% 0;
    }
}

/* Estilos para simular tus elementos antes de que carguen */
.skeleton-title {
    height: 14px;
    width: 120px;
    margin-bottom: 10px;
    margin-top: 15px;
}

.skeleton-btn {
    height: 40px;
    width: 30%;
    /* Simula tus botones de 30% */
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
}

/* Animación para la caja de la imagen mientras carga */
.skeleton-image-loading .elementor-widget-container {
    background-color: #e1e1e1;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: skeleton-shine 1.5s infinite linear;
    border-radius: 8px;
    /* Ajusta según tu diseño */
}

/* Opcional: Si usas una imagen transparente 1x1px, asegúrate que tenga altura */
.skeleton-image-loading img {
    min-height: 300px;
    /* Altura mínima para que se vea el bloque gris */
    object-fit: cover;
    opacity: 0;
    /* Oculta la imagen placeholder real si quieres ver solo el gris */
    transition: opacity 0.3s ease;
}

/* =========================================
   MEDIA QUERY: MODO COMPACTO (ZOOM 125% / LAPTOPS)
   ========================================= */
@media (max-height: 800px) {

    /* 1. Reducir márgenes verticales generales */
    .step-header {
        margin-bottom: 10px;

    }

    .billing-toggle-wrapper {
        margin-bottom: 10px;
        padding: 5px;

    }

    .main-price-display {
        margin-top: 5px;
        margin-bottom: 5px;

    }

    /* 2. Achicar textos de cabecera */
    .step-title,
    #prod-title {
        font-size: 22px;
        margin-bottom: 4px;

    }

    .step-description,
    #prod-short-desc {
        font-size: 12px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }

    /* Limita a 2 líneas */

    /* 3. Compactar las Tarjetas de Planes */
    .plans-container {
        gap: 6px;
    }

    .plan-card {
        padding: 6px 10px;
        min-height: 40px;
        /* Reducir altura mínima */
    }

    .plan-name {
        font-size: 13px;
    }

    .price-final {
        font-size: 16px;
    }

    .badge-discount {
        font-size: 10px;
        padding: 1px 4px;
    }

    .plan-circle {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }

    /* 4. Reducir Precios Gigantes Finales */
    #final-price-display,
    #plan-price-display {
        font-size: 28px;
    }

    .plus-sign {
        font-size: 20px;
    }

    .currency {
        font-size: 14px;
    }

    .small-iva {
        font-size: 12px;
    }

    /* 5. Botón de Compra más delgado */
    .gold-btn {
        min-height: 40px;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .add-to-cart-wrapper {
        margin: 10px 0;
    }
}

/* CASO EXTREMO (Pantallas muy bajitas o Zoom 150%) */
@media (max-height: 600px) {

    /*.step-description { display: none; } /* Ocultar descripción */
    .config-section-title {
        margin-top: 10px;
        margin-bottom: 4px;
    }

    .option-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* Reduce espacio entre título y descripción */
#prod-title .elementor-heading-title {
  margin-bottom: 4px !important;
  line-height: 1.1;
}

#prod-short-desc {
  margin-top: 0 !important;
}