/* =====================================================
   VARIABLES
===================================================== */

:root {

    --blue: #1769e0;
    --blue-dark: #071b3a;
    --blue-light: #eaf2ff;

    --green: #159957;
    --green-light: #e9f8f0;

    --yellow: #f6b800;

    --text: #10213f;
    --text-light: #64748b;

    --background: #ffffff;
    --background-soft: #f7f9fc;

    --border: #e5eaf2;

    --radius: 18px;

    --shadow:
        0 10px 30px rgba(15, 35, 70, 0.08);

}


/* =====================================================
   GENERAL
===================================================== */

body {

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background: var(--background);

    margin: 0;

}


a {

    text-decoration: none;

}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {

    background: var(--blue-dark);

    color: white;

    font-size: 13px;

}


.top-bar-content {

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.top-bar i {

    margin-right: 5px;

}


/* =====================================================
   NAVBAR
===================================================== */

.main-navbar {

    background: white;

    min-height: 76px;

    border-bottom: 1px solid #edf0f5;

}


.brand {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--text);

    font-size: 18px;

    font-weight: 700;

}


.brand strong {

    color: var(--blue);

}


.brand-icon {

    width: 38px;

    height: 38px;

    border-radius: 11px;

    background: var(--blue-light);

    color: var(--blue);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

}


.navbar-nav {

    gap: 8px;

}


.nav-link {

    color: var(--text) !important;

    font-weight: 600;

    font-size: 14px;

    padding: 10px 14px !important;

    position: relative;

}


.nav-link:hover {

    color: var(--blue) !important;

}


.nav-link.active {

    color: var(--blue) !important;

}


.nav-link.active::after {

    content: "";

    position: absolute;

    bottom: -11px;

    left: 14px;

    right: 14px;

    height: 3px;

    background: var(--blue);

    border-radius: 5px;

}


.search-navbar {

    border: 0;

    background: transparent;

    font-size: 21px;

    color: var(--text);

}


/* =====================================================
   HERO
===================================================== */

.hero {

    background:

        linear-gradient(
            90deg,
            #fffaf3 0%,
            #fffdf9 50%,
            #f4f8ff 100%
        );

    overflow: hidden;

    padding: 70px 0 75px;

}


.hero-content {

    max-width: 650px;

}


.hero-label {

    display: inline-flex;

    align-items: center;

    padding: 7px 13px;

    border-radius: 50px;

    background: white;

    color: var(--blue);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 18px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.05);

}


.hero h1 {

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 800;

    margin-bottom: 22px;

}


.hero h1 span {

    color: var(--blue);

}


.hero-description {

    font-size: 18px;

    line-height: 1.7;

    color: #4d5d76;

    max-width: 600px;

    margin-bottom: 28px;

}


/* =====================================================
   SEARCH
===================================================== */

.hero-search {

    background: white;

    border: 1px solid #e2e7ef;

    height: 62px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    padding: 6px;

    box-shadow: var(--shadow);

    max-width: 600px;

}


.hero-search > i {

    font-size: 21px;

    color: #8a97aa;

    margin-left: 17px;

}


.hero-search input {

    flex: 1;

    border: 0;

    outline: none;

    padding: 0 15px;

    font-size: 15px;

}


.hero-search button {

    border: 0;

    background: var(--blue);

    color: white;

    height: 50px;

    padding: 0 28px;

    border-radius: 14px;

    font-weight: 700;

    transition: 0.2s;

}


.hero-search button:hover {

    background: #0e59c5;

    transform: translateY(-1px);

}


/* =====================================================
   SEARCH EXAMPLES
===================================================== */

.search-examples {

    display: flex;

    align-items: center;

    gap: 8px;

    flex-wrap: wrap;

    margin-top: 14px;

    font-size: 13px;

    color: var(--text-light);

}


.search-examples button {

    border: 1px solid #d9dfe8;

    background: white;

    color: var(--text);

    border-radius: 30px;

    padding: 5px 12px;

    font-size: 12px;

}


/* =====================================================
   HERO IMAGE
===================================================== */

.hero-image {

    position: relative;

    margin-left: 35px;

}


.hero-image img {

    width: 100%;

    height: 450px;

    object-fit: cover;

    border-radius: 30px;

    box-shadow: 0 25px 60px rgba(10, 30, 70, 0.15);

}


.hero-floating-card {

    position: absolute;

    left: -25px;

    bottom: 30px;

    background: white;

    border-radius: 16px;

    padding: 15px 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    box-shadow: 0 15px 35px rgba(10,30,70,0.15);

}


.floating-icon {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: var(--green-light);

    color: var(--green);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

}


.hero-floating-card strong {

    display: block;

    font-size: 13px;

}


.hero-floating-card small {

    color: var(--text-light);

}


/* =====================================================
   SECTION GENERAL
===================================================== */

.categories-section,
.recommendations-section {

    padding: 80px 0;

}


.section-heading {

    text-align: center;

    margin-bottom: 42px;

}


.section-label {

    display: block;

    color: var(--blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 8px;

}


.section-heading h2 {

    font-size: 34px;

    font-weight: 800;

    letter-spacing: -1px;

    margin-bottom: 10px;

}


.section-heading p {

    color: var(--text-light);

    margin: 0;

}


/* =====================================================
   CATEGORIES
===================================================== */

.category-card {

    height: 100%;

    padding: 30px 24px;

    border-radius: var(--radius);

    border: 1px solid var(--border);

    text-align: center;

    transition: 0.25s;

}


.category-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);

}


.category-icon {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    font-size: 27px;

}


.category-card h3 {

    font-size: 20px;

    font-weight: 750;

}


.category-card p {

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.6;

    min-height: 67px;

}


.category-card a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 15px;

    border: 1px solid rgba(0,0,0,0.08);

    border-radius: 10px;

    color: var(--text);

    font-size: 13px;

    font-weight: 700;

}


/* COLORES */

.category-kitchen {

    background: #fffaf0;

}


.category-kitchen .category-icon {

    background: #ffedb5;

    color: #b77b00;

}


.category-cleaning {

    background: #f2fbf6;

}


.category-cleaning .category-icon {

    background: #d8f3e3;

    color: #159957;

}


.category-bathroom {

    background: #f7f4ff;

}


.category-bathroom .category-icon {

    background: #e8ddff;

    color: #7654c7;

}


.category-organization {

    background: #fff5ef;

}


