/*
|--------------------------------------------------------------------------
| Invención Digital - Estilos principales
|--------------------------------------------------------------------------
| Paleta inicial inspirada en la identidad azul/cian del sitio actual.
| Este archivo sustituye style.css + botones.css en la primera etapa.
*/

:root {
    /*
     * Azul principal de Invención Digital.
     * Está inspirado en una estética tecnológica tipo HP,
     * pero sigue funcionando como identidad propia del sitio.
     */
    --indi-blue-950: #05263a;
    --indi-blue-900: #003f63;
    --indi-blue-800: #005f8f;
    --indi-blue-700: #0077ad;
    --indi-blue-600: #0096d6;
    --indi-cyan-500: #20b8e6;
    --indi-cyan-300: #7bdcf4;
    --indi-orange-500: #ff8a2a;
    --indi-orange-600: #ed7112;
    --indi-green-500: #1fbd78;
    --indi-red-500: #e65454;

    --indi-ink: #10253b;
    --indi-muted: #60758a;
    --indi-line: #dce7f1;
    --indi-soft: #f3f7fb;
    --indi-white: #ffffff;

    --indi-shadow-sm: 0 8px 24px rgba(12, 55, 91, 0.08);
    --indi-shadow-md: 0 18px 45px rgba(12, 55, 91, 0.13);
    --indi-shadow-lg: 0 28px 70px rgba(6, 39, 68, 0.2);

    --indi-radius-sm: 10px;
    --indi-radius-md: 18px;
    --indi-radius-lg: 28px;

    --indi-transition: 180ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--indi-white);
    color: var(--indi-ink);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.55;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: var(--indi-white);
    box-shadow: 0 8px 30px rgba(8, 35, 63, 0.08);
}

/* =========================
   BARRA SUPERIOR
========================= */

.top-bar {
    /*
     * Azul marino profundo para separar visualmente la barra
     * superior del degradado brillante de la cabecera principal.
     */
    background: linear-gradient(
        90deg,
        #061f33 0%,
        #082c46 52%,
        #0b3858 100%
    );
    color: rgba(255, 255, 255, 0.97);
    font-size: 0.82rem;
    box-shadow:
        inset 0 -1px 0 rgba(255, 255, 255, 0.10),
        0 2px 8px rgba(2, 24, 41, 0.28);
}

.top-bar__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-bar__contact,
.top-bar__phones {
    display: flex;
    align-items: center;
}

.top-bar__contact {
    gap: 14px;
}

.top-bar__phones {
    gap: 10px;
}

.top-bar__contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
    transition:
        color var(--indi-transition),
        transform var(--indi-transition);
}

.top-bar__phone i {
    color: #ffd237;
    font-size: 0.92rem;
    filter: drop-shadow(0 2px 4px rgba(68, 49, 0, 0.18));
}

.top-bar__phone strong {
    font-weight: 800;
    letter-spacing: 0.01em;
}

.top-bar__separator {
    color: rgba(255, 255, 255, 0.62);
}

.top-bar__email i {
    color: #d8efff;
}

.top-bar__contact a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

/* =========================
   CABECERA DE MARCA
========================= */

.brand-header {
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(255, 255, 255, 0.18),
            transparent 28%
        ),
        /*
         * Comienza con el azul intenso elegido para Invención Digital
         * (#284CD8) y se aclara progresivamente hacia el cian.
         */
        linear-gradient(
            108deg,
            #284cd8 0%,
            #2764dd 28%,
            #1d82dd 52%,
            #159fdf 74%,
            #37bfe8 100%
        );
}

.brand-header__inner {
    min-height: 116px;
    display: grid;
    grid-template-columns: minmax(245px, 310px) minmax(300px, 1fr) auto;
    align-items: center;
    gap: 30px;
    padding-top: 11px;
    padding-bottom: 11px;
}

.site-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--indi-white);
    text-decoration: none;
    transition:
        transform var(--indi-transition),
        filter var(--indi-transition);
}

.site-brand__logo {
    width: auto;
    max-width: 285px;
    height: 96px;
    object-fit: contain;
    filter: drop-shadow(0 7px 15px rgba(0, 45, 78, 0.2));
}

.site-brand:hover {
    transform: translateY(-2px) scale(1.015);
    filter: brightness(1.04);
}

.site-brand__symbol {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 1.9rem;
    backdrop-filter: blur(8px);
}

.site-brand__text {
    display: grid;
    line-height: 0.95;
    font-size: 1.55rem;
    letter-spacing: -0.04em;
}

.site-brand__text strong {
    font-weight: 800;
}

.site-brand__text span {
    justify-self: end;
    font-weight: 500;
}

.header-search {
    height: 48px;
    display: grid;
    grid-template-columns: 1fr 52px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 12px;
    background: var(--indi-white);
    box-shadow: var(--indi-shadow-sm);
    overflow: hidden;
}

.header-search__input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 18px;
    color: var(--indi-ink);
    background: transparent;
}

.header-search__input::placeholder {
    color: #8699aa;
}

.header-search__button {
    border: 0;
    border-left: 1px solid var(--indi-line);
    background: #f8fbfd;
    color: var(--indi-blue-800);
    font-size: 1.18rem;
    transition:
        background var(--indi-transition),
        color var(--indi-transition);
}

.header-search__button:hover {
    background: var(--indi-blue-950);
    color: var(--indi-white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-social {
    display: flex;
    gap: 7px;
}

.header-social__link {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    box-shadow:
        0 5px 13px rgba(11, 57, 93, 0.20),
        inset 0 1px 1px rgba(255, 255, 255, 0.24);
    transition:
        transform var(--indi-transition),
        box-shadow var(--indi-transition),
        filter var(--indi-transition);
}

.header-social__link--facebook {
    background: #1877f2;
}

.header-social__link--instagram {
    background: radial-gradient(
        circle at 32% 106%,
        #ffd600 0 22%,
        #ff7a00 23% 42%,
        #ff0169 43% 63%,
        #d300c5 64% 78%,
        #7638fa 79% 100%
    );
}

.header-social__link--youtube {
    background: #ff0000;
}

.header-social__link--linkedin {
    background: #0a66c2;
}

.header-social__link:hover {
    transform: translateY(-3px) scale(1.08);
    color: #ffffff;
    filter: saturate(1.12) brightness(1.05);
    box-shadow:
        0 9px 18px rgba(11, 57, 93, 0.28),
        0 0 0 3px rgba(255, 255, 255, 0.16);
}

.header-action,
.header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--indi-white);
    text-decoration: none;
    white-space: nowrap;
}

.header-action > i,
.header-cart > i {
    font-size: 1.55rem;
}

.header-action span,
.header-cart__text {
    display: grid;
    font-size: 0.87rem;
    font-weight: 700;
    line-height: 1.15;
}

.header-action small,
.header-cart__text small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 500;
}

