/* =========================================================
   GHD PLANTILLAS - DISEÑO PRINCIPAL
   CSS ORGANIZADO Y CONSOLIDADO
   ========================================================= */

:root {
    --verde-950: #071714;
    --verde-900: #0B2320;
    --verde-800: #123830;
    --verde-700: #1F4A3D;
    --verde-600: #2E6A54;
    --verde-salvia: #6FA787;
    --verde-salvia-luz: #8FC3A3;
    --verde-salvia-suave: #DDECE2;
    --verde-suave: #E9F1EC;
    --verde-oscuro: #0B2320;
    --oro: #C9A96B;
    --crema: #F7F6F1;
    --blanco: #FFFFFF;
    --gris-texto: #58655F;
    --gris-texto-suave: #7B8781;
    --gris-linea: #E7E6DF;
    --color-bg-soft: #F7F6F1;
    --color-ink: #0B2320;
    --font-display: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --radius-xl: 28px;
    --radius-pill: 999px;
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, .08);
    --shadow-sm: 0 2px 6px rgba(11, 35, 32, .05);
    --shadow-hover: 0 15px 35px rgba(11, 35, 32, .12);
    --shadow-deep: 0 25px 60px rgba(7, 23, 20, .35);
    --shadow-glow: 0 20px 40px rgba(111, 167, 135, .20);
    --dur: .3s;
    --ease: ease;
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* =========================================================
   BASE
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--verde-900);
    background: #ffffff;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--verde-900);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.navbar-ghd {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--gris-linea);
    padding: 1rem 0;
}

.navbar-brand-ghd {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--verde-900) !important;
    display: flex;
    align-items: center;
    gap: .7rem;
}

    .navbar-brand-ghd .mark {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(150deg, var(--verde-800), var(--verde-950));
        color: var(--verde-salvia-luz);
        font-family: var(--font-mono);
        font-size: .8rem;
    }

.nav-link-ghd {
    color: var(--verde-900) !important;
    font-weight: 500;
    padding: .5rem 1rem !important;
}

    .nav-link-ghd:hover {
        color: var(--verde-600) !important;
    }

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

/* =========================================================
   BOTONES GENERALES
   ========================================================= */

.btn {
    border-radius: var(--radius-pill);
    font-weight: 600;
    padding: .75rem 1.6rem;
}

.btn-primary-ghd {
    background: linear-gradient(180deg, var(--verde-800), var(--verde-900));
    color: #ffffff;
}

    .btn-primary-ghd:hover {
        color: #ffffff;
        transform: translateY(-2px);
    }

.btn-ghost-ghd {
    background: #ffffff;
    border: 1px solid var(--gris-linea);
    color: var(--verde-900);
}

    .btn-ghost-ghd:hover {
        background: var(--verde-suave);
    }

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 700px;
    padding: 120px 0 100px;
    overflow: visible;
    background: radial-gradient(circle at 80% 20%, rgba(111, 167, 135, .18), transparent 35%), linear-gradient(180deg, #ffffff 0%, var(--crema) 100%);
}

    .hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: rgba(111, 167, 135, .12);
        border-radius: 50%;
        filter: blur(80px);
        right: -150px;
        top: 80px;
        z-index: 0;
    }

.hero-inner {
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
    color: var(--verde-600);
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.5rem, 4.6vw, 3.85rem);
    line-height: 1.06;
    margin-bottom: 1.3rem;
}

.hero .lead-ghd {
    font-size: 1.2rem;
    color: var(--gris-texto);
    max-width: 480px;
    margin-bottom: 2.3rem;
    line-height: 1.55;
}

.hero-badges {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--gris-linea);
}

    .hero-badges .stat {
        font-family: var(--font-mono);
    }

        .hero-badges .stat b {
            display: block;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--verde-900);
        }

        .hero-badges .stat span {
            font-size: .72rem;
            color: var(--gris-texto-suave);
            text-transform: uppercase;
            letter-spacing: .08em;
        }

/* =========================================================
   DASHBOARD MOCKUP
   ========================================================= */

.dash-mock {
    position: relative;
    overflow: visible;
    background: linear-gradient(165deg, var(--verde-800) 0%, var(--verde-950) 100%);
    border-radius: var(--radius-xl);
    padding: 1.7rem;
    box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, .06);
    transform: rotate(1deg);
    animation: floaty 7s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, .06);
}

