/* ==========================================================
   DHT DESIGN SYSTEM
   DistribuidorDeHerramientas.es
   Hoja común para FRONT, categorías, hubs y productos
========================================================== */


/* ==========================================================
   01. VARIABLES
========================================================== */

:root {
    --dht-primary: #007acc;
    --dht-primary-dark: #005b96;
    --dht-secondary: #f0b400;

    --dht-dark: #101820;
    --dht-dark-soft: #1c2d3d;

    --dht-white: #ffffff;
    --dht-bg: #f7f8fa;
    --dht-bg-light: #fafbfc;

    --dht-text: #222222;
    --dht-text-soft: #5b6570;
    --dht-border: #e7ebef;

    --dht-success: #1d6b43;
    --dht-error: #c62828;

    --dht-radius-small: 8px;
    --dht-radius: 14px;
    --dht-radius-large: 20px;

    --dht-shadow-small: 0 8px 24px rgba(0, 0, 0, .05);
    --dht-shadow: 0 14px 35px rgba(0, 0, 0, .08);
    --dht-shadow-large: 0 24px 65px rgba(0, 0, 0, .14);

    --dht-container: 1400px;
    --dht-content: 1050px;

    --dht-transition: .25s ease;
}


/* ==========================================================
   02. RESET LIMITADO
========================================================== */

.dht-page,
.dht-page *,
.dht-page *::before,
.dht-page *::after,
.dht-home,
.dht-home *,
.dht-home *::before,
.dht-home *::after {
    box-sizing: border-box;
}

.dht-page,
.dht-home {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: var(--dht-white);
    color: var(--dht-text);
    font-size: 16px;
    line-height: 1.75;
}

.dht-page img,
.dht-home img {
    display: block;
    max-width: 100%;
    height: auto;
}

.dht-page a,
.dht-home a {
    color: inherit;
    text-decoration: none;
    transition: var(--dht-transition);
}

.dht-page button,
.dht-page input,
.dht-page textarea,
.dht-page select,
.dht-home button,
.dht-home input,
.dht-home textarea,
.dht-home select {
    font: inherit;
}


/* ==========================================================
   03. CONTENEDORES
========================================================== */

.dht-container {
    width: min(var(--dht-container), 92%);
    margin-inline: auto;
}

.dht-content {
    width: min(var(--dht-content), 92%);
    margin-inline: auto;
}


/* ==========================================================
   04. TIPOGRAFÍA COMÚN
========================================================== */

.dht-page h1,
.dht-page h2,
.dht-page h3,
.dht-page h4,
.dht-home h1,
.dht-home h2,
.dht-home h3,
.dht-home h4 {
    margin: 0 0 20px;
    color: var(--dht-text);
    font-weight: 700;
    line-height: 1.2;
}

.dht-page h1,
.dht-home h1 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
}

.dht-page h2,
.dht-home h2 {
    font-size: clamp(28px, 4vw, 40px);
}

.dht-page h3,
.dht-home h3 {
    font-size: 24px;
}

.dht-page p,
.dht-home p {
    margin: 0 0 22px;
    color: var(--dht-text-soft);
    line-height: 1.85;
}

.dht-lead {
    font-size: clamp(18px, 2vw, 21px);
    color: #4f5963;
    line-height: 1.85;
}

.dht-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: var(--dht-secondary);
    color: #111;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}


/* ==========================================================
   05. SECCIONES Y FONDOS
========================================================== */

.dht-section {
    padding: 75px 0;
}

.dht-section-small {
    padding: 45px 0;
}

.dht-bg-white {
    background: var(--dht-white);
}

.dht-bg-light {
    background: var(--dht-bg-light);
}

.dht-bg-gray {
    background: var(--dht-bg);
}

.dht-bg-dark {
    background: var(--dht-dark);
    color: var(--dht-white);
}

.dht-section-header {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.dht-section-title {
    margin-bottom: 14px !important;
}

.dht-section-subtitle {
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

.dht-section-header--left {
    max-width: none;
    margin-inline: 0;
    text-align: left;
}


/* ==========================================================
   06. BOTONES
========================================================== */

.dht-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border: 0;
    border-radius: var(--dht-radius-small);
    font-weight: 700;
    cursor: pointer;
    transition: var(--dht-transition);
}

.dht-btn:hover {
    transform: translateY(-2px);
}

.dht-btn-primary {
    background: var(--dht-secondary);
    color: #111;
}

.dht-btn-dark {
    background: var(--dht-dark);
    color: var(--dht-white);
}

.dht-btn-blue {
    background: var(--dht-primary);
    color: var(--dht-white);
}

.dht-btn-blue:hover {
    background: var(--dht-primary-dark);
}


/* ==========================================================
   07. GRIDS
========================================================== */

.dht-grid {
    display: grid;
    gap: 28px;
}

.dht-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dht-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dht-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dht-grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}