.category-organization .category-icon {

    background: #ffe1cf;

    color: #db7138;

}


/* =====================================================
   RECOMMENDATIONS
===================================================== */

.recommendations-section {

    background: var(--background-soft);

}


.product-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    overflow: hidden;

    height: 100%;

    transition: 0.25s;

}


.product-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);

}


.product-image {

    height: 200px;

    background: #f5f7fa;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}


.ranking {

    position: absolute;

    top: 12px;

    left: 12px;

    background: var(--blue);

    color: white;

    padding: 5px 9px;

    border-radius: 8px;

    font-weight: 800;

    font-size: 12px;

}


.product-placeholder {

    width: 120px;

    height: 120px;

    border-radius: 50%;

    background: #e9eef5;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #8794a8;

    font-size: 42px;

}


.product-body {

    padding: 17px;

}


.product-category {

    color: #159957;

    background: #eaf8f1;

    border-radius: 5px;

    padding: 4px 7px;

    font-size: 9px;

    font-weight: 800;

}


.product-category.cleaning {

    color: #159957;

}


.product-category.bathroom {

    color: #7654c7;

    background: #f0eaff;

}


.product-body h3 {

    font-size: 16px;

    font-weight: 750;

    margin: 10px 0;

    min-height: 38px;

}


.product-rating {

    display: flex;

    align-items: center;

    gap: 7px;

}


.product-rating span {

    color: var(--yellow);

    font-size: 13px;

}


.product-rating small {

    color: var(--text-light);

    font-size: 11px;

}


.product-body p {

    font-size: 12px;

    line-height: 1.5;

    color: var(--text-light);

    min-height: 54px;

}


.product-score {

    margin: 8px 0 12px;

}


.product-score strong {

    color: var(--green);

    font-size: 28px;

    font-weight: 800;

}


.product-score span {

    color: var(--text-light);

    font-size: 12px;

}


.btn-analysis {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    width: 100%;

    padding: 10px;

    border-radius: 10px;

    background: var(--blue);

    color: white;

    font-size: 12px;

    font-weight: 700;

}


.btn-analysis:hover {

    color: white;

    background: #0e59c5;

}


/* =====================================================
   METODOLOGÍA
===================================================== */

.methodology-section {

    padding: 80px 0;

    background: white;

}


.methodology-box {

    background: #f4f8ff;

    border: 1px solid #e2eaf8;

    border-radius: 25px;

    padding: 50px 40px;

}


.method-item {

    text-align: center;

    padding: 10px;

}


.method-icon {

    width: 58px;

    height: 58px;

    border-radius: 50%;

    margin: 0 auto 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 23px;

}


.method-icon.blue {

    color: var(--blue);

    background: #dceaff;

}


.method-icon.yellow {

    color: #d69500;

    background: #fff1c7;

}


.method-icon.green {

    color: var(--green);

    background: #dff5e8;

}


.method-icon.orange {

    color: #e16c2c;

    background: #ffe6d6;

}


.method-icon.purple {

    color: #7654c7;

    background: #e9e0ff;

}


.method-item h4 {

    font-size: 15px;

    font-weight: 750;

}


.method-item p {

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.6;

}


.methodology-action {

    border-top: 1px solid #dfe7f4;

    margin-top: 35px;

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.methodology-action p {

    margin: 0;

    color: var(--text-light);

}


.btn-methodology {

    background: white;

    border: 1px solid #b9cdf2;

    color: var(--blue);

    padding: 11px 18px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

}


/* =====================================================
   NEWSLETTER
===================================================== */

.newsletter-section {

    padding: 25px 0;

    background: #fff9ed;

}


.newsletter-box {

    display: flex;

    align-items: center;

    gap: 20px;

}


.newsletter-icon {

    width: 50px;

    height: 50px;

    background: #ffeab2;

    color: #d39400;

    border-radius: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

}


.newsletter-box h3 {

    font-size: 18px;

    font-weight: 800;

    margin: 0 0 4px;

}


.newsletter-box p {

    margin: 0;

    color: var(--text-light);

    font-size: 13px;

}


.newsletter-form {

    margin-left: auto;

    display: flex;

    gap: 7px;

}


.newsletter-form input {

    width: 250px;

    height: 45px;

    border: 1px solid #dddfe5;

    border-radius: 10px;

    padding: 0 15px;

    outline: none;

}


.newsletter-form button {

    border: 0;

    background: var(--blue);

    color: white;

    padding: 0 20px;

    border-radius: 10px;

    font-weight: 700;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: var(--blue-dark);

    color: white;

    padding: 55px 0 20px;

}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 19px;

    font-weight: 700;

}


.footer-brand i {

    color: #70a8ff;

}


.footer-brand strong {

    color: #70a8ff;

}


.footer-description {

    color: #aebbd0;

    font-size: 13px;

    line-height: 1.7;

    max-width: 310px;

    margin-top: 15px;

}


.social-icons {

    display: flex;

    gap: 8px;

}


.social-icons a {

    width: 35px;

    height: 35px;

    background: rgba(255,255,255,0.08);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

}


.footer h5 {

    font-size: 14px;

    margin-bottom: 18px;

}


.footer a {

    color: #aebbd0;

    display: block;

    font-size: 12px;

    margin-bottom: 10px;

}


.footer a:hover {

    color: white;

}


.affiliate-box {

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.08);

    padding: 15px;

    border-radius: 12px;

}


.affiliate-box > i {

    color: #70a8ff;

    margin-right: 5px;

}


.affiliate-box strong {

    font-size: 12px;

}


.affiliate-box p {

    color: #aebbd0;

    font-size: 11px;

    line-height: 1.5;

    margin: 10px 0 0;

}


.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.1);

    margin-top: 40px;

    padding-top: 18px;

    text-align: center;

    color: #7e8da5;

    font-size: 11px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .hero {

        padding: 55px 0;

    }

    .hero-image {

        margin: 40px 0 0;

    }

    .hero-image img {

        height: 350px;

    }

    .newsletter-box {

        flex-wrap: wrap;

    }

    .newsletter-form {

        margin-left: 0;

        width: 100%;

    }

}