@keyframes floaty {
    0%, 100% {
        transform: rotate(1deg) translateY(0);
    }

    50% {
        transform: rotate(1deg) translateY(-12px);
    }
}

.dash-topbar {
    display: flex;
    gap: 6px;
    margin-bottom: 1.2rem;
}

    .dash-topbar span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .22);
    }

        .dash-topbar span:first-child {
            background: #E8746A;
        }

        .dash-topbar span:nth-child(2) {
            background: var(--oro);
        }

        .dash-topbar span:nth-child(3) {
            background: var(--verde-salvia);
        }

.dash-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 7px;
}

.dash-cell {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 6px;
    height: 28px;
    font-family: var(--font-mono);
    font-size: .55rem;
    color: rgba(255, 255, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .dash-cell.filled {
        background: var(--verde-salvia);
        color: var(--verde-950);
        font-weight: 600;
    }

    .dash-cell.soft {
        background: rgba(111, 167, 135, .28);
        color: #ffffff;
    }

.dash-panels {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.dash-chart {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 116px;
}

    .dash-chart i {
        flex: 1;
        border-radius: 5px 5px 0 0;
        background: linear-gradient(180deg, var(--verde-salvia-luz), rgba(111, 167, 135, .25));
    }

.dash-donut {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .dash-donut .ring {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: conic-gradient( var(--verde-salvia-luz) 0deg 255deg, rgba(255, 255, 255, .08) 255deg 360deg );
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .dash-donut .ring::after {
            content: '71%';
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--verde-950);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-size: .75rem;
        }

.dash-float-card {
    position: absolute;
    bottom: -30px;
    left: -25px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
}

    .dash-float-card .icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: linear-gradient(155deg, var(--verde-salvia-suave), #ffffff);
        color: var(--verde-700);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

    .dash-float-card b {
        display: block;
        font-family: var(--font-mono);
        font-size: 1.1rem;
        color: var(--verde-900);
    }

    .dash-float-card small {
        display: block;
        font-size: .75rem;
        color: var(--gris-texto);
    }

/* =========================================================
   SECCIONES
   ========================================================= */

.section-pad {
    padding: 90px 0;
}

.display-6 {
    font-weight: 700;
}

.text-center .eyebrow {
    margin-bottom: .7rem;
}

/* =========================================================
   CATEGORÍAS
   ========================================================= */

#categorias {
    background: var(--crema);
    padding-top: 100px;
    padding-bottom: 100px;
}

.cat-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--gris-linea);
    border-radius: 22px;
    padding: 2rem 1rem;
    text-align: center;
    height: 100%;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

    .cat-card::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(111, 167, 135, .12);
        right: -40px;
        top: -40px;
    }

    .cat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(11, 35, 32, .12);
        border-color: transparent;
    }

.cat-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--verde-salvia-suave), #ffffff);
    color: var(--verde-700);
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-card:hover .cat-icon {
    background: linear-gradient(155deg, var(--verde-salvia), var(--verde-600));
    color: #ffffff;
}

.cat-card span {
    font-size: 1rem;
    font-weight: 700;
}

/* =========================================================
   PRODUCTOS - TARJETAS
   ========================================================= */

#productos {
    background: linear-gradient(180deg, var(--crema), #ffffff);
}

.product-card {
    background: #ffffff;
    border: 1px solid var(--gris-linea);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: transform .35s ease, box-shadow .35s ease;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(11, 35, 32, .14);
    }

.product-thumb {
    height: 240px;
    position: relative;
    background: linear-gradient(135deg, var(--verde-suave), #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

    .product-thumb i {
        font-size: 4rem;
        color: var(--verde-600);
    }

    .product-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.badge-free,
.badge-premium {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #ffffff;
    font-size: .7rem;
    font-weight: 700;
    padding: .35rem .8rem;
    border-radius: var(--radius-pill);
    z-index: 2;
}

.badge-free {
    background: var(--verde-salvia);
}

.badge-premium {
    background: linear-gradient(135deg, #D8BE7A, #B89045);
}

.product-body {
    padding: 1.5rem;
}

.product-cat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--verde-600);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.separator {
    color: #BFBFBF;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 700;
    min-height: 55px;
    line-height: 1.3;
    color: var(--verde-900);
}

.product-made {
    margin-top: 10px;
    color: #6F7B74;
    font-size: .82rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .product-made i {
        color: var(--verde-600);
    }

.product-rating {
    margin-top: 18px;
    color: var(--oro);
    font-size: .78rem;
}

    .product-rating span {
        color: #8A8A8A;
        margin-left: 6px;
    }

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.3rem;
    gap: 10px;
}

.product-price {
    font-family: var(--font-mono);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--verde-900);
}

    .product-price.free {
        color: var(--verde-600);
    }

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .85rem;
    font-weight: 600;
    background: var(--verde-900);
    color: #ffffff;
    padding: .55rem 1rem;
    border-radius: var(--radius-pill);
    transition: .3s;
}

    .btn-detail:hover {
        color: #ffffff;
        background: var(--verde-700);
    }