/* ==========================================================
   08. TARJETAS COMUNES
========================================================== */

.dht-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    background: var(--dht-white);
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-large);
    box-shadow: var(--dht-shadow-small);
    transition: var(--dht-transition);
}

.dht-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dht-shadow);
}

.dht-card-image {
    overflow: hidden;
    background: var(--dht-bg-light);
}

.dht-card-image img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    padding: 18px;
    transition: transform var(--dht-transition);
}

.dht-card:hover .dht-card-image img {
    transform: scale(1.04);
}

.dht-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.dht-card-body h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.dht-card-body p {
    margin-bottom: 20px;
    font-size: 15px;
}

.dht-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--dht-border);
    color: var(--dht-primary);
    font-size: 14px;
    font-weight: 700;
}


/* ==========================================================
   09. FRONT
========================================================== */

.dht-hero {
    padding: 75px 0 60px;
    background: linear-gradient(135deg, var(--dht-dark), var(--dht-dark-soft));
    color: var(--dht-white);
}

.dht-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    align-items: center;
}

.dht-hero h1 {
    color: var(--dht-white);
}

.dht-hero p {
    color: #d7dde4;
    font-size: 18px;
}

.dht-hero-card {
    padding: 35px;
    background: var(--dht-white);
    border-radius: var(--dht-radius-large);
    color: var(--dht-text);
    box-shadow: var(--dht-shadow-large);
}

.dht-hero-card h2 {
    font-size: 28px;
}

.dht-features {
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.dht-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--dht-border);
}

.dht-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}


.dht-category-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    background: var(--dht-white);
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-large);
    box-shadow: var(--dht-shadow-small);
    transition: var(--dht-transition);
}

.dht-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dht-shadow);
}

.dht-category-card img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    padding: 18px;
    background: var(--dht-bg-light);
}

.dht-category-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.dht-category-content h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.dht-category-content p {
    margin: 0;
    font-size: 15px;
}

.dht-category-description-section {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.dht-category-description-section .dht-category-description {
    max-width: 100%;
}

.dht-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.dht-product-block h2 {
    margin-bottom: 25px;
    font-size: 30px;
}

.dht-trust {
    background: var(--dht-dark);
    color: var(--dht-white);
}

.dht-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.dht-trust-card {
    padding: 30px;
    border-radius: var(--dht-radius-large);
    background: rgba(255, 255, 255, .06);
}

.dht-trust-card h3 {
    color: var(--dht-white);
}

.dht-trust-card p {
    margin: 0;
    color: #d6dde5;
}

.dht-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.dht-contact-box {
    padding: 36px;
    background: var(--dht-bg);
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-large);
}


/* ==========================================================
   10. PRODUCTOS WOOCOMMERCE
========================================================== */

.dht-page ul.products,
.dht-home ul.products,
.dht-category-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.dht-page ul.products::before,
.dht-page ul.products::after,
.dht-home ul.products::before,
.dht-home ul.products::after {
    display: none !important;
}

.dht-page ul.products li.product,
.dht-home ul.products li.product,
.dht-category-products ul.products li.product {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 0 20px !important;
    flex-direction: column !important;
    overflow: hidden !important;
    background: var(--dht-white) !important;
    border: 1px solid var(--dht-border) !important;
    border-radius: var(--dht-radius-large) !important;
    box-shadow: var(--dht-shadow-small) !important;
    transition: var(--dht-transition) !important;
}

.dht-page ul.products li.product:hover,
.dht-home ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: var(--dht-shadow) !important;
}

.dht-page ul.products li.product a,
.dht-home ul.products li.product a {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.dht-page ul.products li.product img,
.dht-home ul.products li.product img {
    width: 100% !important;
    height: 230px !important;
    margin: 0 !important;
    padding: 20px !important;
    object-fit: contain !important;
    background: var(--dht-white);
}

.dht-page ul.products li.product .woocommerce-loop-product__title,
.dht-home ul.products li.product .woocommerce-loop-product__title {
    min-height: 72px;
    margin: 0 !important;
    padding: 20px 20px 10px !important;
    color: var(--dht-text);
    font-size: 18px !important;
    line-height: 1.45 !important;
}

.dht-page ul.products li.product .price,
.dht-home ul.products li.product .price {
    display: block;
    margin: 0 !important;
    padding: 0 20px 15px !important;
    color: var(--dht-primary) !important;
    font-size: 21px !important;
    font-weight: 700 !important;
}

.dht-page ul.products li.product .button,
.dht-home ul.products li.product .button {
    margin: auto 20px 0 !important;
    padding: 12px 16px !important;
    border-radius: var(--dht-radius-small) !important;
    background: var(--dht-primary) !important;
    color: var(--dht-white) !important;
    text-align: center !important;
    font-weight: 700 !important;
}

.dht-page ul.products li.product .button:hover,
.dht-home ul.products li.product .button:hover {
    background: var(--dht-primary-dark) !important;
}


/* ==========================================================
   11. CATEGORÍA
========================================================== */

.dht-category-page {
    background: var(--dht-white);
}

.dht-category-hero {
    padding: 65px 0 75px;
    background: var(--dht-white);
}

.dht-category-hero-grid {
    display: grid;
    grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.dht-category-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    padding: 28px;
    background: var(--dht-bg-light);
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-large);
    box-shadow: var(--dht-shadow-small);
}