@media (max-width: 576px) {

    .top-bar-content {

        justify-content: center;

        text-align: center;

        padding: 8px;

    }

    .top-bar-content span:last-child {

        display: none;

    }

    .hero h1 {

        font-size: 40px;

        letter-spacing: -1px;

    }

    .hero-search {

        height: auto;

        flex-wrap: wrap;

        padding: 8px;

    }

    .hero-search input {

        height: 45px;

    }

    .hero-search button {

        width: 100%;

    }

    .hero-image img {

        height: 280px;

    }

    .hero-floating-card {

        left: 10px;

        bottom: 15px;

    }

    .section-heading h2 {

        font-size: 28px;

    }

    .methodology-box {

        padding: 35px 20px;

    }

    .methodology-action {

        flex-direction: column;

        gap: 20px;

        text-align: center;

    }

    .newsletter-form {

        flex-direction: column;

    }

    .newsletter-form input {

        width: 100%;

    }

}

/* ==========================================
   NUESTROS RECOMENDADOS
========================================== */

.recommended-section {
    padding: 90px 20px;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 45px;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #1769e0;
}

.section-header h2 {
    margin: 0;
    color: #102a43;
    font-size: 32px;
    font-weight: 800;
}

.section-header p {
    margin-top: 12px;
    color: #64748b;
    font-size: 15px;
}


/* GRID */

.recommended-grid {
    max-width: 1120px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* CARD */

.product-card {
    background: white;
    border: 1px solid #e5eaf0;
    border-radius: 18px;
    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.10);
}


/* IMAGEN */

.product-image {
    position: relative;
    height: 245px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f8fafc;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    padding: 20px;

    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}


/* BADGE */

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;

    z-index: 2;

    padding: 6px 10px;

    border-radius: 7px;

    background: #fff7d6;
    color: #a66b00;

    font-size: 10px;
    font-weight: 800;
}


/* CONTENIDO */

.product-content {
    padding: 22px;
}

.product-category {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;

    color: #1769e0;
}

.product-content h3 {
    margin: 7px 0 10px;

    color: #102a43;

    font-size: 20px;
    line-height: 1.25;
}


/* PUNTAJE */

.product-score {
    display: flex;
    align-items: center;
    gap: 5px;

    margin-bottom: 13px;
}

.score-number {
    font-size: 20px;
    font-weight: 800;
    color: #1769e0;
}

.score-text {
    color: #94a3b8;
    font-size: 12px;
}

.stars {
    margin-left: 5px;

    color: #f5b301;

    font-size: 13px;
    letter-spacing: 1px;
}


/* DESCRIPCIÓN */

.product-description {
    color: #64748b;

    font-size: 13px;
    line-height: 1.6;

    margin-bottom: 18px;
}


/* HIGHLIGHTS */

.product-highlights {
    display: flex;
    flex-direction: column;
    gap: 9px;

    margin-bottom: 20px;
}

.highlight {
    display: flex;
    gap: 9px;

    padding: 10px;

    border-radius: 9px;

    font-size: 12px;
}

.highlight > span {
    font-size: 14px;
}

.highlight strong {
    display: block;
    font-size: 11px;
}

.highlight small {
    display: block;
    margin-top: 2px;

    color: #64748b;
    font-size: 10px;
}

.highlight.good {
    background: #f0fdf4;
}

.highlight.good > span {
    color: #16a34a;
}

.highlight.warning {
    background: #fff7ed;
}

.highlight.warning > span {
    color: #ea580c;
}


/* LINK */

.product-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 14px;

    border-top: 1px solid #edf0f4;

    color: #1769e0;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.product-link span {
    font-size: 18px;

    transition: transform 0.2s ease;
}

.product-link:hover span {
    transform: translateX(4px);
}


/* FOOTER */

.recommended-footer {
    text-align: center;
    margin-top: 40px;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 20px;

    border: 1px solid #dce3ec;
    border-radius: 9px;

    background: white;

    color: #102a43;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.2s ease;
}

.secondary-button:hover {
    border-color: #1769e0;
    color: #1769e0;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .recommended-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 600px) {

    .recommended-section {
        padding: 65px 15px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .recommended-grid {
        grid-template-columns: 1fr;
    }

}

/* ==========================================
   FICHA DEL PRODUCTO
========================================== */

.product-detail-section {
    padding: 55px 20px 100px;
    background: #f8fafc;
}

.product-detail-container {
    max-width: 1120px;
    margin: auto;
}


/* VOLVER */

.back-link {
    display: inline-flex;
    align-items: center;

    margin-bottom: 25px;

    color: #64748b;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.back-link:hover {
    color: #1769e0;
}


/* PRODUCTO PRINCIPAL */

.product-detail-main {
    display: grid;
    grid-template-columns: 1fr 1fr;

    background: white;

    border: 1px solid #e5eaf0;
    border-radius: 20px;

    overflow: hidden;
}


/* IMAGEN */

.product-detail-image {
    position: relative;

    min-height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f8fafc;
}

.product-detail-image img {
    width: 100%;
    height: 100%;

    max-height: 470px;

    object-fit: contain;

    padding: 35px;
}


/* BADGE */

.detail-badge {
    position: absolute;

    top: 20px;
    left: 20px;

    z-index: 2;

    padding: 8px 12px;

    border-radius: 8px;

    background: #fff7d6;
    color: #a66b00;

    font-size: 10px;
    font-weight: 800;
}


/* INFORMACIÓN */

.product-detail-info {
    padding: 50px 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-category {
    color: #1769e0;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.product-detail-info h1 {
    margin: 10px 0 20px;

    color: #102a43;

    font-size: 38px;
    line-height: 1.15;

    font-weight: 800;
}


/* SCORE */

.detail-score {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 22px;
}

.big-score {
    color: #1769e0;

    font-size: 40px;
    font-weight: 900;
}

.score-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-stars {
    color: #f5b301;

    font-size: 16px;
    letter-spacing: 2px;
}

.score-details span {
    color: #94a3b8;

    font-size: 11px;
}


/* DESCRIPCIÓN */

.detail-description {
    color: #64748b;

    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 25px;
}


/* PRECIO */

.detail-price {
    display: flex;
    flex-direction: column;

    margin-bottom: 20px;
}

.detail-price span {
    color: #94a3b8;

    font-size: 11px;
}

.detail-price strong {
    margin-top: 3px;

    color: #102a43;

    font-size: 28px;
}


/* MERCADO LIBRE */

.mercadolibre-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;

    padding: 14px 20px;

    border-radius: 9px;

    background: #1769e0;
    color: white;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.2s ease;
}

.mercadolibre-button:hover {
    background: #0d5bc7;

    transform: translateY(-1px);
}

.mercadolibre-button span {
    font-size: 17px;
}

.affiliate-note {
    margin-top: 10px;

    color: #94a3b8;

    font-size: 10px;
    text-align: center;
}


/* ==========================================
   ANÁLISIS
========================================== */

.analysis-section {
    margin-top: 55px;
}

.analysis-header {
    max-width: 700px;

    margin-bottom: 35px;
}

.analysis-header h2 {
    margin: 5px 0 10px;

    color: #102a43;

    font-size: 32px;
    font-weight: 800;
}

.analysis-header p {
    color: #64748b;

    font-size: 14px;
    line-height: 1.7;
}


/* PROS CONTRAS */

.pros-cons-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-bottom: 35px;
}