.header-cart {
    min-height: 48px;
    padding: 0 19px;
    border: 2px solid #00b956;
    border-radius: 13px;
    background: #ffffff;
    color: #079447;
    box-shadow:
        0 7px 18px rgba(5, 83, 48, 0.14),
        inset 0 0 0 1px rgba(255, 255, 255, 0.65);
    transition:
        transform 0.28s ease,
        background 0.28s ease,
        color 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.header-cart > i {
    color: #00a84f;
    transition:
        transform 0.28s ease,
        color 0.28s ease;
}

.header-cart__text {
    color: #087a3f;
    transition: color 0.28s ease;
}

.header-cart__text small {
    color: #2f9461;
    transition: color 0.28s ease;
}

.header-cart:hover,
.header-cart:focus-visible {
    transform: translateY(-3px) scale(1.025);
    border-color: #00c853;
    background: #00c853;
    color: #ffffff;
    box-shadow:
        0 13px 26px rgba(0, 136, 67, 0.28),
        0 0 0 4px rgba(255, 255, 255, 0.13),
        0 0 24px rgba(0, 200, 83, 0.26);
}

.header-cart:hover > i,
.header-cart:focus-visible > i {
    color: #ffffff;
    transform: translateY(-1px) rotate(-7deg) scale(1.13);
}

.header-cart:hover .header-cart__text,
.header-cart:hover .header-cart__text small,
.header-cart:focus-visible .header-cart__text,
.header-cart:focus-visible .header-cart__text small {
    color: #ffffff;
}

.header-cart:active {
    transform: translateY(-1px) scale(0.99);
}

.header-cart__badge {
    position: absolute;
    top: -11px;
    right: -10px;
    z-index: 3;
    min-width: 25px;
    height: 25px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: #e60023;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    box-shadow:
        0 4px 10px rgba(120, 0, 20, 0.35),
        0 0 0 2px rgba(230, 0, 35, 0.15);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.header-cart:hover .header-cart__badge {
    transform: scale(1.12);
    box-shadow:
        0 6px 14px rgba(120, 0, 20, 0.42),
        0 0 0 4px rgba(230, 0, 35, 0.18);
}

.header-cart__badge.has-items {
    animation: indiCartBadgePulse 2.4s ease-in-out infinite;
}

@keyframes indiCartBadgePulse {
    0%,
    70%,
    100% {
        transform: scale(1);
    }

    78% {
        transform: scale(1.16);
    }

    86% {
        transform: scale(1);
    }

    93% {
        transform: scale(1.09);
    }
}

/* =========================
   NAVEGACIÓN
========================= */

.site-navigation {
    min-height: 56px;
    padding: 0;
    background: var(--indi-white);
    border-bottom: 1px solid var(--indi-line);
}

.site-navigation .navbar-nav {
    gap: 8px;
}

.site-navigation .nav-link {
    position: relative;
    padding: 18px 14px !important;
    color: var(--indi-ink);
    font-size: 0.9rem;
    font-weight: 700;
}

.site-navigation .nav-link::after {
    transition: transform var(--indi-transition);
}

.site-navigation .nav-link:not(.dropdown-toggle)::before {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 10px;
    left: 14px;
    height: 2px;
    border-radius: 99px;
    background: var(--indi-blue-600);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--indi-transition);
}

.site-navigation .nav-link:hover,
.site-navigation .nav-link:focus {
    color: var(--indi-blue-700);
}

.site-navigation .nav-link:hover::before {
    transform: scaleX(1);
}

.site-navigation .nav-link--accent {
    color: var(--indi-orange-600);
}

.site-navigation .dropdown-menu {
    padding: 10px;
    border: 1px solid var(--indi-line);
    border-radius: 14px;
    box-shadow: var(--indi-shadow-md);
}

.site-navigation .dropdown-item {
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.site-navigation .dropdown-item:hover {
    background: #eaf6fd;
    color: var(--indi-blue-800);
}

.mobile-menu-label {
    margin-left: 10px;
    color: var(--indi-ink);
    font-weight: 700;
}

.mobile-account {
    display: grid;
    gap: 10px;
    padding: 16px 0 20px;
    border-top: 1px solid var(--indi-line);
}

.mobile-account a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--indi-blue-800);
    text-decoration: none;
    font-weight: 700;
}

/* =========================
   BOTONES GENERALES
========================= */

.btn-primary-indi,
.btn-secondary-indi,
.btn-light-indi {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 800;
    transition:
        transform var(--indi-transition),
        box-shadow var(--indi-transition),
        background var(--indi-transition);
}

.btn-primary-indi {
    background: var(--indi-orange-500);
    color: var(--indi-white);
    box-shadow: 0 12px 28px rgba(255, 138, 42, 0.27);
}

.btn-primary-indi:hover {
    transform: translateY(-2px);
    background: var(--indi-orange-600);
    color: var(--indi-white);
}

.btn-secondary-indi {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.12);
    color: var(--indi-white);
    backdrop-filter: blur(8px);
}

.btn-secondary-indi:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    color: var(--indi-white);
}

.btn-light-indi {
    background: var(--indi-white);
    color: var(--indi-blue-900);
    box-shadow: var(--indi-shadow-sm);
}

.btn-light-indi:hover {
    transform: translateY(-2px);
    color: var(--indi-blue-700);
}

/* =========================
   HERO
========================= */

.home-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            125deg,
            var(--indi-blue-950) 0%,
            var(--indi-blue-800) 54%,
            var(--indi-blue-600) 100%
        );
    color: var(--indi-white);
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 570px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    align-items: center;
    gap: 70px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.home-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}

.home-hero__glow--one {
    top: -180px;
    right: -120px;
    width: 520px;
    height: 520px;
    background: rgba(32, 185, 232, 0.24);
}

.home-hero__glow--two {
    bottom: -260px;
    left: 30%;
    width: 620px;
    height: 620px;
    background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--indi-blue-700);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-hero .eyebrow {
    color: var(--indi-cyan-300);
}

.eyebrow--light {
    color: var(--indi-cyan-300);
}

.home-hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2.55rem, 5vw, 4.65rem);
    font-weight: 850;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.home-hero h1 span {
    display: block;
    color: var(--indi-cyan-300);
}

.home-hero__content > p {
    max-width: 660px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.home-hero__mini-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
}

.home-hero__mini-features span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.home-hero__mini-features i {
    color: var(--indi-cyan-300);
}

.home-hero__visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-card {
    position: relative;
    width: min(100%, 430px);
    min-height: 390px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 34px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgba(231, 247, 255, 0.9)
        );
    color: var(--indi-ink);
    box-shadow: var(--indi-shadow-lg);
    transform: rotate(2deg);
}

.hero-product-card__label {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--indi-blue-950);
    color: var(--indi-white);
    font-size: 0.72rem;
    font-weight: 800;
}

.hero-product-card > img,
.hero-product-card__placeholder {
    width: 100%;
    height: 270px;
    object-fit: contain;
}

.hero-product-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--indi-blue-700);
    font-size: 8rem;
}

.hero-product-card__info {
    display: grid;
    gap: 3px;
}

.hero-product-card__info small {
    color: var(--indi-blue-700);
    font-weight: 800;
    text-transform: uppercase;
}

.hero-product-card__info strong {
    font-size: 1.12rem;
}

.hero-floating-card {
    position: absolute;
    z-index: 3;
    min-width: 210px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.93);
    color: var(--indi-ink);
    box-shadow: var(--indi-shadow-md);
    backdrop-filter: blur(12px);
}