.dht-category-media img {
    width: 100%;
    max-width: 360px;
    max-height: 360px;
    object-fit: contain;
}

.dht-category-summary {
    min-width: 0;
}

.dht-category-summary h1 {
    margin-bottom: 20px;
}

.dht-category-excerpt {
    margin-bottom: 25px;
    font-size: 20px;
    color: #4f5963;
    line-height: 1.8;
}

.dht-category-description {
    max-width: 850px;
    color: var(--dht-text-soft);
}

.dht-category-description > :first-child {
    margin-top: 0;
}

.dht-category-description > :last-child {
    margin-bottom: 0;
}

.dht-category-features {
    margin-top: 28px;
    padding: 24px;
    background: var(--dht-bg);
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius);
}

.dht-category-features h2 {
    margin-bottom: 16px;
    font-size: 20px;
}

.dht-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dht-category-tag {
    display: inline-flex;
    padding: 7px 13px;
    border: 1px solid #d8dde3;
    border-radius: 999px;
    background: var(--dht-white);
    color: #344454;
    font-size: 13px;
    font-weight: 600;
}

.dht-category-products {
    background: var(--dht-bg);
}

.dht-category-products-panel {
    padding: 38px;
    background: var(--dht-white);
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-large);
    box-shadow: var(--dht-shadow-small);
}

.dht-category-related {
    background: var(--dht-white);
}

.dht-category-card-meta {
    color: var(--dht-text-soft);
    font-weight: 500;
}


/* ==========================================================
   12. FAQ
   Compatibilidad con los módulos actuales taxonomy-*
========================================================== */

.dht-category-page .taxonomy-faq {
    padding: 75px 0;
    background: var(--dht-bg-light);
}

.dht-category-page .taxonomy-faq .taxonomy-container,
.dht-category-page .taxonomy-faq-form .taxonomy-container {
    width: min(var(--dht-container), 92%);
    margin-inline: auto;
}

.dht-category-page .taxonomy-section-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.dht-category-page .taxonomy-section-header h2 {
    margin-bottom: 14px;
    font-size: clamp(28px, 4vw, 40px);
}

.dht-category-page .taxonomy-section-header p {
    margin: 0;
    font-size: 17px;
}

.dht-category-page .taxonomy-faq-list {
    display: grid;
    max-width: 950px;
    margin: 0 auto;
    gap: 14px;
}

.dht-category-page .taxonomy-faq-item {
    overflow: hidden;
    background: var(--dht-white);
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius);
    box-shadow: var(--dht-shadow-small);
}

.dht-category-page .taxonomy-faq-question {
    position: relative;
    padding: 20px 58px 20px 22px;
    color: var(--dht-text);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.dht-category-page .taxonomy-faq-question::-webkit-details-marker {
    display: none;
}

.dht-category-page .taxonomy-faq-question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    color: var(--dht-primary);
    font-size: 26px;
    line-height: 1;
    transform: translateY(-50%);
}

.dht-category-page .taxonomy-faq-item[open] .taxonomy-faq-question::after {
    content: "−";
}

.dht-category-page .taxonomy-faq-answer {
    padding: 0 22px 22px;
    border-top: 1px solid var(--dht-border);
    color: var(--dht-text-soft);
}

.dht-category-page .taxonomy-faq-answer > :first-child {
    margin-top: 18px;
}


/* ==========================================================
   13. FORMULARIO FAQ
   Compatibilidad con el módulo actual
========================================================== */

.dht-category-page .taxonomy-faq-form {
    padding: 75px 0;
    background: var(--dht-white);
}

.dht-category-page .taxonomy-faq-form-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 42px;
    background: var(--dht-bg);
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-large);
    box-shadow: var(--dht-shadow-small);
}

.dht-category-page .seo-faq-form {
    display: grid;
    gap: 20px;
}

.dht-category-page .seo-faq-form-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--dht-text);
    font-weight: 700;
}

.dht-category-page .seo-faq-form-field input,
.dht-category-page .seo-faq-form-field textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--dht-white);
    border: 1px solid #d5dce1;
    border-radius: 10px;
    color: var(--dht-text);
}

.dht-category-page .seo-faq-form-field input:focus,
.dht-category-page .seo-faq-form-field textarea:focus {
    outline: none;
    border-color: var(--dht-primary);
    box-shadow: 0 0 0 4px rgba(0, 122, 204, .1);
}