.analysis-box {
    padding: 25px;

    border-radius: 15px;

    border: 1px solid #e5eaf0;
}

.analysis-box.positive {
    background: #f0fdf4;
}

.analysis-box.negative {
    background: #fff7ed;
}

.analysis-box-title {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 15px;
}

.analysis-box-title span {
    font-size: 20px;
}

.analysis-box.positive .analysis-box-title span {
    color: #16a34a;
}

.analysis-box.negative .analysis-box-title span {
    color: #ea580c;
}

.analysis-box h3 {
    margin: 0;

    color: #102a43;

    font-size: 18px;
}

.analysis-box ul {
    margin: 0;

    padding-left: 20px;
}

.analysis-box li {
    margin-bottom: 8px;

    color: #475569;

    font-size: 13px;
    line-height: 1.5;
}


/* ==========================================
   CONTENIDO DEL ANÁLISIS
========================================== */

.analysis-content {
    background: white;

    padding: 30px;

    margin-bottom: 20px;

    border: 1px solid #e5eaf0;
    border-radius: 15px;
}

.analysis-content h2 {
    margin: 0 0 12px;

    color: #102a43;

    font-size: 21px;
}

.analysis-content p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.8;
}


/* ==========================================
   MALAS RESEÑAS
========================================== */

.analysis-warning {
    padding: 25px 30px;

    margin-bottom: 25px;

    border: 1px solid #fed7aa;
    border-radius: 15px;

    background: #fffaf5;
}

.analysis-warning h2 {
    margin: 0 0 10px;

    color: #9a3412;

    font-size: 20px;
}

.analysis-warning p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.7;
}


/* ==========================================
   PARA QUIÉN
========================================== */

.for-who-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-bottom: 35px;
}

.for-who {
    display: flex;

    gap: 15px;

    padding: 25px;

    border-radius: 15px;

    border: 1px solid #e5eaf0;
    background: white;
}

.who-icon {
    font-size: 24px;
}

.for-who h3 {
    margin: 0 0 8px;

    color: #102a43;

    font-size: 17px;
}

.for-who p {
    margin: 0;

    color: #64748b;

    font-size: 13px;
    line-height: 1.6;
}


/* ==========================================
   VEREDICTO
========================================== */

.final-verdict {
    padding: 45px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #eef5ff,
        #f8fbff
    );

    border: 1px solid #dbeafe;

    text-align: center;
}

.final-verdict h2 {
    margin: 5px 0 12px;

    color: #102a43;

    font-size: 30px;
}

.final-verdict p {
    max-width: 700px;

    margin: 0 auto 20px;

    color: #64748b;

    font-size: 14px;
    line-height: 1.7;
}

.final-score {
    margin-bottom: 22px;

    color: #1769e0;

    font-size: 42px;
    font-weight: 900;
}

.final-verdict .mercadolibre-button {
    max-width: 350px;
    margin: auto;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 850px) {

    .product-detail-main {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        min-height: 350px;
    }

    .product-detail-info {
        padding: 35px 25px;
    }

    .product-detail-info h1 {
        font-size: 30px;
    }

    .pros-cons-grid,
    .for-who-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .product-detail-section {
        padding: 35px 15px 70px;
    }

    .product-detail-image {
        min-height: 280px;
    }

    .analysis-section {
        margin-top: 35px;
    }

    .final-verdict {
        padding: 30px 20px;
    }

}

/* ==========================================
   PÁGINA CATEGORÍA
========================================== */

.category-page-hero {
    padding: 70px 20px;
    background: linear-gradient(
        135deg,
        #f8fbff,
        #eef5ff
    );
}

.category-page-hero h1 {
    max-width: 700px;
    margin: 8px auto 14px;

    color: #102a43;
    font-size: 44px;
    font-weight: 800;
}

.category-page-hero p {
    max-width: 700px;
    margin: auto;

    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}


/* OPCIONES */

.category-options-section {
    padding: 80px 0;
}

.category-option-card {
    display: block;

    height: 100%;

    padding: 28px 24px;

    background: white;

    border: 1px solid #e5eaf0;
    border-radius: 17px;

    color: #102a43;

    text-align: center;
    text-decoration: none;

    transition: 0.25s ease;
}

.category-option-card:hover {
    transform: translateY(-5px);

    border-color: #bcd3f8;

    box-shadow:
        0 14px 30px rgba(15, 35, 70, 0.08);
}

.category-option-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef5ff;

    font-size: 28px;
}

.category-option-card h3 {
    font-size: 19px;
    font-weight: 800;
}

.category-option-card p {
    min-height: 50px;

    color: #64748b;

    font-size: 13px;
    line-height: 1.6;
}

.category-option-card span {
    color: #1769e0;

    font-size: 12px;
    font-weight: 700;
}


/* NECESIDADES */

.needs-section {
    padding: 15px 0 80px;
}

.needs-box {
    padding: 45px;

    background: #f5f8fd;

    border: 1px solid #e2eaf5;
    border-radius: 22px;
}

.needs-search {
    max-width: 760px;
    height: 60px;

    margin: auto;

    display: flex;
    align-items: center;

    background: white;

    border: 1px solid #dce3ec;
    border-radius: 15px;

    padding: 6px;

    box-shadow:
        0 8px 25px rgba(15, 35, 70, 0.06);
}

.needs-search > i {
    margin-left: 15px;

    color: #94a3b8;
    font-size: 19px;
}

.needs-search input {
    flex: 1;

    height: 100%;

    padding: 0 14px;

    border: 0;
    outline: none;

    font-size: 14px;
}

.needs-search button {
    height: 48px;

    padding: 0 24px;

    border: 0;
    border-radius: 11px;

    background: #1769e0;
    color: white;

    font-weight: 700;
}