/* =========================================================
   DETALLE DEL PRODUCTO - BREADCRUMB
   ========================================================= */

.product-breadcrumb {
    background: var(--crema);
    border-bottom: 1px solid var(--gris-linea);
    padding: 18px 0;
    margin-bottom: 35px;
    font-size: .88rem;
}

    .product-breadcrumb .container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .product-breadcrumb a {
        color: var(--verde-700) !important;
        font-weight: 600;
        text-decoration: none !important;
        transition: color .2s ease;
    }

        .product-breadcrumb a:hover {
            color: var(--verde-900) !important;
        }

    .product-breadcrumb span {
        color: var(--gris-texto-suave);
        margin: 0 9px;
    }

    .product-breadcrumb strong {
        color: var(--verde-900);
        font-weight: 600;
    }

/* =========================================================
   DETALLE DEL PRODUCTO - HERO
   ========================================================= */

.product-hero {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--crema) 100%);
}

.product-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gris-linea);
    box-shadow: var(--shadow-hover);
    transition: .35s;
}

    .product-gallery:hover {
        transform: translateY(-8px);
    }

    .product-gallery img {
        width: 100%;
        display: block;
    }

.product-placeholder {
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--verde-suave), #ffffff);
}

    .product-placeholder i {
        font-size: 7rem;
        color: var(--verde-700);
    }

.main-image-box {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--gris-linea);
    padding: 25px;
    box-shadow: var(--shadow-hover);
}

    .main-image-box img {
        width: 100%;
        height: 450px;
        object-fit: contain;
        border-radius: 15px;
        background: #ffffff;
    }

.product-thumbnails {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.thumbnail-box {
    width: 75px;
    height: 75px;
    overflow: hidden;
    border-radius: 12px;
    flex-shrink: 0;
}

.product-thumbnails img.thumbnail-image {
    width: 75px !important;
    height: 75px !important;
    object-fit: cover !important;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid var(--gris-linea);
    display: block;
}

/* =========================================================
   DETALLE - PANEL DERECHO
   ========================================================= */

.product-summary {
    position: sticky;
    top: 110px;
    background: #ffffff;
    border: 1px solid var(--gris-linea);
    border-radius: var(--radius-xl);
    padding: 35px;
    box-shadow: var(--shadow-hover);
    transition: .35s;
}

    .product-summary:hover {
        transform: translateY(-5px);
    }

.product-category {
    color: var(--verde-600);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

    .product-category span {
        margin: 0 8px;
    }

.product-summary h1 {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 2.5rem;
    line-height: 1.1;
}

.product-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #F6B100;
    margin-bottom: 20px;
}

    .product-stars span {
        margin-left: 10px;
        color: var(--gris-texto);
        font-weight: 600;
    }

.product-platform {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--verde-suave);
    color: var(--verde-700);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    margin-bottom: 30px;
}

.product-price-big {
    margin-bottom: 30px;
}

    .product-price-big span {
        font-size: 2.7rem;
        font-family: var(--font-display);
        color: var(--verde-900);
        font-weight: 700;
    }

    .product-price-big .free {
        color: var(--verde-600);
    }

.product-benefits {
    list-style: none;
    margin: 0 0 35px;
    padding: 0;
}

    .product-benefits li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 1rem;
    }

    .product-benefits i {
        color: var(--verde-salvia);
        font-size: 1.2rem;
    }

.product-summary .btn {
    padding: 16px;
    font-size: 1rem;
}

/* =========================================================
   DESCRIPCIÓN DEL PRODUCTO
   ========================================================= */