.hero-floating-card i {
    color: var(--indi-blue-700);
    font-size: 1.5rem;
}

.hero-floating-card span {
    display: grid;
    color: var(--indi-muted);
    font-size: 0.78rem;
}

.hero-floating-card strong {
    color: var(--indi-ink);
    font-size: 0.88rem;
}

.hero-floating-card--top {
    top: 34px;
    right: -10px;
}

.hero-floating-card--bottom {
    bottom: 26px;
    left: -25px;
}

/* =========================
   BENEFICIOS
========================= */

.service-benefits {
    position: relative;
    z-index: 4;
    margin-top: -34px;
}

.service-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--indi-line);
    border-radius: var(--indi-radius-md);
    background: var(--indi-white);
    box-shadow: var(--indi-shadow-md);
    overflow: hidden;
}

.service-benefit {
    min-width: 0;
    padding: 24px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-benefit + .service-benefit {
    border-left: 1px solid var(--indi-line);
}

.service-benefit > span {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #e9f7fd;
    color: var(--indi-blue-700);
    font-size: 1.3rem;
}

.service-benefit strong {
    display: block;
    margin-bottom: 3px;
    font-size: 0.92rem;
}

.service-benefit p {
    margin: 0;
    color: var(--indi-muted);
    font-size: 0.78rem;
}

/* =========================
   ENCABEZADOS DE SECCIÓN
========================= */

.section-heading {
    margin-bottom: 34px;
}

.section-heading h2 {
    margin: 0;
    color: var(--indi-ink);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 850;
    letter-spacing: -0.045em;
}

.section-heading p {
    max-width: 660px;
    margin: 12px 0 0;
    color: var(--indi-muted);
}

.section-heading--center {
    max-width: 760px;
    margin-right: auto;
    margin-bottom: 34px;
    margin-left: auto;
    text-align: center;
}

.section-heading--center p {
    margin-right: auto;
    margin-left: auto;
}

.section-heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--indi-blue-700);
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
}

/* =========================
   MARCAS
========================= */

.brands-section {
    padding: 110px 0 70px;
    background: var(--indi-white);
}

.brand-pills {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.brand-pills a {
    min-height: 86px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--indi-line);
    border-radius: 16px;
    background: var(--indi-white);
    color: var(--indi-blue-900);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 900;
    box-shadow: var(--indi-shadow-sm);
    transition:
        transform var(--indi-transition),
        border-color var(--indi-transition),
        box-shadow var(--indi-transition);
}

.brand-pills a:hover {
    transform: translateY(-5px);
    border-color: var(--indi-cyan-500);
    box-shadow: var(--indi-shadow-md);
}

/* =========================
   PRODUCTOS
========================= */

.products-section {
    padding: 80px 0 100px;
    background: var(--indi-soft);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--indi-line);
    border-radius: var(--indi-radius-md);
    background: var(--indi-white);
    box-shadow: var(--indi-shadow-sm);
    overflow: hidden;
    transition:
        transform var(--indi-transition),
        box-shadow var(--indi-transition),
        border-color var(--indi-transition);
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: #b9d9ed;
    box-shadow: var(--indi-shadow-md);
}

.product-card__media {
    position: relative;
    min-height: 290px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at center,
            #ffffff,
            #f2f8fc 75%
        );
    overflow: hidden;
}

.product-card__media > a {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 260ms ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.045);
}

.product-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    color: #9bb0c2;
    text-align: center;
}

.product-card__placeholder i {
    font-size: 3.6rem;
}

.product-card__placeholder small {
    max-width: 170px;
}

.product-card__badges {
    position: absolute;
    top: 16px;
    right: 16px;
    left: 16px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    pointer-events: none;
}

.product-badge {
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.product-badge--offer {
    background: var(--indi-orange-500);
    color: var(--indi-white);
}

.product-badge--stock {
    margin-left: auto;
    background: #e4f8ef;
    color: #087d4b;
}

.product-badge--order {
    margin-left: auto;
    background: #fff0e4;
    color: #b9580c;
}

.product-card__body {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--indi-muted);
    font-size: 0.75rem;
}

.product-card__meta span {
    color: var(--indi-blue-700);
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-card__body h3 {
    min-height: 53px;
    margin: 13px 0 6px;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.32;
}

.product-card__body h3 a {
    text-decoration: none;
}

.product-card__body h3 a:hover {
    color: var(--indi-blue-700);
}

.product-card__model {
    margin: 0;
    color: var(--indi-muted);
    font-size: 0.83rem;
}

.product-card__price {
    min-height: 67px;
    margin-top: auto;
    padding-top: 18px;
    display: grid;
    align-content: end;
}

.product-card__price small {
    color: #8798a8;
    text-decoration: line-through;
}

.product-card__price strong {
    color: var(--indi-blue-900);
    font-size: 1.55rem;
    letter-spacing: -0.03em;
}

.product-card__price strong span {
    color: var(--indi-muted);
    font-size: 0.7rem;
    letter-spacing: 0;
}

.product-card__price .price-pending {
    color: var(--indi-blue-700);
    font-size: 1.12rem;
}

.product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}

.product-button {
    min-height: 44px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 800;
    text-align: center;
    transition:
        transform var(--indi-transition),
        background var(--indi-transition),
        color var(--indi-transition);
}

.product-button:hover {
    transform: translateY(-2px);
}

.product-button--details {
    border-color: var(--indi-blue-700);
    color: var(--indi-blue-700);
}

.product-button--details:hover {
    background: var(--indi-blue-700);
    color: var(--indi-white);
}

.product-button--quote {
    background: var(--indi-green-500);
    color: var(--indi-white);
}

.product-button--quote:hover {
    background: #159961;
    color: var(--indi-white);
}

.empty-products {
    padding: 65px 24px;
    border: 1px dashed #aac5d8;
    border-radius: var(--indi-radius-md);
    background: var(--indi-white);
    text-align: center;
}

.empty-products > i {
    color: var(--indi-blue-600);
    font-size: 3rem;
}

.empty-products h3 {
    margin: 14px 0 4px;
}

.empty-products p {
    margin: 0;
    color: var(--indi-muted);
}

/* =========================
   CTA
========================= */

.business-cta {
    padding: 90px 0;
    background: var(--indi-white);
}

.business-cta__box {
    position: relative;
    overflow: hidden;
    padding: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    border-radius: var(--indi-radius-lg);
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(32, 185, 232, 0.33),
            transparent 32%
        ),
        linear-gradient(
            115deg,
            var(--indi-blue-950),
            var(--indi-blue-700)
        );
    color: var(--indi-white);
    box-shadow: var(--indi-shadow-lg);
}

.business-cta__box > div {
    max-width: 800px;
}

.business-cta h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3.3vw, 3rem);
    font-weight: 850;
    letter-spacing: -0.045em;
}

.business-cta p {
    max-width: 680px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.75);
}

/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 70px 0 0;
    background: var(--indi-blue-950);
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr 0.9fr 1.1fr;
    gap: 55px;
    padding-bottom: 52px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--indi-white);
    text-decoration: none;
    font-size: 1.45rem;
    line-height: 0.95;
}