.need-tags {
    margin-top: 18px;

    display: flex;
    justify-content: center;

    gap: 10px;
    flex-wrap: wrap;
}

.need-tags button {
    padding: 8px 14px;

    background: white;

    border: 1px solid #dce3ec;
    border-radius: 30px;

    color: #334155;

    font-size: 12px;
    font-weight: 600;
}


/* PRODUCTOS DE CATEGORÍA */

.category-top-products {
    padding: 80px 0;

    background: #f8fafc;
}

.category-product-card {
    height: 100%;

    overflow: hidden;

    background: white;

    border: 1px solid #e5eaf0;
    border-radius: 18px;

    transition: 0.25s ease;
}

.category-product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.09);
}

.category-product-image {
    height: 220px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f7fa;
}

.category-product-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 6px 10px;

    background: #fff7d6;
    color: #9a6700;

    border-radius: 7px;

    font-size: 10px;
    font-weight: 800;
}

.category-product-body {
    padding: 22px;
}

.category-product-body h3 {
    margin: 8px 0;

    color: #102a43;

    font-size: 19px;
    font-weight: 800;
}

.category-product-score {
    display: flex;
    align-items: baseline;

    gap: 4px;

    margin: 10px 0 5px;
}

.category-product-score strong {
    color: #1769e0;

    font-size: 29px;
    font-weight: 900;
}

.category-product-score span {
    color: #94a3b8;

    font-size: 11px;
}

.confidence {
    display: inline-block;

    margin-bottom: 13px;

    padding: 5px 9px;

    border-radius: 20px;

    font-size: 10px;
    font-weight: 700;
}

.confidence-high {
    background: #ecfdf3;
    color: #15803d;
}

.category-product-body p {
    min-height: 48px;

    color: #64748b;

    font-size: 13px;
    line-height: 1.6;
}


/* RESPONSIVE */

@media (max-width: 768px) {

    .category-page-hero h1 {
        font-size: 34px;
    }

    .needs-box {
        padding: 30px 20px;
    }

    .needs-search {
        height: auto;
        flex-wrap: wrap;
    }

    .needs-search input {
        height: 45px;
    }

    .needs-search button {
        width: 100%;
    }

}

/* ==========================================
   RESULTADOS
========================================== */

.results-hero {
    padding: 65px 20px 55px;
    background: linear-gradient(
        135deg,
        #f8fbff,
        #eef5ff
    );
    text-align: center;
}

.results-breadcrumb {
    margin-bottom: 16px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
}

.results-hero h1 {
    margin: 7px 0 12px;
    color: #102a43;
    font-size: 44px;
    font-weight: 850;
}

.results-hero p {
    max-width: 700px;
    margin: auto;
    color: #64748b;
    line-height: 1.7;
}

.change-search {
    display: inline-block;
    margin-top: 20px;
    color: #1769e0;
    font-size: 12px;
    font-weight: 700;
}


/* PRINCIPAL */

.main-result-section {
    padding: 70px 0;
}

.main-result-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    overflow: hidden;

    background: white;

    border: 1px solid #dbe7f7;
    border-radius: 22px;

    box-shadow:
        0 18px 45px rgba(15, 35, 70, 0.08);
}

.main-result-image {
    min-height: 470px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #f7faff,
            #edf4ff
        );
}

.main-result-badge {
    position: absolute;
    top: 20px;
    left: 20px;

    padding: 8px 12px;

    background: #fff3c4;
    color: #996600;

    border-radius: 8px;

    font-size: 10px;
    font-weight: 900;
}

.product-placeholder.large {
    width: 190px;
    height: 190px;

    font-size: 65px;
}

.main-result-content {
    padding: 50px 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-result-content h2 {
    margin: 8px 0 12px;

    color: #102a43;

    font-size: 34px;
    font-weight: 850;
}

.main-result-score {
    display: flex;
    align-items: baseline;

    gap: 5px;

    margin-bottom: 7px;
}

.main-result-score strong {
    color: #1769e0;

    font-size: 45px;
    font-weight: 900;
}

.main-result-score span {
    color: #94a3b8;
}

.main-result-description {
    margin: 20px 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.7;
}

.main-result-pros {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 9px;

    margin-bottom: 20px;
}

.main-result-pros div {
    padding: 9px 12px;

    background: #f0fdf4;

    border-radius: 8px;

    color: #475569;

    font-size: 12px;
}

.main-result-pros span {
    margin-right: 5px;

    color: #16a34a;

    font-weight: 900;
}

.main-result-warning {
    display: flex;
    gap: 10px;

    padding: 13px;

    margin-bottom: 22px;

    background: #fff7ed;

    border-radius: 9px;
}

.main-result-warning span {
    color: #ea580c;
}

.main-result-warning p {
    margin: 0;

    color: #64748b;

    font-size: 11px;
    line-height: 1.5;
}

.btn-analysis.big {
    max-width: 290px;

    padding: 13px 20px;

    font-size: 13px;
}


/* OTRAS OPCIONES */

.other-results-section {
    padding: 80px 0;

    background: #f8fafc;
}

.result-option-card {
    height: 100%;

    overflow: hidden;

    position: relative;

    background: white;

    border: 1px solid #e5eaf0;
    border-radius: 18px;

    transition: 0.25s;
}

.result-option-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.08);
}

.result-option-badge {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 2;

    padding: 6px 9px;

    background: #fff7d6;
    color: #9a6700;

    border-radius: 7px;

    font-size: 9px;
    font-weight: 900;
}

.result-option-image {
    height: 200px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f7fa;
}

.result-option-body {
    padding: 22px;
}

.result-option-body h3 {
    margin: 8px 0;

    color: #102a43;

    font-size: 19px;
    font-weight: 800;
}

.result-option-score strong {
    color: #1769e0;

    font-size: 28px;
    font-weight: 900;
}

.result-option-score span {
    color: #94a3b8;

    font-size: 11px;
}

.result-option-body p {
    min-height: 55px;

    margin-top: 12px;

    color: #64748b;

    font-size: 12px;
    line-height: 1.6;
}


/* COMPARACIÓN */

.comparison-section {
    padding: 80px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;

    border: 1px solid #e5eaf0;
    border-radius: 16px;

    background: white;
}

.comparison-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 18px;

    border-bottom: 1px solid #edf0f4;

    text-align: center;

    font-size: 12px;
}

.comparison-table th {
    background: #f8fafc;

    color: #102a43;

    font-weight: 800;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    color: #64748b;
}

