/* =========================================================
   INSPIRAXION — WOOCOMMERCE
   FASE 6.1 · Ficha individual
========================================================= */


/* ---------------------------------------------------------
   CONTENEDOR GENERAL PRODUCTO
--------------------------------------------------------- */

.single-product .ix-woo-main {
    padding: 56px 0 80px;
}

.single-product div.product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 56px;
    align-items: start;
}


/* ---------------------------------------------------------
   GALERÍA
--------------------------------------------------------- */

.single-product div.product .woocommerce-product-gallery {
    width: 100%;
    margin: 0;
}

.single-product .woocommerce-product-gallery__wrapper {
    margin: 0;
}

.single-product .woocommerce-product-gallery__image {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #fff;
}

.single-product .woocommerce-product-gallery__image img {
    display: block;
    width: 100%;
    height: auto;
}


/* ---------------------------------------------------------
   RESUMEN / COLUMNA DERECHA
--------------------------------------------------------- */

.single-product div.product .summary {
    width: 100%;
    margin: 0;
    padding: 8px 0 0;
}

.single-product div.product .product_title {
    margin: 0 0 14px;
    color: #0f2942;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.single-product div.product .price {
    margin: 0 0 22px;
    color: #0d7485;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.single-product div.product .woocommerce-product-details__short-description {
    margin: 0 0 26px;
    color: #526273;
    font-size: 16px;
    line-height: 1.7;
}

.single-product div.product .woocommerce-product-details__short-description p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   COMPRA
--------------------------------------------------------- */

.single-product div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 0 0 28px;
}

.single-product div.product form.cart .quantity {
    margin: 0;
}

.single-product div.product form.cart .qty {
    width: 84px;
    min-height: 50px;
    padding: 0 12px;
    border: 1px solid #d5dde5;
    border-radius: 12px;
    background: #fff;
    color: #17324d;
    font-size: 16px;
    text-align: center;
}

.single-product div.product .single_add_to_cart_button,
.single-product div.product .button {
    min-height: 50px;
    padding: 13px 24px;
    border: 0;
    border-radius: 999px;
    background: #0d7485;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.single-product div.product .single_add_to_cart_button:hover,
.single-product div.product .button:hover {
    background: #095f6d;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(13, 116, 133, 0.18);
}


/* ---------------------------------------------------------
   META SKU / CATEGORÍA
--------------------------------------------------------- */

.single-product div.product .product_meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #e8edf1;
    color: #708090;
    font-size: 14px;
}

.single-product div.product .product_meta a {
    color: #0d7485;
    text-decoration: none;
}

.single-product div.product .product_meta a:hover {
    text-decoration: underline;
}


/* ---------------------------------------------------------
   TABS / INFORMACIÓN INFERIOR
--------------------------------------------------------- */

.single-product div.product .woocommerce-tabs {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 24px;
    padding-top: 36px;
    border-top: 1px solid #e8edf1;
}

.single-product div.product .woocommerce-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
    padding: 0;
}

.single-product div.product .woocommerce-tabs ul.tabs::before,
.single-product div.product .woocommerce-tabs ul.tabs::after {
    display: none;
}

.single-product div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #f2f6f8;
}

.single-product div.product .woocommerce-tabs ul.tabs li::before,
.single-product div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.single-product div.product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 11px 18px;
    color: #536273;
    font-size: 14px;
    font-weight: 700;
}

.single-product div.product .woocommerce-tabs ul.tabs li.active {
    background: #0f2942;
}

.single-product div.product .woocommerce-tabs ul.tabs li.active a {
    color: #fff;
}

.single-product div.product .woocommerce-Tabs-panel {
    margin: 0;
    color: #526273;
    line-height: 1.75;
}

.single-product div.product .woocommerce-Tabs-panel h2 {
    margin: 0 0 18px;
    color: #0f2942;
    font-size: 26px;
}


/* ---------------------------------------------------------
   PRODUCTOS RELACIONADOS
--------------------------------------------------------- */

.single-product .related.products,
.single-product .up-sells {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 54px;
}