.footer-brand img {
    max-width: 220px;
    max-height: 85px;
    object-fit: contain;
}

.footer-brand__symbol {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-brand > span:last-child {
    display: grid;
}

.site-footer__brand p {
    max-width: 440px;
    margin: 20px 0 0;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 23px;
}

.footer-social a {
    width: 39px;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 11px;
    color: var(--indi-white);
    text-decoration: none;
    transition:
        transform var(--indi-transition),
        background var(--indi-transition);
}

.footer-social a:hover {
    transform: translateY(-3px);
    background: var(--indi-blue-700);
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.site-footer__column h3 {
    margin: 0 0 8px;
    color: var(--indi-white);
    font-size: 1rem;
}

.site-footer__column > a {
    color: inherit;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color var(--indi-transition);
}

.site-footer__column > a:hover {
    color: var(--indi-cyan-300);
}

.site-footer__contact > a,
.footer-contact-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.site-footer__contact i {
    margin-top: 3px;
    color: var(--indi-cyan-300);
    font-size: 1rem;
}

.site-footer__contact span {
    display: grid;
    overflow-wrap: anywhere;
}

.site-footer__contact small {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    text-transform: uppercase;
}

.site-footer__bottom {
    min-height: 72px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__bottom > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.site-footer__bottom a {
    color: inherit;
    text-decoration: none;
}

.site-footer__bottom a:hover {
    color: var(--indi-cyan-300);
}

/* =========================
   FLOTANTES
========================= */

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1030;
    min-height: 54px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    background: #20bf6b;
    color: var(--indi-white);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 800;
    box-shadow: 0 16px 35px rgba(19, 128, 72, 0.3);
    transition: transform var(--indi-transition);
}

.floating-whatsapp i {
    font-size: 1.3rem;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
    color: var(--indi-white);
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 1020;
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--indi-blue-950);
    color: var(--indi-white);
    box-shadow: var(--indi-shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity var(--indi-transition),
        transform var(--indi-transition),
        visibility var(--indi-transition);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199.98px) {
    .brand-header__inner {
        grid-template-columns: 255px 1fr auto;
        gap: 20px;
    }

    .header-action span,
    .header-cart__text {
        display: none;
    }

    .header-cart {
        width: 47px;
        padding: 0;
        justify-content: center;
    }

    .home-hero__inner {
        grid-template-columns: 1fr 0.8fr;
        gap: 40px;
    }

    .service-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-benefit:nth-child(3) {
        border-top: 1px solid var(--indi-line);
        border-left: 0;
    }

    .service-benefit:nth-child(4) {
        border-top: 1px solid var(--indi-line);
    }

    .site-footer__grid {
        grid-template-columns: 1.35fr 0.8fr 0.9fr;
    }

    .site-footer__contact {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .site-footer__contact h3 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991.98px) {
    .top-bar__message {
        display: none;
    }

    .top-bar__inner {
        justify-content: center;
    }

    .brand-header__inner {
        grid-template-columns: 1fr auto;
        min-height: auto;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .site-brand__logo {
        max-width: 235px;
        height: 76px;
    }

    .header-search {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
    }

    .header-actions {
        justify-self: end;
    }

    .site-navigation {
        min-height: 52px;
    }

    .site-navigation .container-xl {
        justify-content: flex-start;
    }

    .site-navigation .navbar-collapse {
        margin-top: 10px;
        padding: 0 6px;
        border-top: 1px solid var(--indi-line);
    }

    .site-navigation .navbar-nav {
        gap: 0;
    }

    .site-navigation .nav-link {
        padding: 13px 4px !important;
    }

    .site-navigation .nav-link:not(.dropdown-toggle)::before {
        display: none;
    }

    .home-hero__inner {
        grid-template-columns: 1fr;
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .home-hero__content {
        max-width: 760px;
    }

    .home-hero__visual {
        width: min(100%, 570px);
        margin: 0 auto;
    }

    .hero-floating-card--top {
        right: 0;
    }

    .hero-floating-card--bottom {
        left: 0;
    }

    .brand-pills {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 12px);
        justify-self: center;
    }

    .business-cta__box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .top-bar__contact {
        width: 100%;
        justify-content: center;
        gap: 9px;
    }

    .top-bar__phones {
        gap: 7px;
    }

    .top-bar__contact a {
        font-size: 0.74rem;
    }

    .top-bar__separator--email,
    .top-bar__email {
        display: none !important;
    }

    .site-brand__symbol {
        width: 48px;
        height: 48px;
    }

    .site-brand__text {
        font-size: 1.25rem;
    }

    .header-action {
        display: none;
    }

    .home-hero__inner {
        min-height: auto;
        padding-top: 52px;
        padding-bottom: 72px;
    }

    .home-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.65rem);
    }

    .home-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-primary-indi,
    .btn-secondary-indi {
        width: 100%;
    }

    .home-hero__visual {
        min-height: 365px;
    }

    .hero-product-card {
        min-height: 340px;
        padding: 22px;
    }

    .hero-product-card > img,
    .hero-product-card__placeholder {
        height: 235px;
    }

    .hero-floating-card {
        min-width: 180px;
        padding: 11px 13px;
    }

    .service-benefits {
        margin-top: -26px;
    }

    .service-benefits__grid {
        grid-template-columns: 1fr;
    }

    .service-benefit + .service-benefit,
    .service-benefit:nth-child(3),
    .service-benefit:nth-child(4) {
        border-top: 1px solid var(--indi-line);
        border-left: 0;
    }

    .brands-section {
        padding-top: 85px;
    }

    .brand-pills {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-pills a:last-child {
        grid-column: 1 / -1;
    }

    .section-heading--split {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .business-cta__box {
        padding: 34px 25px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__contact {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }

    .site-footer__contact h3 {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__bottom > div {
        justify-content: flex-start;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        padding: 0;
        justify-content: center;
    }

    .floating-whatsapp span {
        display: none;
    }

    .back-to-top {
        right: 21px;
        bottom: 82px;
    }
}

@media (max-width: 479.98px) {
    .top-bar__phone {
        font-size: 0.69rem !important;
    }

    .top-bar__phone:first-child strong {
        font-size: 0;
    }

    .top-bar__phone:first-child strong::after {
        content: "(55) 5682-8042";
        font-size: 0.69rem;
    }

    .top-bar__contact {
        justify-content: center;
    }

    .site-brand__logo {
        max-width: 205px;
        height: 65px;
    }

    .header-cart {
        width: 43px;
        min-height: 43px;
    }

    .header-search {
        height: 44px;
        grid-template-columns: 1fr 46px;
    }

    .home-hero__mini-features {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .hero-floating-card {
        display: none;
    }

    .home-hero__visual {
        min-height: 320px;
    }

    .hero-product-card {
        min-height: 310px;
    }

    .brand-pills {
        grid-template-columns: 1fr;
    }

    .brand-pills a:last-child {
        grid-column: auto;
    }

    .product-card__actions {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__brand,
    .site-footer__contact {
        grid-column: auto;
    }
}


/* ============================================================
   CARRUSEL PRINCIPAL - INVENCIÓN DIGITAL
   Geometría basada en el carrusel de Informática para el Diseño.
   Banners de escritorio: 1667 x 670 px.
============================================================ */

.indi-home-carousel-section {
    padding: 1px 0 20px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(40, 76, 216, 0.12),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #0b1823 0%,
            #111b24 100%
        );
}

.indi-hero-carousel-shell {
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin: 24px auto 52px;
    padding: 0 95px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   CARRUSEL CENTRAL
========================= */

.indi-home-carousel {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: visible;
}

.indi-home-carousel .carousel-inner {
    border: 0;
    border-radius: 18px;
    background: transparent;
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.42);
    overflow: hidden;
}

.indi-home-carousel .carousel-item,
.indi-home-carousel .carousel-item.active,
.indi-home-carousel .carousel-item-next,
.indi-home-carousel .carousel-item-prev {
    opacity: 1 !important;
}

.indi-home-carousel .carousel-item {
    height: auto;
    min-height: 0;
    border-radius: 18px;
    background: transparent;
    overflow: hidden;
    transition: transform 0.65s ease-in-out !important;
}

/* =========================
   BANNER 1667 x 670
========================= */

.indi-banner-link {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: transparent;
    text-decoration: none;
}

.indi-banner-link picture {
    width: 100%;
    display: block;
}

.indi-banner-image {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
    margin: 0 !important;

    object-fit: contain !important;
    object-position: center !important;

    border-radius: 18px;
    transform: none !important;

    transition:
        transform 0.38s ease,
        filter 0.38s ease;
}

.indi-banner-link:hover .indi-banner-image {
    transform: scale(1.012) !important;
    filter: saturate(1.025) brightness(1.01);
}

.indi-banner-placeholder {
    width: 100%;
    aspect-ratio: 1667 / 670;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border-radius: 18px;
    color: #93a8b8;
    background:
        linear-gradient(
            135deg,
            #eaf3fb,
            #ffffff
        );
}

.indi-banner-placeholder i {
    color: #284cd8;
    font-size: 3.4rem;
}

/* =========================
   VISTAS LATERALES
========================= */

.indi-slide-preview {
    position: absolute;
    top: 22px;
    bottom: 22px;
    z-index: 1;
    width: 330px;

    border: 0;
    border-radius: 18px;

    background-color: #101820;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: 0.42;

    filter:
        brightness(0.82)
        saturate(0.95);

    cursor: pointer;
    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.35);

    transition:
        background-image 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease,
        filter 0.35s ease;
}

.indi-slide-preview::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.46),
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.46)
        );
}

.indi-slide-preview--prev {
    left: 0;
}

.indi-slide-preview--next {
    right: 0;
}

.indi-slide-preview:hover,
.indi-slide-preview:focus-visible {
    opacity: 0.60;

    filter:
        brightness(0.9)
        saturate(1);

    transform: scale(1.012);
    outline: none;
}

/* =========================
   FLECHAS
========================= */

.indi-home-carousel .carousel-control-prev,
.indi-home-carousel .carousel-control-next {
    top: 50%;
    bottom: auto;
    z-index: 20;

    width: 64px;
    height: 64px;

    opacity: 1;

    transform: translateY(-50%);
}

.indi-home-carousel .carousel-control-prev {
    left: -82px;
}

.indi-home-carousel .carousel-control-next {
    right: -82px;
}

.indi-home-carousel .carousel-control-prev-icon,
.indi-home-carousel .carousel-control-next-icon {
    width: 58px;
    height: 58px;

    padding: 16px;

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;

    background-color: rgba(5, 18, 28, 0.72);
    background-size: 42% 42%;

    backdrop-filter: blur(6px);

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.42);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.indi-home-carousel .carousel-control-prev:hover
.carousel-control-prev-icon,
.indi-home-carousel .carousel-control-next:hover
.carousel-control-next-icon {
    transform: scale(1.08);
    background-color: rgba(40, 76, 216, 0.90);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.45),
        0 0 0 4px rgba(40, 76, 216, 0.14);
}

/* =========================
   INDICADORES
========================= */

.indi-home-carousel .carousel-indicators {
    bottom: -32px;
    z-index: 30;
    margin-bottom: 0;
}

.indi-home-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;

    margin: 0 4px;

    border: 0;
    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.82);

    opacity: 0.50;

    transition:
        transform 0.22s ease,
        opacity 0.22s ease,
        background-color 0.22s ease;
}