.comparison-table strong {
    color: #1769e0;
}


/* METODOLOGÍA */

.results-methodology {
    padding: 20px 0 80px;
}

.results-methodology-box {
    padding: 35px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: #eef5ff;

    border: 1px solid #dae7fa;
    border-radius: 18px;
}

.results-methodology-box h2 {
    margin: 5px 0 8px;

    color: #102a43;

    font-size: 24px;
    font-weight: 800;
}

.results-methodology-box p {
    max-width: 680px;

    margin: 0;

    color: #64748b;

    font-size: 13px;
    line-height: 1.6;
}


/* TAG COMO ENLACE */

.need-link {
    display: inline-flex;

    padding: 8px 14px;

    background: white;

    border: 1px solid #dce3ec;
    border-radius: 30px;

    color: #334155;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
}

.need-link:hover {
    border-color: #1769e0;
    color: #1769e0;
}


/* RESPONSIVE */

@media (max-width: 850px) {

    .main-result-card {
        grid-template-columns: 1fr;
    }

    .main-result-image {
        min-height: 320px;
    }

    .main-result-content {
        padding: 35px 25px;
    }

    .main-result-pros {
        grid-template-columns: 1fr;
    }

    .results-methodology-box {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 600px) {

    .results-hero h1 {
        font-size: 34px;
    }

}

.mercadolibre-button.disabled {
    background: #94a3b8;
    cursor: not-allowed;
    pointer-events: none;
}

.results-fallback {
    max-width: 850px;
    margin: 25px auto 0;
    padding: 14px 18px;

    background: #fff8e8;
    border: 1px solid #fde4a7;
    border-radius: 10px;

    color: #7c5a00;
    font-size: 12px;
    text-align: center;
}

.results-fallback i {
    margin-right: 6px;
}

/* ==========================================
   ADMIN - PRODUCTOS
========================================== */

.admin-products-section {
    padding: 60px 0 100px;
    background: #f6f8fc;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 30px;
}

.admin-header h1 {
    margin: 5px 0 6px;
    color: #102a43;
    font-size: 38px;
    font-weight: 850;
}

.admin-header p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.admin-new-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 18px;

    background: #1769e0;
    color: white;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(23, 105, 224, 0.18);
}

.admin-new-button:hover {
    background: #0d5bc7;
    color: white;
}


/* STATS */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 25px;
}

.admin-stat-card {
    padding: 20px 22px;
    background: white;

    border: 1px solid #e5eaf0;
    border-radius: 14px;
}

.admin-stat-card span {
    display: block;
    color: #64748b;
    font-size: 11px;
    margin-bottom: 5px;
}

.admin-stat-card strong {
    color: #102a43;
    font-size: 28px;
    font-weight: 850;
}


/* TABLE CARD */

.admin-table-card {
    background: white;
    border: 1px solid #e5eaf0;
    border-radius: 18px;
    overflow: hidden;
}

.admin-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 22px 25px;

    border-bottom: 1px solid #edf0f4;
}

.admin-table-header h2 {
    margin: 0;
    color: #102a43;
    font-size: 19px;
    font-weight: 800;
}

.admin-table-header p {
    margin: 4px 0 0;
    color: #94a3b8;
    font-size: 11px;
}


/* SEARCH */

.admin-search {
    width: 260px;
    height: 40px;

    display: flex;
    align-items: center;

    border: 1px solid #dce3ec;
    border-radius: 9px;

    background: #f8fafc;
}

.admin-search i {
    margin-left: 12px;
    color: #94a3b8;
}

.admin-search input {
    width: 100%;
    height: 100%;

    border: 0;
    outline: none;

    background: transparent;

    padding: 0 10px;

    font-size: 12px;
}


/* TABLE */

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.admin-table th {
    padding: 13px 18px;

    background: #f8fafc;

    border-bottom: 1px solid #e9edf3;

    color: #64748b;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;

    text-align: left;

    text-transform: uppercase;
}

.admin-table td {
    padding: 15px 18px;

    border-bottom: 1px solid #edf0f4;

    vertical-align: middle;

    color: #475569;

    font-size: 12px;
}

.admin-table tbody tr:hover {
    background: #fbfcfe;
}

.admin-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-id {
    color: #94a3b8 !important;
}


/* PRODUCT NAME */

.admin-product-name {
    display: flex;
    align-items: center;
    gap: 11px;
}

.admin-product-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef5ff;

    color: #1769e0;

    border-radius: 9px;

    font-size: 16px;
}

.admin-product-name strong {
    display: block;

    color: #102a43;

    font-size: 12px;
}

.admin-product-name small {
    display: block;

    margin-top: 2px;

    color: #94a3b8;

    font-size: 10px;
}


/* CATEGORY */

.admin-category {
    padding: 5px 8px;

    background: #eef5ff;

    color: #1769e0;

    border-radius: 6px;

    font-size: 9px;
    font-weight: 800;
}


/* SCORE */

.admin-score {
    color: #1769e0;

    font-size: 17px;
    font-weight: 850;
}

.admin-score small {
    color: #94a3b8;
    font-size: 9px;
}


/* CONFIDENCE */

.admin-confidence {
    padding: 5px 8px;

    border-radius: 20px;

    font-size: 9px;
    font-weight: 700;
}

.admin-confidence.high {
    background: #ecfdf3;
    color: #15803d;
}

.admin-confidence.medium {
    background: #fff8e6;
    color: #a16207;
}

.admin-confidence.low {
    background: #fef2f2;
    color: #b91c1c;
}


/* STATUS */

.admin-status {
    padding: 5px 9px;

    border-radius: 20px;

    font-size: 9px;
    font-weight: 800;
}

.admin-status.active {
    background: #ecfdf3;
    color: #15803d;
}

.admin-status.inactive {
    background: #f1f5f9;
    color: #64748b;
}


/* ACTIONS */

.admin-actions {
    display: flex;
    gap: 6px;
}

.admin-action {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    text-decoration: none;

    transition: 0.2s;
}

.admin-action.view {
    background: #eef5ff;
    color: #1769e0;
}

.admin-action.edit {
    background: #fff8e8;
    color: #b7791f;
}

.admin-action.disable {
    background: #fef2f2;
    color: #dc2626;
}

.admin-action:hover {
    transform: translateY(-1px);
}


/* EMPTY */

.admin-empty {
    padding: 40px !important;
    text-align: center;
    color: #94a3b8 !important;
}