.single-product .related.products > h2,
.single-product .up-sells > h2 {
    margin-bottom: 26px;
    color: #0f2942;
    font-size: 30px;
    line-height: 1.15;
}


/* ---------------------------------------------------------
   RESPONSIVE BASE
--------------------------------------------------------- */

@media (max-width: 900px) {

    .single-product .ix-woo-main {
        padding: 32px 0 56px;
    }

    .single-product div.product {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .single-product div.product .summary {
        padding-top: 0;
    }

    .single-product div.product .woocommerce-tabs,
    .single-product .related.products,
    .single-product .up-sells {
        grid-column: auto;
    }

}


@media (max-width: 600px) {

    .single-product div.product .product_title {
        font-size: 30px;
    }

    .single-product div.product .price {
        font-size: 26px;
    }

    .single-product div.product form.cart {
        align-items: stretch;
    }

    .single-product div.product .single_add_to_cart_button {
        flex: 1;
    }

}

/* =========================================================
   FASE 6.1 · PASO 3
   CORRECCIÓN BLOQUE SUPERIOR PRODUCTO
========================================================= */

.single-product .ix-woo-main > .ix-container {
    max-width: 1240px;
}

.single-product div.product {
    grid-template-columns: minmax(440px, 1fr) minmax(440px, 1fr);
    gap: 72px;
}


/* Forzar a WooCommerce a soltar sus anchos/floats antiguos */

.single-product div.product div.images,
.single-product div.product div.summary,
.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary {
    float: none !important;
    width: 100% !important;
}


/* GALERÍA */

.single-product div.product div.images {
    margin: 0 !important;
}

.single-product .woocommerce-product-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.single-product .woocommerce-product-gallery__wrapper {
    width: 100%;
}

.single-product .woocommerce-product-gallery__image {
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #fff;
}

.single-product .woocommerce-product-gallery__image img {
    width: 100%;
    max-width: 500px;
    max-height: 500px;
    object-fit: contain;
}


/* RESUMEN */

.single-product div.product .summary {
    max-width: 520px;
    padding-top: 18px;
}

.single-product div.product .product_title {
    max-width: 520px;
    font-size: clamp(34px, 3.1vw, 48px);
}

.single-product div.product .woocommerce-product-details__short-description {
    max-width: 500px;
    font-size: 17px;
    line-height: 1.65;
}


/* Precio */

.single-product div.product .price {
    margin-top: 6px;
    margin-bottom: 24px;
}


/* CTA */

.single-product div.product .single_add_to_cart_button,
.single-product div.product .button {
    padding-left: 30px;
    padding-right: 30px;
}


/* META */

.single-product div.product .product_meta {
    max-width: 500px;
}


/* TABLET */

@media (max-width: 1000px) {

    .single-product div.product {
        grid-template-columns: minmax(340px, 1fr) minmax(340px, 1fr);
        gap: 40px;
    }

    .single-product .woocommerce-product-gallery__image {
        min-height: 400px;
        padding: 28px;
    }

}


/* MÓVIL */

@media (max-width: 760px) {

    .single-product div.product {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .single-product div.product .summary {
        max-width: none;
    }

    .single-product .woocommerce-product-gallery__image {
        min-height: auto;
        padding: 22px;
    }

}

/* =========================================================
   FASE 6.1
   DESCRIPCIÓN SIN PESTAÑA SOLITARIA
========================================================= */

/* Ocultamos la navegación cuando solo queda Descripción */
.single-product .woocommerce-tabs ul.tabs {
    display: none;
}

.single-product div.product .woocommerce-tabs {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #dde6ec;
}

.single-product div.product .woocommerce-Tabs-panel {
    max-width: 1000px;
}

.single-product div.product .woocommerce-Tabs-panel h2 {
    margin-bottom: 24px;
    font-size: 30px;
    color: #0f2942;
}

/* =========================================================
   FICHA INDIVIDUAL — descripción más armónica
   ========================================================= */

html {
  scroll-behavior: smooth;
}

/* Ancla de descripción con compensación por header fijo */
.single-product #tab-description {
  scroll-margin-top: 130px;
}

/* Botón más información */
.single-product .ix-product-more-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  margin: 18px 0 24px;
  border-radius: 999px;
  background: #f2db00;
  color: #163247;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.single-product .ix-product-more-info:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
  text-decoration: none;
}