.indi-home-carousel .carousel-indicators .active {
    width: 10px;
    opacity: 1;
    background-color: #5d7cff;
    transform: scale(1.13);
}

/* =========================
   CONTADOR PROMOCIONES
   Tamaño inspirado en Informática,
   colores propios de Invención Digital.
========================= */

.indi-promo-countdown {
    position: absolute;

    left: 50%;
    bottom: 14px;

    z-index: 40;

    transform:
        translateX(-50%)
        scale(0.78);

    transform-origin: center bottom;

    display: flex;
    flex-direction: column;
    align-items: center;

    pointer-events: none;
}

.indi-promo-countdown__title {
    width: max-content;
    max-width: min(90vw, 430px);

    margin: 0 auto 6px;

    padding: 5px 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;

    background: rgba(5, 31, 51, 0.88);
    color: #ffffff;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(8px);

    font-size: 0.70rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.15;

    text-align: center;
    text-transform: uppercase;
}

.indi-promo-countdown__title i {
    color: #ff8a2a;
    font-size: 0.92rem;
}

.indi-countdown-boxes {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;
}

.indi-count-box {
    min-width: 50px;

    padding: 8px 6px;

    display: grid;
    gap: 3px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;

    background: rgba(5, 31, 51, 0.88);
    color: #ffffff;

    text-align: center;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(8px);
}

.indi-count-box .valor {
    color: #78e2ff;

    font-size: 1.10rem;
    font-weight: 800;
    line-height: 1;

    font-variant-numeric: tabular-nums;
}

.indi-count-box small {
    color: rgba(255, 255, 255, 0.80);

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.indi-promo-countdown.is-finished {
    bottom: 18px;
}

/* =========================
   SIN BANNERS
========================= */

.indi-carousel-empty {
    min-height: 260px;
    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    border: 1px dashed rgba(255, 255, 255, 0.28);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.72);

    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.25);
}

.indi-carousel-empty__icon {
    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.10);
    color: #78e2ff;

    font-size: 1.8rem;
}

.indi-carousel-empty strong {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 1.05rem;
}

.indi-carousel-empty p {
    margin: 0;
}

/*
 * La sección de beneficios conserva su diseño actual.
 * Solo eliminamos el margen negativo del hero anterior.
 */