.dht-category-page .seo-faq-form-privacy {
    color: var(--dht-text-soft);
    font-size: 14px;
}

.dht-category-page .seo-faq-form-button {
    justify-self: start;
    min-height: 50px;
    padding: 0 26px;
    border: 0;
    border-radius: var(--dht-radius-small);
    background: var(--dht-primary);
    color: var(--dht-white);
    font-weight: 700;
    cursor: pointer;
}

.dht-category-page .seo-faq-form-button:hover {
    background: var(--dht-primary-dark);
}


/* ==========================================================
   14. HUBS Y CLUSTERS
   Compatibilidad temporal con las plantillas actuales
========================================================== */

.hub-container,
.cluster-container,
.page-container {
    width: min(var(--dht-container), 92%);
    margin-inline: auto;
}

.hub-hero,
.cluster-hero {
    padding: 70px 0 50px;
    background: linear-gradient(135deg, var(--dht-dark), var(--dht-dark-soft));
    color: var(--dht-white);
}

.hub-title,
.cluster-title {
    margin: 0 0 20px;
    color: var(--dht-white);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
}

.hub-excerpt,
.cluster-excerpt {
    max-width: 850px;
    color: #d7dde4;
    font-size: 18px;
    line-height: 1.8;
}

.hub-section,
.hub-links,
.hub-content,
.cluster-section {
    padding: 70px 0;
}

.hub-grid,
.cluster-grid,
.hub-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.hub-card,
.cluster-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    background: var(--dht-white);
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-large);
    box-shadow: var(--dht-shadow-small);
}

.hub-img,
.cluster-img {
    height: 230px;
    background: var(--dht-bg-light);
}

.hub-img img,
.cluster-img img {
    width: 100%;
    height: 100%;
    padding: 18px;
    object-fit: contain;
}

.hub-body,
.cluster-body {
    padding: 24px;
}


/* ==========================================================
   15. PRODUCTO
   Mantiene compatibilidad con template-product.php
========================================================== */

.dh-product-page {
    width: min(var(--dht-container), 92%);
    margin: 45px auto;
}

.dh-product-layout {
    display: grid;
    grid-template-columns: minmax(340px, .95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: start;
}

.dh-product-gallery,
.dh-buybox-card {
    background: var(--dht-white);
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius);
    box-shadow: var(--dht-shadow-small);
}

.dh-product-gallery {
    padding: 20px;
}

.dh-gallery-main {
    display: flex;
    min-height: 420px;
    align-items: center;
    justify-content: center;
}

.dh-gallery-main img {
    width: auto;
    max-width: 86%;
    max-height: 520px;
    object-fit: contain;
}

.dh-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.dh-gallery-thumb {
    width: 66px;
    height: 66px;
    padding: 3px;
    background: var(--dht-white);
    border: 1px solid var(--dht-border);
    border-radius: 8px;
}

.dh-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dh-product-title {
    margin: 0 0 15px;
    font-size: clamp(28px, 3vw, 42px);
}

.dh-buybox-card {
    padding: 24px;
}

.dh-price-current,
.dh-price-normal .price {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
}

.dh-product-excerpt {
    margin-top: 24px;
    color: #374151;
}

.dh-product-description,
.dh-related-products,
.dh-product-reviews,
.dh-related-categories,
.dh-technical-tags {
    margin-top: 55px;
}


/* ==========================================================
   16. RESPONSIVE
========================================================== */

@media (max-width: 1100px) {
    .dht-page ul.products,
    .dht-home ul.products,
    .dht-category-products ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 980px) {
    .dht-hero-grid,
    .dht-category-hero-grid,
    .dht-products,
    .dht-trust-grid,
    .dht-contact-grid,
    .dh-product-layout {
        grid-template-columns: 1fr;
    }

    .dht-category-media {
        min-height: 340px;
    }

    .dht-grid-4,
    .dht-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .dht-section,
    .dht-category-page .taxonomy-faq,
    .dht-category-page .taxonomy-faq-form {
        padding: 55px 0;
    }

    .dht-page ul.products,
    .dht-home ul.products,
    .dht-category-products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

    .dht-category-products-panel {
        padding: 22px;
    }

    .dht-page ul.products li.product img,
    .dht-home ul.products li.product img {
        height: 190px !important;
    }

    .dht-category-page .taxonomy-faq-form-box {
        padding: 28px;
    }
}