/* Si solo queda descripción, ocultamos la barra de tabs */
.single-product .woocommerce-tabs ul.tabs {
  display: none;
}

/* Contenedor general descripción */
.single-product .woocommerce-tabs {
  margin-top: 56px;
  padding-top: 42px;
  border-top: 1px solid #dbe4ea;
}

/* Panel descripción */
.single-product .woocommerce-Tabs-panel {
  max-width: 980px;
}

/* Título principal descripción */
.single-product .woocommerce-Tabs-panel > h2 {
  margin: 0 0 26px;
  font-size: 2rem;
  font-weight: 800;
  color: #0f2942;
  line-height: 1.15;
}

/* Subtítulos dentro de la descripción */
.single-product .woocommerce-Tabs-panel h3,
.single-product .woocommerce-Tabs-panel h4,
.single-product .woocommerce-Tabs-panel h5 {
  margin: 34px 0 14px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #163247;
  line-height: 1.25;
}

/* Párrafos más elegantes */
.single-product .woocommerce-Tabs-panel p {
  margin: 0 0 18px;
  color: #425869;
  font-size: 1rem;
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-word;
}

/* Listas más limpias */
.single-product .woocommerce-Tabs-panel ul,
.single-product .woocommerce-Tabs-panel ol {
  margin: 0 0 24px 1.4rem;
  padding: 0;
}

.single-product .woocommerce-Tabs-panel li {
  margin: 0 0 10px;
  color: #425869;
  line-height: 1.85;
  text-align: justify;
}

/* Texto destacado / cursiva final */
.single-product .woocommerce-Tabs-panel em {
  display: inline-block;
  margin-top: 10px;
  color: #5c6f7d;
  line-height: 1.8;
}

/* Separación en móvil */
@media (max-width: 767px) {
  .single-product .woocommerce-tabs {
    margin-top: 42px;
    padding-top: 30px;
  }

  .single-product .woocommerce-Tabs-panel > h2 {
    font-size: 1.7rem;
  }

  .single-product .woocommerce-Tabs-panel h3,
  .single-product .woocommerce-Tabs-panel h4,
  .single-product .woocommerce-Tabs-panel h5 {
    font-size: 1.18rem;
  }

  .single-product .woocommerce-Tabs-panel p,
  .single-product .woocommerce-Tabs-panel li {
    text-align: left;
  }
}

/* =========================================================
   FASE 6.2 — CATÁLOGO / TARJETAS DE PRODUCTO
========================================================= */


/* ---------------------------------------------------------
   CABECERA CATÁLOGO
--------------------------------------------------------- */

.woocommerce-shop .ix-woo-main,
.post-type-archive-product .ix-woo-main {
    padding-top: 64px;
    padding-bottom: 80px;
}

.woocommerce-shop .woocommerce-products-header__title,
.post-type-archive-product .woocommerce-products-header__title {
    margin: 0 0 28px;
    color: #0f2942;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.1;
    font-weight: 800;
}


/* ---------------------------------------------------------
   TOOLBAR
--------------------------------------------------------- */

.woocommerce .woocommerce-result-count {
    margin: 0 0 30px;
    color: #607283;
    font-size: 14px;
}

.woocommerce .woocommerce-ordering {
    margin: 0 0 30px;
}

.woocommerce .woocommerce-ordering select {
    min-height: 44px;
    padding: 0 42px 0 15px;
    border: 1px solid #d9e2e8;
    border-radius: 12px;
    background: #fff;
    color: #223b50;
    font-family: inherit;
    font-size: 14px;
}


/* ---------------------------------------------------------
   GRID
--------------------------------------------------------- */

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}


/* ---------------------------------------------------------
   TARJETA
--------------------------------------------------------- */

.woocommerce ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 0 22px;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    border: 1px solid #e1e8ed;
    border-radius: 20px;
    background: #fff;

    box-shadow: 0 8px 24px rgba(18, 48, 69, 0.045);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    border-color: #c9d9e1;
    box-shadow: 0 18px 38px rgba(18, 48, 69, 0.10);
}