/* RESPONSIVE */

@media (max-width: 768px) {

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-table-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-search {
        width: 100%;
    }

}

/* ==========================================
   ADMIN - FORMULARIO PRODUCTO
========================================== */

.admin-form-section {
    padding: 55px 0 100px;
    background: #f6f8fc;
    min-height: 100vh;
}

.admin-form-header {
    margin-bottom: 28px;
}

.admin-form-header h1 {
    margin: 6px 0;
    color: #102a43;
    font-size: 36px;
    font-weight: 850;
}

.admin-form-header p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

.admin-product-form {
    max-width: 1000px;
}

.admin-form-card {
    margin-bottom: 22px;
    padding: 28px;

    background: white;

    border: 1px solid #e5eaf0;
    border-radius: 17px;
}

.admin-form-card-header {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;
}

.admin-form-card-header > span {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #eef5ff;
    color: #1769e0;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 850;
}

.admin-form-card-header h2 {
    margin: 0;

    color: #102a43;

    font-size: 18px;
    font-weight: 800;
}

.admin-form-card-header p {
    margin: 3px 0 0;

    color: #94a3b8;

    font-size: 11px;
}


/* GRID */

.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.admin-field {
    display: flex;
    flex-direction: column;
}

.admin-field.full {
    grid-column: 1 / -1;
}

.admin-field label,
.v1-field label {
    margin-bottom: 7px;

    color: #334155;

    font-size: 11px;
    font-weight: 700;
}

.admin-field input,
.admin-field select,
.admin-field textarea,
.v1-field input,
.v1-field select {
    width: 100%;

    border: 1px solid #dce3ec;
    border-radius: 9px;

    background: #fbfcfe;

    color: #334155;

    font-size: 12px;

    outline: none;

    transition: .2s;
}

.admin-field input,
.admin-field select {
    height: 43px;
    padding: 0 12px;
}

.admin-field textarea {
    padding: 12px;

    resize: vertical;
}

.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus,
.v1-field input:focus,
.v1-field select:focus {
    border-color: #1769e0;

    box-shadow:
        0 0 0 3px rgba(23, 105, 224, .08);

    background: white;
}


/* V1 */

.v1-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.v1-field > div {
    display: flex;
    align-items: center;

    border: 1px solid #dce3ec;
    border-radius: 9px;

    overflow: hidden;

    background: #fbfcfe;
}

.v1-field input {
    height: 43px;

    border: 0;
    border-radius: 0;

    padding: 0 12px;
}

.v1-field > div span {
    padding-right: 11px;

    color: #94a3b8;

    font-size: 10px;
    font-weight: 700;
}

.v1-field select {
    height: 45px;
    padding: 0 10px;
}


/* ACTIONS */

.admin-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;

    margin-top: 25px;
}

.admin-cancel-button,
.admin-save-button {
    min-height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 18px;

    border-radius: 9px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.admin-cancel-button {
    border: 1px solid #dce3ec;

    background: white;

    color: #475569;
}

.admin-save-button {
    border: 0;

    background: #1769e0;

    color: white;

    cursor: pointer;
}

.admin-save-button:hover {
    background: #0d5bc7;
}


/* RESPONSIVE */

@media (max-width: 850px) {

    .v1-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 650px) {

    .admin-form-grid,
    .v1-grid {
        grid-template-columns: 1fr;
    }

    .admin-field.full {
        grid-column: auto;
    }

}

.admin-status-form {
    margin: 0;
    padding: 0;
}

.admin-status-form button {
    border: 0;
    cursor: pointer;
}

.admin-action.activate {
    background: #ecfdf3;
    color: #16a34a;
}

.admin-action.activate:hover {
    background: #dcfce7;
}

/* ==========================================
   ADMIN - PROS Y CONTRAS
========================================== */

.admin-analysis-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.admin-analysis-box {
    padding: 20px;

    border: 1px solid #e5eaf0;
    border-radius: 13px;

    background: #fbfcfe;
}

.admin-analysis-box h3 {
    display: flex;
    align-items: center;
    gap: 7px;

    margin: 0 0 16px;

    color: #102a43;

    font-size: 14px;
    font-weight: 800;
}

.admin-analysis-box.pros h3 i {
    color: #16a34a;
}

.admin-analysis-box.cons h3 i {
    color: #f59e0b;
}


/* ITEMS */

.admin-analysis-list {
    display: flex;
    flex-direction: column;
    gap: 8px;

    margin-bottom: 15px;
}

.admin-analysis-item {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 9px 11px;

    background: white;

    border: 1px solid #e5eaf0;
    border-radius: 8px;

    color: #475569;

    font-size: 11px;
}

.admin-analysis-item form {
    margin: 0;
}

.admin-analysis-item button {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 6px;

    background: #fef2f2;
    color: #dc2626;

    cursor: pointer;
}

.admin-analysis-empty {
    margin: 5px 0 15px;

    color: #94a3b8;

    font-size: 11px;
}


/* AGREGAR */

.admin-add-analysis {
    display: flex;
    gap: 8px;
}

.admin-add-analysis input {
    flex: 1;

    height: 40px;

    padding: 0 11px;

    border: 1px solid #dce3ec;
    border-radius: 8px;

    outline: none;

    font-size: 11px;
}

.admin-add-analysis input:focus {
    border-color: #1769e0;
}

.admin-add-analysis button {
    padding: 0 13px;

    border: 0;
    border-radius: 8px;

    background: #1769e0;
    color: white;

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;
}


@media (max-width: 750px) {

    .admin-analysis-columns {
        grid-template-columns: 1fr;
    }

}

/* ==========================================
   ADMIN - ANÁLISIS COMPLETO
========================================== */

.admin-analysis-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.admin-analysis-form-grid .full {
    grid-column: 1 / -1;
}

.admin-analysis-save {
    display: flex;
    justify-content: flex-end;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid #edf0f4;
}

@media (max-width: 700px) {

    .admin-analysis-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-analysis-form-grid .full {
        grid-column: auto;
    }

}

.admin-status.draft {
    background: #fff8e6;
    color: #a16207;
}

.admin-state-select {
    height: 32px;
    padding: 0 8px;

    border: 1px solid #dce3ec;
    border-radius: 7px;

    background: white;

    font-size: 10px;
    color: #334155;
}
/* ==========================================
   MEJORAS VISUALES HOME - HERO
========================================== */

.hero-image {
    position: relative;
    max-width: 520px;
    margin-left: auto;
    padding: 28px;
    border-radius: 28px;

    background: linear-gradient(
        145deg,
        rgba(255,255,255,.95),
        rgba(238,245,255,.85)
    );

    border: 1px solid rgba(23, 105, 224, .10);

    box-shadow:
        0 30px 70px rgba(15, 40, 80, .10);
}

.hero-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;

    transition: transform .35s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* ==========================================
   INDICADORES DE CONFIANZA - HOME
========================================== */

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 7px 11px;

    background: rgba(255, 255, 255, 0.75);
    border: 1px solid #e2e8f0;
    border-radius: 999px;

    color: #526173;
    font-size: 11px;
    font-weight: 600;
}