@media (max-width: 520px) {
    .dht-container,
    .dht-content,
    .hub-container,
    .cluster-container,
    .page-container,
    .dh-product-page,
    .dht-category-page .taxonomy-faq .taxonomy-container,
    .dht-category-page .taxonomy-faq-form .taxonomy-container {
        width: 92%;
    }

    .dht-grid-4,
    .dht-grid-3,
    .dht-grid-2 {
        grid-template-columns: 1fr;
    }

    .dht-page ul.products,
    .dht-home ul.products,
    .dht-category-products ul.products {
        grid-template-columns: 1fr !important;
    }

    .dht-category-media {
        min-height: 280px;
        padding: 20px;
    }

    .dht-category-products-panel {
        padding: 18px;
    }

    .dht-category-page .seo-faq-form-button {
        width: 100%;
        justify-self: stretch;
    }
}
/* ==========================================================
   17. CABECERA Y PIE COMPARTIDOS
========================================================== */

.dht-template-body {
    margin: 0;
    background: var(--dht-white);
    color: var(--dht-text);
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.custom-header {
    position: relative;
    z-index: 50;
    width: 100%;
    background: color-mix(in srgb, var(--dht-white) 96%, transparent);
    border-bottom: 1px solid var(--dht-border);
    box-shadow: 0 5px 20px rgba(16, 24, 32, .04);
}

.header-top,
.header-menu-inner,
.footer-container {
    width: min(var(--dht-container), 92%);
    margin-inline: auto;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 18px 0;
}

.custom-header .brand {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 16px;
}

.custom-header .logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
}

.custom-header .logo img {
    display: block;
    width: auto;
    max-width: 160px;
    max-height: 72px;
    object-fit: contain;
}

.custom-header .logo-fallback {
    display: inline-grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: var(--dht-radius);
    background: var(--dht-primary);
    color: var(--dht-white);
    font-size: 20px;
    font-weight: 800;
}

.custom-header .brand-text {
    min-width: 0;
}

.custom-header .site-title {
    display: block;
    color: var(--dht-text);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
}

.custom-header .site-subtitle {
    margin-top: 5px;
    color: var(--dht-text-soft);
    font-size: 13px;
    line-height: 1.35;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.header-actions a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border-radius: var(--dht-radius-small);
    color: var(--dht-text);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}

.header-actions a:hover,
.header-actions a:focus-visible {
    background: var(--dht-bg-light);
    color: var(--dht-primary-dark);
}

.header-actions .whatsapp {
    background: #1f9d55;
    color: #fff;
}

.header-actions .whatsapp:hover,
.header-actions .whatsapp:focus-visible {
    background: #177c43;
    color: #fff;
}

.custom-header .cart-count {
    display: inline-grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--dht-secondary);
    color: #111;
    font-size: 11px;
    font-weight: 800;
}

.custom-header .search {
    display: flex;
    min-width: min(300px, 100%);
    overflow: hidden;
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-small);
    background: var(--dht-white);
}

.custom-header .search input[type="search"] {
    min-width: 0;
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--dht-text);
}

.custom-header .search button {
    width: 42px;
    border: 0;
    background: var(--dht-primary);
    color: var(--dht-white);
    cursor: pointer;
}

.custom-header .search:focus-within {
    border-color: var(--dht-primary);
    box-shadow: 0 0 0 3px rgba(0, 122, 204, .12);
}

.header-menu {
    border-top: 1px solid var(--dht-border);
    background: var(--dht-white);
}

.header-menu-inner {
    min-height: 48px;
}

.dht-primary-navigation,
.header-menu nav {
    width: 100%;
}

.dht-primary-menu,
.header-menu .menu,
.header-menu ul {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dht-primary-menu a,
.header-menu .menu a,
.header-menu nav a {
    display: block;
    padding: 14px 12px;
    color: var(--dht-text);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.dht-primary-menu a:hover,
.header-menu .menu a:hover,
.header-menu nav a:hover {
    color: var(--dht-primary);
}

.site-footer {
    padding: 42px 0 28px;
    background: var(--dht-dark);
    color: var(--dht-white);
}

.footer-container {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, .8fr);
    gap: 28px;
    align-items: start;
}

.footer-brand strong {
    display: block;
    margin-bottom: 8px;
    font-size: 19px;
}

.footer-brand p {
    max-width: 650px;
    margin: 0;
    color: #d7dde4;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 14px 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--dht-white);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--dht-secondary);
}

.footer-meta {
    grid-column: 1 / -1;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #aeb8c2;
    font-size: 13px;
}

/* ==========================================================
   18. CONTENIDO Y ESTADOS COMPARTIDOS
========================================================== */

.dht-prose {
    color: var(--dht-text-soft);
}

.dht-prose > :first-child {
    margin-top: 0;
}

.dht-prose > :last-child {
    margin-bottom: 0;
}

.dht-prose a {
    color: var(--dht-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dht-prose img {
    border-radius: var(--dht-radius);
}

.dht-prose ul,
.dht-prose ol {
    margin: 0 0 24px;
    padding-left: 1.4em;
}

.dht-prose li + li {
    margin-top: 7px;
}

.dht-empty-state,
.dht-status-card {
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-large);
    background: var(--dht-bg-light);
    text-align: center;
}

.dht-status-card {
    max-width: 850px;
    margin-inline: auto;
}

.dht-status-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.dht-btn-secondary {
    border: 1px solid currentColor;
    background: transparent;
    color: var(--dht-white);
}

.dht-btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
}

.dht-hero-buttons,
.hub-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==========================================================
   19. PORTADA
========================================================== */

.dht-v16 {
    background: var(--dht-bg-light);
}

.dht-v16-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: 48px;
    align-items: center;
}