/* ---------------------------------------------------------
   IMAGEN
--------------------------------------------------------- */

.woocommerce ul.products li.product > a.woocommerce-LoopProduct-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: inherit;
    text-decoration: none;
}

.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin: 0 0 20px !important;
    padding: 24px;

    border-bottom: 1px solid #edf1f4;
    background: #f8fafb;
}


/* ---------------------------------------------------------
   CATEGORÍA
--------------------------------------------------------- */

.ix-product-card-category {
    margin: 0 20px 8px;
    color: #148a9a;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   NOMBRE
--------------------------------------------------------- */

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    margin: 0 20px 12px !important;
    padding: 0 !important;

    color: #102f49;
    font-size: 16px !important;
    line-height: 1.45;
    font-weight: 750;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: calc(1.45em * 3);
}


/* ---------------------------------------------------------
   PRECIO
--------------------------------------------------------- */

.woocommerce ul.products li.product .price {
    display: block;
    margin: auto 20px 18px !important;

    color: #0d7485 !important;
    font-size: 17px !important;
    line-height: 1.3;
    font-weight: 800 !important;
}

.woocommerce ul.products li.product .price ins {
    color: inherit;
    text-decoration: none;
}

.woocommerce ul.products li.product .price del {
    margin-right: 6px;
    color: #8a99a5;
    font-size: 13px;
}


/* ---------------------------------------------------------
   BOTONES
--------------------------------------------------------- */

.woocommerce ul.products li.product .button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: calc(100% - 40px);
    min-height: 46px;

    margin: 0 20px !important;
    padding: 11px 16px !important;

    border: 0 !important;
    border-radius: 999px !important;

    background: #0d7485 !important;
    color: #fff !important;

    font-size: 14px !important;
    line-height: 1.2;
    font-weight: 750 !important;
    text-align: center;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.woocommerce ul.products li.product .button:hover {
    background: #095f6d !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(13, 116, 133, .20);
}


/* ---------------------------------------------------------
   PAGINACIÓN
--------------------------------------------------------- */

.woocommerce nav.woocommerce-pagination {
    margin-top: 48px;
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 7px;

    margin: 0;
    padding: 0;

    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 42px;
    padding: 0 12px;

    border: 1px solid #dbe4e9;
    border-radius: 10px;

    background: #fff;
    color: #284154;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    border-color: #0d7485;
    background: #0d7485;
    color: #fff;
}


/* ---------------------------------------------------------
   RESPONSIVE BASE
--------------------------------------------------------- */

@media (max-width: 1100px) {

    .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 780px) {

    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

}

@media (max-width: 520px) {

    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   FASE 6.3 — FILTRO DE CATEGORÍAS
========================================================= */

.ix-shop-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    width: 100%;
    margin: 0 0 32px;
}

.ix-shop-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 9px 17px;

    border: 1px solid #d6e2e8;
    border-radius: 999px;

    background: #fff;
    color: #345064;

    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.ix-shop-category:hover {
    border-color: #0d7485;
    color: #0d7485;
    transform: translateY(-1px);
}

.ix-shop-category.is-active {
    border-color: #0d7485;
    background: #0d7485;
    color: #fff;
}