.indi-home-carousel-section + .service-benefits {
    margin-top: 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

    .indi-home-carousel-section {
        padding-top: 1px;
        padding-bottom: 18px;
    }

    .indi-hero-carousel-shell {
        width: 100%;
        max-width: 95%;

        margin: 10px auto 20px;

        padding: 0;
    }

    .indi-slide-preview {
        display: none !important;
    }

    .indi-home-carousel {
        max-width: 100%;
        margin: 0 auto;
    }

    .indi-home-carousel .carousel-control-prev,
    .indi-home-carousel .carousel-control-next {
        width: 52px;
        height: 52px;
    }

    .indi-home-carousel .carousel-control-prev {
        left: 8px;
    }

    .indi-home-carousel .carousel-control-next {
        right: 8px;
    }

    .indi-home-carousel .carousel-control-prev-icon,
    .indi-home-carousel .carousel-control-next-icon {
        width: 45px;
        height: 45px;
        padding: 12px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767.98px) {

    .indi-home-carousel-section {
        padding-top: 1px;
        padding-bottom: 16px;
    }

    .indi-hero-carousel-shell {
        width: calc(100% - 16px);
        max-width: none;

        margin: 8px auto 18px;
    }

    .indi-home-carousel,
    .indi-home-carousel .carousel-inner,
    .indi-home-carousel .carousel-item,
    .indi-banner-link,
    .indi-banner-image {
        border-radius: 12px;
    }

    /*
     * Si ImagenMovil también usa 1667x670, conservará exactamente
     * la misma proporción. Si más adelante haces banners verticales,
     * basta con añadir una regla específica para esa imagen.
     */
    .indi-banner-image {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .indi-promo-countdown {
        left: 10px;
        right: auto;

        bottom: 15px;

        transform: scale(0.65);
        transform-origin: left bottom;

        align-items: flex-start;
    }

    .indi-promo-countdown__title {
        display: none !important;
    }

    .indi-countdown-boxes {
        justify-content: flex-start;
        gap: 4px;
    }

    .indi-count-box {
        min-width: 32px;

        padding: 4px;

        border-radius: 6px;
    }

    .indi-count-box .valor {
        font-size: 0.75rem;
    }

    .indi-count-box small {
        font-size: 0.40rem;
    }

    .indi-home-carousel .carousel-control-prev,
    .indi-home-carousel .carousel-control-next {
        width: 42px;
        height: 42px;
    }

    .indi-home-carousel .carousel-control-prev {
        left: 5px;
    }

    .indi-home-carousel .carousel-control-next {
        right: 5px;
    }

    .indi-home-carousel .carousel-control-prev-icon,
    .indi-home-carousel .carousel-control-next-icon {
        width: 36px;
        height: 36px;

        padding: 10px;

        border-width: 1px;
    }

    .indi-home-carousel .carousel-indicators {
        bottom: -27px;
    }

    .indi-carousel-empty {
        min-height: 210px;
        padding: 25px 20px;

        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .indi-home-carousel .carousel-item,
    .indi-banner-image,
    .indi-slide-preview {
        transition: none !important;
    }
}


/* ============================================================
   CARRUSEL DE MARCAS - HOME
============================================================ */

.home-brands {
    position: relative;
    z-index: 6;

    padding: 18px 0 22px;

    background: #ffffff;

    border-bottom:
        1px solid rgba(7, 54, 87, 0.08);
}

.brand-carousel {
    position: relative;

    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;

    gap: 10px;

    max-width: 1160px;

    margin: 0 auto;
}

.brand-carousel__viewport {
    width: 100%;

    overflow: hidden;

    /*
     * Permitimos el desplazamiento vertical normal de la página,
     * pero los gestos horizontales del carrusel los controla JS.
     */
    touch-action: pan-y;

    -webkit-user-select: none;
    user-select: none;
}

.brand-carousel__track {
    display: flex;
    align-items: center;

    gap: 18px;

    width: max-content;
    min-width: 0;

    transform: translate3d(0, 0, 0);

    will-change: transform;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/*
 * El ancho se calcula con JavaScript usando el viewport visible.
 * Así las tres copias del loop no alteran el tamaño de cada marca.
 */
.brand-carousel__item {
    flex: 0 0 var(--brand-item-width, 190px);
    width: var(--brand-item-width, 190px);
}

.brand-carousel__item {
    position: relative;

    height: 86px;

    padding: 10px 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: var(--indi-blue-900);
    text-decoration: none;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        filter 0.25s ease,
        background 0.25s ease;
}

.brand-carousel__item::after {
    content: "";

    position: absolute;

    right: 15%;
    bottom: 5px;
    left: 15%;

    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #284cd8,
            transparent
        );

    opacity: 0;

    transform: scaleX(0.55);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.brand-carousel__item img {
    display: block;

    width: auto;
    height: auto;

    max-width: 88%;
    max-height: 58px;

    object-fit: contain;

    filter:
        saturate(0.96)
        contrast(1.02);

    transition:
        transform 0.28s ease,
        filter 0.28s ease;
}

.brand-carousel__fallback {
    font-size: 1.18rem;
    font-weight: 850;

    letter-spacing: -0.02em;

    text-align: center;
}

.brand-carousel__item:hover {
    transform: translateY(-3px);

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f7fbff
        );
}

.brand-carousel__item:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.brand-carousel__item:hover img {
    transform: scale(1.055);

    filter:
        saturate(1.08)
        contrast(1.03);
}

/* =========================
   FLECHAS
========================= */

.brand-carousel__arrow {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: transparent;
    color: #bcc4cb;

    font-size: 1.45rem;

    transition:
        color 0.22s ease,
        background 0.22s ease,
        transform 0.22s ease;
}

.brand-carousel__arrow:hover,
.brand-carousel__arrow:focus-visible {
    color: #284cd8;

    background:
        rgba(40, 76, 216, 0.08);

    transform: scale(1.08);

    outline: none;
}

.brand-carousel__arrow:active {
    transform: scale(0.96);
}

/* =========================
   INDICADORES
========================= */

.brand-carousel__dots {
    min-height: 13px;

    margin-top: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;
}

.brand-carousel__dots button {
    width: 5px;
    height: 5px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #c7cdd2;

    opacity: 0.75;

    transition:
        width 0.22s ease,
        height 0.22s ease,
        background 0.22s ease,
        opacity 0.22s ease,
        transform 0.22s ease;
}

.brand-carousel__dots button.is-active {
    width: 7px;
    height: 7px;

    background: #284cd8;

    opacity: 1;

    transform: scale(1.05);
}

/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

    .home-brands {
        padding-top: 15px;
        padding-bottom: 19px;
    }

    .brand-carousel {
        grid-template-columns:
            38px minmax(0, 1fr) 38px;

        gap: 6px;
    }

    .brand-carousel__track {
        gap: 16px;
    }

    .brand-carousel__item {
        height: 78px;

        padding:
            9px 12px;
    }

    .brand-carousel__item img {
        max-height: 52px;
    }

    .brand-carousel__arrow {
        width: 36px;
        height: 36px;

        font-size: 1.25rem;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 575.98px) {

    .home-brands {
        padding-top: 12px;
        padding-bottom: 17px;
    }

    .brand-carousel {
        grid-template-columns:
            31px minmax(0, 1fr) 31px;

        gap: 3px;
    }

    .brand-carousel__track {
        gap: 12px;
    }

    .brand-carousel__item {
        height: 68px;

        padding:
            8px 9px;

        border-radius: 10px;
    }

    .brand-carousel__item img {
        max-width: 90%;
        max-height: 44px;
    }

    .brand-carousel__fallback {
        font-size: 0.95rem;
    }

    .brand-carousel__arrow {
        width: 30px;
        height: 30px;

        font-size: 1rem;
    }

    .brand-carousel__dots {
        margin-top: 3px;

        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .brand-carousel__item,
    .brand-carousel__item img,
    .brand-carousel__arrow {
        transition: none !important;
    }
}


/* ============================================================
   SECCIONES DE PRODUCTOS - INVENCIÓN DIGITAL
   Inspiradas en el formato de Informática para el Diseño.
============================================================ */

.indi-product-showcase {
    position: relative;

    padding:
        30px 0 46px;

    overflow: hidden;

    background: #ffffff;

    color: #10253b;

    border-top:
        1px solid rgba(9, 74, 119, 0.08);

    border-bottom:
        1px solid rgba(9, 74, 119, 0.08);
}

.indi-product-showcase__container {
    width: min(
        calc(100% - 28px),
        1500px
    );

    margin: 0 auto;
}

/* =========================
   ENCABEZADO DE SECCIÓN
========================= */

.indi-product-showcase__header {
    min-height: 58px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.indi-product-showcase__header h2 {
    margin: 0;

    color: #10253b;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size:
        clamp(
            1.75rem,
            2.2vw,
            2.25rem
        );

    font-weight: 400;

    letter-spacing: 0.015em;
    line-height: 1.1;
}

.indi-product-showcase__more {
    min-height: 42px;

    padding:
        0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    flex: 0 0 auto;

    border-radius: 13px;

    background:
        linear-gradient(
            105deg,
            #0877ee,
            #10b9df
        );

    color: #ffffff;

    text-decoration: none;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 0.94rem;
    font-weight: 700;

    box-shadow:
        0 9px 20px
        rgba(0, 126, 230, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.indi-product-showcase__more:hover {
    transform:
        translateY(-2px);

    color: #ffffff;

    filter:
        brightness(1.04);

    box-shadow:
        0 13px 25px
        rgba(0, 126, 230, 0.34);
}

/* =========================
   CARRUSEL
========================= */

.indi-products-carousel {
    position: relative;

    padding:
        0 68px;
}

.indi-products-carousel__viewport {
    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    padding:
        10px 0 14px;

    scrollbar-width: none;
    -ms-overflow-style: none;

    scroll-behavior: smooth;

    overscroll-behavior-x:
        contain;

    scroll-snap-type:
        x proximity;
}

.indi-products-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.indi-products-carousel__track {
    display: flex;
    align-items: stretch;

    gap: 24px;

    width: max-content;
}

/* =========================
   TARJETA
========================= */

.indi-catalog-card {
    position: relative;

    flex:
        0 0 332px;

    width: 332px;
    min-height: 0;

    display: flex;
    flex-direction: column;

    scroll-snap-align: start;

    border:
        1px solid #d9e2ea;

    border-radius: 12px;

    background: #ffffff;

    color: #161616;

    overflow: hidden;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    box-shadow:
        0 8px 22px
        rgba(16, 63, 98, 0.10);

    transition:
        transform 0.26s ease,
        box-shadow 0.26s ease,
        border-color 0.26s ease;
}

.indi-catalog-card:hover {
    transform:
        translateY(-5px);

    border-color:
        #9ccce7;

    box-shadow:
        0 15px 30px
        rgba(16, 89, 137, 0.16);
}

/* =========================
   IMAGEN
========================= */

.indi-catalog-card__media {
    position: relative;

    min-height: 265px;

    padding:
        16px 16px 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    overflow: hidden;
}

.indi-catalog-card__image-link {
    width: 100%;
    height: 235px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.indi-catalog-card__image-link img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.28s ease;
}

.indi-catalog-card:hover
.indi-catalog-card__image-link img {
    transform:
        scale(1.035);
}

.indi-catalog-card__placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;
    align-content: center;

    gap: 7px;

    color: #a6b0b7;
}

.indi-catalog-card__placeholder i {
    font-size: 3rem;
}

.indi-catalog-card__placeholder small {
    font-size: 0.76rem;
}

/* =========================
   BADGES
========================= */

.indi-catalog-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 4;

    padding:
        4px 10px;

    border-radius: 0;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing:
        0.025em;

    text-transform:
        uppercase;
}

.indi-catalog-badge--offer {
    background: #119fda;
    color: #ffffff;
}

.indi-catalog-stock {
    position: absolute;

    left: 50%;
    bottom: 11px;

    z-index: 5;

    transform:
        translateX(-50%);

    width: max-content;

    padding:
        7px 15px;

    border-radius: 5px;

    color: #ffffff;

    font-size: 0.76rem;
    font-weight: 700;

    letter-spacing:
        0.02em;
}

.indi-catalog-stock--order {
    background: #eba12a;

    box-shadow:
        0 5px 12px
        rgba(187, 117, 6, 0.25);
}

.indi-catalog-stock--available {
    background: #2bba67;

    box-shadow:
        0 5px 12px
        rgba(21, 130, 68, 0.20);
}

/* =========================
   CUERPO DE TARJETA
========================= */

.indi-catalog-card__body {
    flex: 1;

    padding:
        14px 16px 15px;

    display: flex;
    flex-direction: column;
}

.indi-catalog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 8px;

    font-size: 0.76rem;
}

.indi-catalog-card__brand {
    color: #0074b8;

    font-size: 0.80rem;
    font-weight: 700;

    letter-spacing:
        0.025em;

    text-transform:
        uppercase;
}

.indi-catalog-card__sku {
    color: #82919c;

    font-size: 0.72rem;
    font-weight: 500;

    letter-spacing:
        0.02em;
}

.indi-catalog-card__title {
    min-height: 0;

    margin:
        0 0 5px;

    font-size:
        1.16rem;

    font-weight: 650;

    letter-spacing:
        0.025em;

    line-height:
        1.20;

    text-transform:
        uppercase;
}

.indi-catalog-card__title a {
    color: #242424;

    text-decoration: none;
}

.indi-catalog-card__title a:hover {
    color: #006fb9;
}

.indi-catalog-card__model {
    min-height: 0;

    margin:
        0 0 9px;

    color: #4f6576;

    font-size: 0.98rem;
    font-weight: 450;

    letter-spacing:
        0.005em;

    line-height: 1.30;
}

/* =========================
   PRECIO
========================= */

.indi-catalog-card__price {
    min-height: 0;

    margin-top: 2px;

    padding-top: 3px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.indi-catalog-card__old-price {
    margin-bottom: 2px;

    color: #7f8a92;

    font-size: 0.88rem;
    font-weight: 400;

    text-decoration:
        line-through;
}

.indi-catalog-card__price strong {
    color: #0b3655;

    font-size: 1.32rem;
    font-weight: 700;

    letter-spacing:
        0.01em;
}

.indi-catalog-card__price strong small {
    color: #66727c;

    font-size: 0.63rem;
    font-weight: 600;
}

.indi-catalog-card__price
.indi-catalog-card__quote-price {
    color: #0074b8;

    font-size: 1.05rem;
    font-weight: 600;
}

/* =========================
   BOTONES
========================= */

.indi-catalog-card__actions {
    display: grid;
    grid-template-columns: 1fr;

    gap: 7px;

    margin-top: 11px;
}

.indi-product-action {
    min-height: 42px;

    padding:
        0 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    text-decoration: none;

    font-size: 0.78rem;
    font-weight: 600;

    letter-spacing:
        0.035em;

    text-transform:
        uppercase;

    transition:
        background 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease,
        border-color 0.22s ease;
}

.indi-product-action--details {
    border:
        2px solid #202020;

    background: #ffffff;

    color: #111111;
}

.indi-product-action--details:hover {
    background: #111111;

    color: #ffffff;

    transform:
        translateY(-1px);
}

.indi-product-action--cart,
.indi-product-action--whatsapp {
    border:
        2px solid #14b95f;

    background: #14b95f;

    color: #ffffff;
}

.indi-product-action--cart {
    width: 100%;
    cursor: pointer;
}

.indi-product-action--cart:hover,
.indi-product-action--whatsapp:hover {
    border-color: #0f994e;

    background: #0f994e;

    color: #ffffff;

    transform:
        translateY(-1px);
}

.indi-product-action--cart.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.indi-product-action--cart.is-added {
    border-color: #087c3e;
    background: #087c3e;
}

/* =========================
   FLECHAS
========================= */

.indi-products-carousel__arrow {
    position: absolute;

    top: 50%;

    z-index: 20;

    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transform:
        translateY(-50%);

    border: 0;
    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #068fea,
            #0ec1e8
        );

    color: #ffffff;

    font-size: 1.55rem;

    box-shadow:
        0 8px 20px
        rgba(0, 150, 220, 0.28);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease;
}

.indi-products-carousel__arrow--prev {
    left: 7px;
}

.indi-products-carousel__arrow--next {
    right: 7px;
}

.indi-products-carousel__arrow:hover {
    transform:
        translateY(-50%)
        scale(1.07);

    filter:
        brightness(1.05);

    box-shadow:
        0 11px 25px
        rgba(0, 150, 220, 0.40);
}

/* =========================
   ESTADO VACÍO
========================= */

.indi-product-showcase__empty {
    min-height: 220px;

    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    border:
        1px dashed
        #b8cbd9;

    background:
        #f8fbfd;

    color:
        #60758a;
}

.indi-product-showcase__empty > i {
    color: #24b9e8;
    font-size: 2.7rem;
}

.indi-product-showcase__empty strong {
    display: block;

    margin-bottom: 3px;

    color: #10253b;
}

.indi-product-showcase__empty p {
    margin: 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

    .indi-product-showcase__container {
        width:
            calc(100% - 18px);
    }

    .indi-product-showcase__header {
        padding:
            0 8px;
    }

    .indi-products-carousel {
        padding:
            0 58px;
    }

    .indi-catalog-card {
        flex-basis: 315px;
        width: 315px;
    }

    .indi-products-carousel__arrow {
        width: 48px;
        height: 48px;

        font-size: 1.3rem;
    }

    .indi-products-carousel__arrow--prev {
        left: 5px;
    }

    .indi-products-carousel__arrow--next {
        right: 5px;
    }
}

/* =========================
   CELULAR
========================= */

@media (max-width: 575.98px) {

    .indi-product-showcase {
        padding:
            23px 0 35px;
    }

    .indi-product-showcase__header {
        min-height: 0;

        margin-bottom: 15px;

        padding:
            0 7px;

        align-items:
            flex-start;

        gap: 13px;
    }

    .indi-product-showcase__header h2 {
        font-size: 1.38rem;
    }

    .indi-product-showcase__more {
        min-height: 38px;

        padding:
            0 12px;

        border-radius: 9px;

        font-size: 0.72rem;
    }

    .indi-products-carousel {
        padding:
            0 46px;
    }

    .indi-products-carousel__viewport {
        padding:
            7px 0 10px;
    }

    .indi-products-carousel__track {
        gap: 16px;
    }

    .indi-catalog-card {
        flex:
            0 0
            min(84vw, 326px);

        width:
            min(84vw, 326px);

        min-height: 0;
    }

    .indi-catalog-card__media {
        min-height: 245px;
    }

    .indi-catalog-card__image-link {
        height: 215px;
    }

    .indi-catalog-card__title {
        min-height: 0;

        font-size: 1.08rem;
    }

    .indi-products-carousel__arrow {
        width: 42px;
        height: 42px;

        font-size: 1.15rem;
    }

    .indi-products-carousel__arrow--prev {
        left: 3px;
    }

    .indi-products-carousel__arrow--next {
        right: 3px;
    }
}


/* ============================================================
   FAVORITOS + CARRITO EN TARJETAS
============================================================ */

.indi-wishlist-btn {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 8;

    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d9e1e7;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);
    color: #27323a;

    font-size: 1.25rem;

    cursor: pointer;

    box-shadow:
        0 5px 14px rgba(19, 54, 78, 0.14);

    transition:
        transform 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.indi-wishlist-btn:hover {
    transform: translateY(-2px) scale(1.06);

    border-color: #e9a9b0;
    color: #d8283d;

    box-shadow:
        0 8px 18px rgba(91, 32, 42, 0.16);
}

.indi-wishlist-btn.active {
    border-color: #e7a1aa;
    color: #e11d3f;
}

.indi-wishlist-btn.clicked {
    animation:
        indiWishlistPop 0.30s ease;
}

@keyframes indiWishlistPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.22);
    }

    100% {
        transform: scale(1);
    }
}

.header-cart__badge.is-bumping {
    animation:
        indiCartQuickBump 0.35s ease;
}

@keyframes indiCartQuickBump {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.28);
    }

    100% {
        transform: scale(1);
    }
}