.product-description {
    background: linear-gradient(180deg, #ffffff 0%, var(--crema) 100%);
    padding: 85px 0 100px;
}

.description-header {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

    .description-header .eyebrow {
        display: block;
        margin-bottom: 12px;
        font-family: var(--font-mono);
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .14em;
        color: var(--verde-600);
    }

    .description-header h2 {
        margin: 0;
        font-family: var(--font-display);
        font-size: 2.6rem;
        font-weight: 700;
        line-height: 1.15;
        color: var(--verde-900);
    }

.description-line {
    width: 55px;
    height: 3px;
    margin: 20px auto 0;
    border-radius: var(--radius-pill);
    background: var(--verde-salvia);
}

.description-content {
    max-width: 880px;
    margin: 0 auto;
}

/* IMPORTANTE:
   La descripción del producto queda NEGRA para facilitar la lectura. */

.descripcion-producto {
    color: #111111;
    font-family: var(--font-body);
    font-size: 1.12rem;
    line-height: 1.95;
    white-space: pre-line;
    letter-spacing: .01em;
}

    .descripcion-producto p {
        margin-bottom: 22px;
    }

        .descripcion-producto p:last-child {
            margin-bottom: 0;
        }

    .descripcion-producto strong {
        color: var(--verde-900);
    }

    .descripcion-producto ul {
        margin-top: 20px;
        margin-bottom: 25px;
        padding-left: 0;
        list-style: none;
    }

    .descripcion-producto li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
    }

        .descripcion-producto li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--verde-salvia-suave);
        }

/* =========================================================
   INFORMACIÓN DEL PRODUCTO
   ========================================================= */

.product-details-section {
    background: var(--crema);
    padding: 80px 0;
}

.product-section-header {
    margin-bottom: 45px;
    text-align: center;
}

    .product-section-header h2 {
        margin-top: 8px;
        margin-bottom: 10px;
        font-size: 2.35rem;
    }

    .product-section-header p {
        color: var(--gris-texto);
        margin: 0;
        font-size: 1rem;
    }

.product-details-grid {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-detail-card {
    background: #ffffff;
    border: 1px solid var(--gris-linea);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: .3s ease;
}

    .product-detail-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

.product-detail-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--verde-salvia-suave), #ffffff);
    color: var(--verde-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
}

.product-detail-content span {
    display: block;
    color: var(--gris-texto-suave);
    font-family: var(--font-mono);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    margin-bottom: 5px;
}

.product-detail-content strong {
    display: block;
    color: var(--verde-900);
    font-size: 1.05rem;
}

/* =========================================================
   COMPRA CON CONFIANZA
   ========================================================= */

.product-trust-section {
    background: #ffffff;
    padding: 85px 0 95px;
}

.trust-grid {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item {
    padding: 25px 20px;
    border: 1px solid var(--gris-linea);
    border-radius: var(--radius-lg);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: .3s ease;
}

    .trust-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-sm);
    }

.trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: var(--verde-suave);
    color: var(--verde-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.trust-item strong {
    display: block;
    color: var(--verde-900);
    font-size: .98rem;
    margin-bottom: 7px;
}

.trust-item span {
    display: block;
    color: var(--gris-texto);
    font-size: .82rem;
    line-height: 1.55;
}

.trust-action {
    text-align: center;
    margin-top: 45px;
}

/* =========================================================
   PRODUCTOS RELACIONADOS
   ========================================================= */

#relacionados,
.related-products {
    background: var(--crema);
    padding: 85px 0;
}

.related-header {
    margin-bottom: 45px;
    text-align: center;
}

    .related-header .eyebrow {
        display: block;
        margin-bottom: 10px;
    }

    .related-header h2 {
        margin: 0;
        font-size: 2.35rem;
        color: var(--verde-900);
    }

#relacionados .product-card {
    height: 100%;
}

/* =========================================================
   INFORMACIÓN COMERCIAL
   ========================================================= */

.product-info-box {
    margin-top: 30px;
    background: var(--crema);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--gris-linea);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gris-linea);
}

    .info-item:last-child {
        border-bottom: none;
    }

    .info-item i {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ffffff;
        color: var(--verde-700);
        font-size: 1.2rem;
    }

    .info-item strong {
        display: block;
        color: var(--verde-900);
        font-size: .95rem;
    }

    .info-item span {
        display: block;
        color: var(--gris-texto);
        font-size: .85rem;
    }

/* =========================================================
   PLANTILLAS PERSONALIZADAS
   ========================================================= */