.dht-v16-box {
    padding: 38px;
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-large);
    background: var(--dht-white);
    box-shadow: var(--dht-shadow-small);
}

.dht-badge {
    display: inline-flex;
    padding: 7px 13px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--dht-success) 14%, var(--dht-white));
    color: var(--dht-success);
    font-size: 13px;
    font-weight: 750;
}

.dht-contact-form {
    display: grid;
    gap: 14px;
}

.dht-contact-form input,
.dht-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-small);
    background: var(--dht-white);
    color: var(--dht-text);
}

.dht-contact-form input:focus,
.dht-contact-form textarea:focus {
    outline: 0;
    border-color: var(--dht-primary);
    box-shadow: 0 0 0 4px rgba(0, 122, 204, .1);
}

.dht-contact-form button {
    justify-self: start;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: var(--dht-radius-small);
    background: var(--dht-primary);
    color: var(--dht-white);
    font-weight: 750;
    cursor: pointer;
}

.dht-contact-form button:hover {
    background: var(--dht-primary-dark);
}

.dht-seo {
    background: var(--dht-bg-light);
}

.dht-seo-content {
    max-width: var(--dht-content);
    margin-inline: auto;
}

/* ==========================================================
   20. CLUSTERS Y HUBS
========================================================== */

.hub-page {
    background: var(--dht-white);
    color: var(--dht-text);
}

.hub-hero {
    padding: clamp(52px, 7vw, 82px) 0;
    background: linear-gradient(135deg, var(--dht-dark), var(--dht-dark-soft));
    color: var(--dht-white);
}

.hub-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}

.hub-hero-grid--text-only {
    grid-template-columns: minmax(0, 900px);
}

.hub-hero-content {
    min-width: 0;
}

.hub-hero .dht-kicker {
    margin-bottom: 18px;
}

.hub-title {
    max-width: 900px;
}

.hub-excerpt {
    max-width: 850px;
    margin-bottom: 26px;
}

.hub-hero-media {
    display: flex;
    min-height: 320px;
    margin: 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--dht-radius-large);
    background: rgba(255, 255, 255, .08);
    box-shadow: var(--dht-shadow-large);
}

.hub-hero-media img {
    width: 100%;
    height: 100%;
    max-height: 440px;
    object-fit: contain;
    padding: 22px;
}

.hub-parent-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hub-parent-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: var(--dht-white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.hub-parent-link:hover {
    border-color: var(--dht-secondary);
    color: var(--dht-secondary);
}

.hub-content {
    background: var(--dht-white);
}

.hub-secondary-section,
.hub-links {
    border-top: 1px solid var(--dht-border);
}

.hub-secondary-section {
    background: var(--dht-bg-light);
}

.hub-links {
    background: var(--dht-white);
}

.hub-card {
    transition: transform var(--dht-transition), box-shadow var(--dht-transition), border-color var(--dht-transition);
}

.hub-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--dht-primary) 30%, var(--dht-border));
    box-shadow: var(--dht-shadow);
}

.hub-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.hub-body p {
    margin-bottom: 20px;
}

.hub-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: var(--dht-primary);
    font-size: 14px;
    font-weight: 750;
}

.hub-cta {
    padding: clamp(48px, 7vw, 72px) 0;
    background: var(--dht-dark);
    color: var(--dht-white);
}

.hub-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.hub-cta h2 {
    margin-bottom: 10px;
    color: var(--dht-white);
}

.hub-cta p {
    margin: 0;
    color: #d7dde4;
}

/* ==========================================================
   21. PRODUCTO
========================================================== */

.dh-product-summary {
    min-width: 0;
}

.dh-product-reference {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.dh-product-rating {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--dht-text-soft);
    font-size: 14px;
    text-decoration: none;
}

.dh-gallery-thumb {
    cursor: pointer;
    transition: border-color var(--dht-transition), transform var(--dht-transition);
}

.dh-gallery-thumb:hover,
.dh-gallery-thumb:focus-visible {
    border-color: var(--dht-primary);
    transform: translateY(-2px);
    outline: 0;
}

.dh-product-no-image {
    display: grid;
    min-height: 420px;
    place-items: center;
}

.dh-product-no-image img {
    max-width: 80%;
    height: auto;
}

.dh-price {
    display: grid;
    gap: 6px;
}

.dh-price-old {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dht-text-soft);
}