@media (max-width: 600px) {

    .ix-shop-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
    }

    .ix-shop-category {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

/* =========================================================
   FASE 6.4 — AJUSTES MÓVIL
========================================================= */

@media (max-width: 760px) {

    /* Eliminar definitivamente la pestaña solitaria Descripción */
    .single-product div.product .woocommerce-tabs ul.tabs,
    .single-product .woocommerce-tabs ul.wc-tabs,
    .single-product .wc-tabs {
        display: none !important;
    }

    /* Acercar descripción al bloque principal */
    .single-product div.product .woocommerce-tabs {
        margin-top: 28px !important;
        padding-top: 30px !important;
    }

    /* Evitar espacio excesivo después de SKU/categoría */
    .single-product div.product .product_meta {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    /* Título producto */
    .single-product div.product .product_title {
        font-size: 34px;
        line-height: 1.08;
    }

    /* CTA compra */
    .single-product div.product form.cart {
        width: 100%;
        gap: 14px;
    }

    .single-product div.product form.cart .quantity {
        flex: 0 0 84px;
    }

    .single-product div.product form.cart .single_add_to_cart_button {
        flex: 1;
    }

    /* Botón Más información */
    .single-product .ix-product-more-info {
        margin-top: 14px;
        margin-bottom: 22px;
    }

    /* Descripción */
    .single-product .woocommerce-Tabs-panel > h2 {
        margin-top: 0;
    }

}


/* Móvil pequeño */
@media (max-width: 420px) {

    .woocommerce-shop .ix-woo-main,
    .post-type-archive-product .ix-woo-main {
        padding-top: 36px;
    }

    .woocommerce ul.products {
        gap: 20px;
    }

    .woocommerce ul.products li.product {
        border-radius: 18px;
    }

    .woocommerce ul.products li.product a img {
        padding: 18px;
    }

}

/* =========================================================
   FASE 6.4 — CATEGORÍAS MÓVIL
========================================================= */

.ix-shop-category-mobile {
    display: none;
}

@media (max-width: 760px) {

    /* Sacamos los chips en móvil */
    .ix-shop-categories {
        display: none !important;
    }

    /* Selector móvil */
    .ix-shop-category-mobile {
        display: block;
        width: 100%;
        margin: 0 0 24px;
    }

    .ix-shop-category-mobile label {
        display: block;
        margin: 0 0 8px;

        color: #0f2942;
        font-size: 13px;
        font-weight: 800;
    }

    .ix-shop-category-mobile select {
        display: block;
        width: 100%;
        min-height: 50px;

        padding: 0 44px 0 16px;

        border: 1px solid #d5e1e7;
        border-radius: 14px;

        background: #fff;
        color: #17344a;

        font-family: inherit;
        font-size: 15px;
        font-weight: 650;
    }
}

/* =========================================================
   FASE 6.5 — PULIDO FINAL FICHA
========================================================= */

/* WooCommerce: eliminar navegación de tabs definitivamente */
.single-product .woocommerce-tabs ul.tabs,
.single-product .woocommerce-tabs ul.wc-tabs,
.single-product .wc-tabs {
    display: none !important;
}

/* Acercar información técnica al bloque principal */
.single-product div.product .woocommerce-tabs {
    margin-top: 28px !important;
    padding-top: 38px !important;
}

/* Evitar hueco excesivo generado por el grid */
.single-product div.product .product_meta {
    margin-bottom: 0 !important;
}

/* Descripción más contenida y legible */
.single-product .woocommerce-Tabs-panel {
    max-width: 1050px;
}

.single-product .woocommerce-Tabs-panel > h2 {
    margin-top: 0 !important;
}


/* Móvil */
@media (max-width: 760px) {

    .single-product div.product .woocommerce-tabs {
        margin-top: 20px !important;
        padding-top: 28px !important;
    }

}

/* =========================================================
   FASE 6.5 — PULIDO FINAL DESCRIPCIÓN
========================================================= */

.single-product .woocommerce-Tabs-panel {
    max-width: 980px;
}

.single-product .woocommerce-Tabs-panel > h2 {
    margin-bottom: 26px !important;
    font-size: 30px;
}

.single-product .woocommerce-Tabs-panel h3,
.single-product .woocommerce-Tabs-panel h4 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.single-product .woocommerce-Tabs-panel p,
.single-product .woocommerce-Tabs-panel li {
    font-size: 16px;
    line-height: 1.8;
}

.single-product .woocommerce-Tabs-panel ul {
    padding-left: 22px;
}

/* =========================================================
   FASE 6.5 — FORMULARIO COTIZACIÓN
========================================================= */

.page-id-245023 input[type="submit"],
.page-id-245023 button[type="submit"] {
    min-height: 48px;
    padding: 12px 28px;

    border: 0;
    border-radius: 999px;

    background: #0d7485;
    color: #fff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.page-id-245023 input[type="submit"]:hover,
.page-id-245023 button[type="submit"]:hover {
    background: #095f6d;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(13, 116, 133, .20);
}