.custom-template-box {
    display: flex;
    align-items: center;
    gap: 28px;
    width: 100%;
    max-width: 1100px;
    margin: 20px auto 70px;
    padding: 35px 40px;
    border: 1px solid var(--gris-linea);
    border-radius: 20px;
    background: var(--crema);
    box-shadow: var(--shadow-sm);
}

.custom-template-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #ffffff;
    color: var(--verde-700);
    font-size: 28px;
}

.custom-template-content {
    flex: 1;
}

    .custom-template-content h2 {
        margin: 0 0 8px;
        color: var(--verde-900);
    }

    .custom-template-content p:not(.eyebrow) {
        margin: 0;
        color: var(--gris-texto);
        max-width: 650px;
    }

.custom-template-action {
    flex-shrink: 0;
}

    .custom-template-action .btn {
        white-space: nowrap;
    }

/* =========================================================
   PERSONALIZACIÓN POR WHATSAPP
   ========================================================= */

.product-customization {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 18px 20px;
    background: var(--crema);
    border: 1px solid var(--gris-linea);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.customization-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--verde-salvia-suave);
    color: #25A866;
    font-size: 21px;
}

.customization-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

    .customization-content strong {
        font-size: 14px;
        font-weight: 600;
        color: var(--verde-900);
    }

    .customization-content span {
        font-size: 13px;
        color: var(--gris-texto);
    }

.customization-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 13px;
    border: 1px solid var(--gris-linea);
    border-radius: 8px;
    background: #ffffff;
    color: var(--verde-900);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s ease;
}

    .customization-whatsapp i {
        color: #25A866;
    }

    .customization-whatsapp:hover {
        background: #25D366;
        color: #ffffff;
        border-color: #25D366;
        transform: translateY(-1px);
    }

        .customization-whatsapp:hover i {
            color: #ffffff;
        }

/* =========================================================
   CATÁLOGO Y FILTROS
   ========================================================= */

.catalog-filters {
    background: var(--color-bg-soft);
    border: 1px solid rgba(15, 37, 33, .08);
    border-radius: 18px;
    padding: 24px;
    position: sticky;
    top: 100px;
}

.filter-group {
    padding: 20px 0;
    border-top: 1px solid rgba(15, 37, 33, .08);
}

    .filter-group:first-of-type {
        border-top: 0;
        padding-top: 0;
    }

    .filter-group h6 {
        font-weight: 700;
        margin-bottom: 14px;
    }

.filter-platform,
.filter-list {
    display: flex;
    flex-direction: column;
}

.filter-platform {
    gap: 6px;
}

.filter-list {
    gap: 7px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--gris-texto);
    text-decoration: none;
    padding: 7px 8px;
    border-radius: 8px;
    transition: background .2s ease;
}

    .filter-option:hover {
        background: rgba(11, 35, 32, .05);
    }

    .filter-option:has(.custom-radio.active) {
        color: var(--verde-oscuro);
        font-weight: 600;
    }

.filter-check {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--color-ink);
    text-decoration: none;
    font-size: .9rem;
}

    .filter-check:hover {
        color: var(--verde-oscuro);
    }

.custom-radio,
.catalog-filters .custom-radio {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #9AA7A3 !important;
    border-radius: 4px !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    transition: all .2s ease;
}

    .custom-radio.active,
    .catalog-filters .custom-radio.active {
        background-color: var(--verde-oscuro) !important;
        border-color: var(--verde-oscuro) !important;
    }

        .custom-radio.active::after,
        .catalog-filters .custom-radio.active::after {
            content: "" !important;
            display: block !important;
            width: 5px !important;
            height: 9px !important;
            border-right: 2px solid #ffffff !important;
            border-bottom: 2px solid #ffffff !important;
            transform: rotate(45deg) !important;
            margin-top: -2px !important;
        }

.filter-option:hover .custom-radio {
    border-color: var(--verde-oscuro) !important;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(15, 37, 33, .08);
}

    .catalog-toolbar strong {
        font-size: 1.05rem;
    }

/* =========================================================
   UTILIDADES
   ========================================================= */

.text-green {
    color: var(--verde-600);
}

.bg-soft {
    background: var(--crema);
}

.descripcion-producto {
    white-space: pre-line;
}

/* =========================================================
   WHATSAPP FLOTANTE
   ========================================================= */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
    z-index: 9999;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .whatsapp-float:hover {
        color: #ffffff;
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    }

/* =========================================================
   FOOTER
   ========================================================= */