.dh-label-old,
.dh-tax-label {
    color: var(--dht-text-soft);
    font-size: 12px;
}

.dh-price-current,
.dh-price-normal .price {
    color: var(--dht-primary);
}

.dh-price-save {
    color: var(--dht-success);
    font-weight: 750;
}

.dh-stock {
    margin: 18px 0;
}

.dh-stock .stock.in-stock {
    color: var(--dht-success);
    font-weight: 700;
}

.dh-stock .stock.out-of-stock {
    color: var(--dht-error);
    font-weight: 700;
}

.dh-cart form.cart {
    display: flex;
    gap: 10px;
    align-items: stretch;
    flex-wrap: wrap;
}

.dh-cart .quantity .qty {
    min-height: 48px;
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-small);
}

.dh-cart .single_add_to_cart_button {
    min-height: 48px;
    padding: 0 24px !important;
    border-radius: var(--dht-radius-small) !important;
    background: var(--dht-primary) !important;
    color: var(--dht-white) !important;
}

.dh-cart .single_add_to_cart_button:hover {
    background: var(--dht-primary-dark) !important;
}

.dh-product-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
}

.dh-product-trust > div {
    padding: 12px;
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-small);
    background: var(--dht-bg-light);
    color: var(--dht-text-soft);
    text-align: center;
    font-size: 13px;
    font-weight: 650;
}

.dh-contact-box {
    display: flex;
    gap: 12px 18px;
    align-items: center;
    margin-top: 20px;
    padding: 15px 18px;
    border-left: 4px solid var(--dht-secondary);
    border-radius: var(--dht-radius-small);
    background: var(--dht-bg-light);
    flex-wrap: wrap;
}

.dh-contact-box span {
    font-weight: 750;
}

.dh-contact-box a {
    color: var(--dht-primary);
    font-weight: 700;
}

.dh-product-description,
.dh-related-products,
.dh-product-reviews,
.dh-related-categories,
.dh-technical-tags {
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-large);
    background: var(--dht-white);
    box-shadow: var(--dht-shadow-small);
}

.dh-product-description-content {
    color: var(--dht-text-soft);
}

.dh-back-to-purchase {
    display: inline-flex;
    margin-top: 22px;
    padding: 12px 18px;
    border-radius: var(--dht-radius-small);
    background: var(--dht-primary);
    color: var(--dht-white);
    font-weight: 750;
    text-decoration: none;
}

.dh-product-meta a {
    display: inline-flex;
    margin: 4px;
    padding: 7px 11px;
    border: 1px solid var(--dht-border);
    border-radius: 999px;
    color: var(--dht-primary);
    text-decoration: none;
}

.dh-product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dh-product-tag {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--dht-bg-light);
    color: var(--dht-text-soft);
    font-size: 13px;
    font-weight: 650;
}

/* ==========================================================
   22. PÁGINAS, POSTS Y LANDINGS
========================================================== */

.page-corporate {
    background: var(--dht-bg-light);
}

.page-hero {
    padding: clamp(52px, 7vw, 78px) 0;
    background: linear-gradient(135deg, var(--dht-dark), var(--dht-dark-soft));
    color: var(--dht-white);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 48px;
    align-items: center;
}

.page-hero-grid--text-only {
    grid-template-columns: minmax(0, 900px);
}

.page-hero h1,
.page-hero .dht-lead {
    color: var(--dht-white);
}

.page-hero-media {
    margin: 0;
    overflow: hidden;
    border-radius: var(--dht-radius-large);
    background: rgba(255, 255, 255, .08);
}

.page-hero-media img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    padding: 20px;
}

.page-content {
    padding: clamp(44px, 7vw, 76px) 0;
}

.page-content-box {
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-large);
    background: var(--dht-white);
    box-shadow: var(--dht-shadow-small);
}

.dht-post {
    background: var(--dht-white);
}

.dht-post-hero {
    padding: clamp(52px, 8vw, 88px) 0;
    background: linear-gradient(135deg, var(--dht-dark), var(--dht-dark-soft));
    color: var(--dht-white);
}

.dht-post-title {
    max-width: 1000px;
    color: var(--dht-white);
}

.dht-post-meta {
    margin-bottom: 14px;
    color: #d7dde4;
    font-size: 14px;
}

.dht-post-cta-top,
.dht-cta-box {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--dht-radius);
    background: rgba(255, 255, 255, .08);
}

.dht-post-cta-text {
    color: var(--dht-white);
}

.dht-post-cta-btn {
    display: inline-flex;
    padding: 12px 18px;
    border-radius: var(--dht-radius-small);
    background: var(--dht-secondary);
    color: #111;
    font-weight: 750;
    text-decoration: none;
}

.dht-post-content-wrap,
.dht-post-section {
    padding: clamp(42px, 7vw, 72px) 0;
}