.hero-trust i {
    color: #16a34a;
    font-size: 11px;
}

.hero-method-note {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-top: 12px;

    color: #64748b;
    font-size: 11px;
    font-weight: 500;
}

.hero-method-note i {
    color: #1769e0;
}

.search-examples {
    margin-top: 16px;
}

/* ==========================================
   BÚSQUEDA DE PRODUCTOS
========================================== */

.search-results-section {
    padding: 70px 0 90px;
}

.search-results-section .section-heading {
    margin-bottom: 35px;
}

.search-empty {
    max-width: 650px;
    margin: 40px auto 0;

    padding: 50px 30px;

    text-align: center;

    background: #f8fbff;
    border: 1px solid #dce8f7;
    border-radius: 18px;
}

.search-empty-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    background: #eaf3ff;
    border-radius: 50%;

    color: #1769e0;
    font-size: 22px;
}

.search-empty h2 {
    color: #102a43;
    margin-bottom: 8px;
}

.search-empty p {
    color: #64748b;
    margin-bottom: 22px;
}

/* ==========================================
   LOGIN ADMIN
========================================== */

.admin-login-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #f5f8fc;
}

.admin-login-card {
    width: 100%;
    max-width: 430px;
    padding: 38px;

    background: white;
    border: 1px solid #e5eaf0;
    border-radius: 20px;

    box-shadow:
        0 25px 60px rgba(15, 40, 80, .08);

    text-align: center;
}

.admin-login-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 16px;

    background: #eaf3ff;
    color: #1769e0;

    font-size: 24px;
}

.admin-login-card h1 {
    margin: 10px 0 8px;

    color: #102a43;

    font-size: 28px;
    font-weight: 800;
}

.admin-login-card > p {
    margin-bottom: 25px;

    color: #64748b;

    font-size: 12px;
    line-height: 1.6;
}

.admin-login-form {
    text-align: left;
}

.admin-login-form .admin-field {
    margin-bottom: 16px;
}

.admin-login-form input {
    width: 100%;
    height: 46px;

    padding: 0 13px;

    border: 1px solid #dce3ec;
    border-radius: 10px;

    outline: none;

    font-size: 12px;
}

.admin-login-form input:focus {
    border-color: #1769e0;

    box-shadow:
        0 0 0 3px rgba(23, 105, 224, .08);
}

.admin-login-button {
    width: 100%;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 8px;

    border: 0;
    border-radius: 10px;

    background: #1769e0;
    color: white;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}

.admin-login-button:hover {
    background: #0d5bc7;
}

.admin-login-error {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 18px;
    padding: 11px 13px;

    border-radius: 9px;

    background: #fff1f2;
    color: #be123c;

    font-size: 11px;
}

.admin-login-back {
    display: inline-block;

    margin-top: 20px;

    color: #64748b;

    font-size: 11px;
    text-decoration: none;
}

/* ==========================================
   ADMIN - CERRAR SESIÓN
========================================== */

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-header-actions form {
    margin: 0;
}

.admin-logout-button {
    height: 40px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border: 1px solid #e4e9f0;
    border-radius: 9px;

    background: white;
    color: #64748b;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition: all .2s ease;
}

.admin-logout-button:hover {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #be123c;
}

/* ==========================================
   ADMIN - GALERÍA DE PRODUCTOS
========================================== */

.admin-image-upload {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;
}


.admin-image-upload input[type="file"] {
    flex: 1;

    padding: 10px;

    border: 1px dashed #cbd5e1;
    border-radius: 10px;

    background: #f8fafc;

    font-size: 11px;
}


.admin-image-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(150px, 1fr));

    gap: 15px;
}


.admin-image-card {
    overflow: hidden;

    border: 1px solid #e5eaf0;
    border-radius: 12px;

    background: white;
}


.admin-image-preview {
    position: relative;

    aspect-ratio: 1 / 1;

    background: #f8fafc;
}


.admin-image-preview img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}


.admin-main-image-badge {
    position: absolute;

    top: 8px;
    left: 8px;

    padding: 5px 8px;

    border-radius: 999px;

    background: white;

    color: #a16207;

    font-size: 9px;
    font-weight: 700;

    box-shadow:
        0 5px 15px rgba(15, 23, 42, .10);
}


.admin-image-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 7px;

    padding: 9px;
}


.admin-image-actions form {
    margin: 0;
}


.admin-image-main-button {
    padding: 7px 9px;

    border: 0;
    border-radius: 7px;

    background: #eef5ff;
    color: #1769e0;

    font-size: 9px;
    font-weight: 700;

    cursor: pointer;
}


.admin-image-delete-button {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 7px;

    background: #fff1f2;
    color: #dc2626;

    cursor: pointer;
}


.admin-images-empty {
    padding: 35px;

    text-align: center;

    border: 1px dashed #d8e0e9;
    border-radius: 12px;

    color: #94a3b8;
}


.admin-images-empty i {
    display: block;

    margin-bottom: 8px;

    font-size: 25px;
}


.admin-images-empty p {
    margin: 0;

    font-size: 11px;
}


@media (max-width: 600px) {

    .admin-image-upload {
        align-items: stretch;
        flex-direction: column;
    }

}

.home-product-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    background: white;
}

.results-main-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    background: white;
}

.results-option-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    background: white;
}
.category-main-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    background: white;
}
/* =========================================
   GALERÍA DE PRODUCTO - MINIATURAS
   ========================================= */

.product-gallery {
    width: 100%;
    min-width: 0;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 82px;
    height: 82px;
    padding: 6px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    overflow: hidden;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0;
}

.product-thumbnail.active {
    border: 2px solid #2563eb;
}

.product-thumbnail:hover {
    border-color: #2563eb;
}