.footer-ghd {
    background: var(--verde-950);
    color: #ffffff;
    padding: 70px 0 25px;
    margin-top: 80px;
}

.footer-brand {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 15px;
}

.footer-description {
    max-width: 300px;
    margin: 0;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    font-size: .92rem;
}

.footer-ghd h5,
.footer-ghd h6 {
    color: #ffffff;
}

.footer-ghd h6 {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-ghd a {
    display: block;
    width: fit-content;
    margin-bottom: 11px;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s ease, transform .2s ease;
}

    .footer-ghd a:hover {
        color: #ffffff;
        transform: translateX(2px);
    }

.footer-ghd p {
    color: rgba(255, 255, 255, .65);
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    width: 100%;
}

.newsletter-input {
    min-width: 0;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .15);
    border-right: none;
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    padding: 9px 11px;
    font-size: .78rem;
    outline: none;
}

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, .45);
    }

    .newsletter-input:focus {
        border-color: rgba(255, 255, 255, .35);
    }

.newsletter-btn {
    width: 42px;
    min-width: 42px;
    border: none;
    background: var(--verde-salvia);
    color: var(--verde-oscuro);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease;
}

    .newsletter-btn:hover {
        opacity: .85;
    }

.footer-bottom {
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    color: rgba(255, 255, 255, .5);
    font-size: .78rem;
}

/* =========================================================
   ANIMACIONES
   ========================================================= */

.fade-up {
    animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 991px) {
    .hero {
        padding: 80px 0 70px;
    }

        .hero h1 {
            font-size: 2.7rem;
        }

    .dash-mock {
        margin-top: 30px;
    }

    .hero-badges {
        gap: 1.5rem;
    }

    .product-summary {
        position: relative;
        top: 0;
        margin-top: 35px;
    }

        .product-summary h1 {
            font-size: 2rem;
        }

    .product-price-big span {
        font-size: 2.2rem;
    }

    .product-placeholder {
        height: 350px;
    }

    .product-details-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-filters {
        position: static;
    }

    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   RESPONSIVE - MÓVIL
   ========================================================= */

@media (max-width: 767px) {
    .hero {
        padding: 60px 0;
    }

        .hero h1 {
            font-size: 2.2rem;
        }

        .hero .lead-ghd {
            font-size: 1rem;
        }

    .hero-badges {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

        .hero-badges .stat b {
            font-size: 1.2rem;
        }

        .hero-badges .stat span {
            font-size: .6rem;
        }

    .section-pad {
        padding: 60px 0;
    }

    .product-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-description {
        padding: 65px 0 75px;
    }

    .description-header {
        margin-bottom: 35px;
    }

        .description-header h2,
        .product-section-header h2,
        .related-header h2 {
            font-size: 2rem;
        }

    .descripcion-producto {
        font-size: 1.04rem;
        line-height: 1.85;
    }

    .product-trust-section,
    .product-details-section {
        padding: 60px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
    }

    .trust-icon {
        margin-bottom: 0;
    }

    .related-products {
        padding: 60px 0 70px;
    }

    .custom-template-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
        margin-left: auto;
        margin-right: auto;
    }

    .custom-template-content p:not(.eyebrow) {
        margin-left: auto;
        margin-right: auto;
    }

    .custom-template-action {
        width: 100%;
    }

        .custom-template-action .btn {
            width: 100%;
        }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .product-customization {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .customization-content {
        min-width: 0;
    }

    .customization-whatsapp {
        width: 100%;
        justify-content: center;
        margin-top: 4px;
    }
}

/* =========================================================
   RESPONSIVE - PANTALLAS PEQUEÑAS
   ========================================================= */

@media (max-width: 575px) {
    .catalog-toolbar {
        width: 100%;
    }

        .catalog-toolbar .form-select {
            width: 100% !important;
        }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
        font-size: 27px;
    }
}

/* =========================================================
   GRID DE CARACTERÍSTICAS
   ========================================================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    background: #ffffff;
    border: 1px solid var(--gris-linea);
    border-radius: var(--radius-lg);
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
}

    .feature-item i {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: var(--verde-suave);
        color: var(--verde-700);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.4rem;
    }

    .feature-item strong {
        display: block;
        color: var(--verde-900);
    }

    .feature-item span {
        color: var(--gris-texto);
        font-size: .9rem;
    }

/* =========================================================
   FIN
   ========================================================= */
.navbar-ghd .btn-mi-cuenta {
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}