.dht-post-content {
    max-width: var(--dht-content);
    margin-inline: auto;
    color: var(--dht-text-soft);
}

.dht-post-categories,
.dht-reco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.dht-cat-card {
    overflow: hidden;
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius-large);
    background: var(--dht-white);
    box-shadow: var(--dht-shadow-small);
    color: var(--dht-text);
    text-decoration: none;
}

.dht-cat-img-wrapper {
    height: 220px;
    background: var(--dht-bg-light);
}

.dht-cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

.dht-cat-placeholder {
    display: grid;
    height: 100%;
    place-items: center;
    font-size: 46px;
}

.dht-cat-info {
    padding: 22px;
}

.dht-cat-action {
    color: var(--dht-primary);
    font-weight: 750;
}

.dht-post-cta-bottom {
    padding: 60px 0;
    background: var(--dht-dark);
    color: var(--dht-white);
}

.dht-post-cta-bottom .dht-cta-box {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.dht-post-cta-bottom h2,
.dht-post-cta-bottom p {
    color: var(--dht-white);
}

.dht-cta-actions,
.dht-cta-features {
    display: flex;
    justify-content: center;
    gap: 12px 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.landing-page {
    background: var(--dht-white);
    color: var(--dht-text);
}

.landing-container {
    width: min(var(--dht-container), 92%);
    margin-inline: auto;
}

.landing-page > section {
    padding: clamp(48px, 7vw, 76px) 0;
}

.landing-section-title {
    max-width: 850px;
    margin: 0 auto 38px;
    text-align: center;
}

.landing-products {
    background: var(--dht-bg-light);
}

.landing-cta {
    background: var(--dht-dark);
    color: var(--dht-white);
    text-align: center;
}

.landing-cta h2,
.landing-cta p {
    color: var(--dht-white);
}

.landing-btn {
    display: inline-flex;
    margin-top: 14px;
    padding: 13px 20px;
    border-radius: var(--dht-radius-small);
    background: var(--dht-secondary);
    color: #111;
    font-weight: 750;
    text-decoration: none;
}

.dht-search-results {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.dht-search-result {
    padding: 22px;
    border: 1px solid var(--dht-border);
    border-radius: var(--dht-radius);
    background: var(--dht-white);
}

.dht-search-result h2 {
    margin-bottom: 8px;
    font-size: 24px;
}

/* ==========================================================
   23. ACCESIBILIDAD Y RESPONSIVE ADICIONAL
========================================================== */

.dht-page a:focus-visible,
.dht-home a:focus-visible,
.hub-page a:focus-visible,
.landing-page a:focus-visible,
.dh-product-page a:focus-visible,
.custom-header a:focus-visible,
.site-footer a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--dht-secondary) 85%, white);
    outline-offset: 3px;
}

@media (max-width: 1120px) {
    .header-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .custom-header .search {
        flex: 1 1 260px;
    }

    .hub-hero-grid,
    .page-hero-grid,
    .dht-v16-grid {
        grid-template-columns: 1fr;
    }

    .hub-hero-media,
    .page-hero-media {
        min-height: 260px;
    }
}

@media (max-width: 780px) {
    .header-actions .phone,
    .header-actions .blog {
        display: none;
    }

    .custom-header .search {
        order: 3;
        flex-basis: 100%;
    }

    .dht-primary-menu,
    .header-menu .menu,
    .header-menu ul {
        overflow-x: auto;
        white-space: nowrap;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .hub-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .dh-product-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .custom-header .brand-text {
        display: none;
    }

    .header-top {
        gap: 14px;
        padding: 12px 0;
    }

    .header-actions {
        gap: 6px;
    }

    .header-actions a {
        padding: 7px 9px;
    }

    .hub-hero-media,
    .page-hero-media {
        min-height: 220px;
    }

    .hub-hero-media img,
    .page-hero-media img {
        padding: 12px;
    }

    .dht-status-actions,
    .hub-cta-actions,
    .dht-hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .dht-status-actions .dht-btn,
    .hub-cta-actions .dht-btn,
    .dht-hero-buttons .dht-btn {
        width: 100%;
    }

    .dh-product-trust {
        grid-template-columns: 1fr;
    }
}

/* Ajustes finales de componentes específicos. */
.hub-category-card .hub-img {
    background: var(--dht-bg-light);
}

.cluster-page,
.hub-primary-page,
.hub-secondary-page,
.dht-status-page,
.dh-gallery,
.dh-gallery--stacked {
    min-width: 0;
}

.dht-post-hero-inner {
    max-width: 1100px;
}

.dht-post-section-title {
    margin-bottom: 10px;
}

.dht-post-section-subtitle {
    margin-bottom: 28px;
    color: var(--dht-text-soft);
}

.dht-reco {
    background: var(--dht-bg-light);
}

.btn-primary {
    background: var(--dht-secondary);
    color: #111;
}