.indi-toast-container {
    position: fixed;

    right: 22px;
    bottom: 90px;

    z-index: 2500;

    display: grid;

    gap: 9px;

    pointer-events: none;
}

.indi-mini-toast {
    min-width: 245px;
    max-width: min(380px, calc(100vw - 32px));

    padding:
        12px 15px;

    display: flex;
    align-items: center;

    gap: 10px;

    border-radius: 12px;

    color: #ffffff;

    font-size: 0.86rem;
    font-weight: 700;

    box-shadow:
        0 13px 30px rgba(10, 42, 64, 0.20);

    opacity: 0;

    transform:
        translateY(12px)
        scale(0.98);

    transition:
        opacity 0.24s ease,
        transform 0.24s ease;
}

.indi-mini-toast.is-visible {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}

.indi-mini-toast--ok {
    background:
        linear-gradient(
            110deg,
            #087f43,
            #14b95f
        );
}

.indi-mini-toast--error {
    background:
        linear-gradient(
            110deg,
            #a91f31,
            #e04355
        );
}

@media (max-width: 575.98px) {

    .indi-wishlist-btn {
        width: 40px;
        height: 40px;

        top: 10px;
        right: 10px;
    }

    .indi-toast-container {
        right: 12px;
        bottom: 84px;
    }

    .indi-mini-toast {
        min-width: 0;
        width: calc(100vw - 24px);
    }
}