* {
            box-sizing: border-box;
        }

        :root {
            --header-height: 48px;

            --phonix-black: #0B0B0B;
            --phonix-dark: #141414;
            --phonix-card: #1D1D1D;
            --phonix-border: #2A2A2A;

            --phonix-white: #F5F5F5;
            --phonix-gray: #A0A0A0;

            --phonix-primary: #D97706;
            --phonix-primary-hover: #F59E0B;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--phonix-black);
            font-family: Arial, Helvetica, sans-serif;
            padding-top: var(--header-height);
        }

        .phonix-header {
            width: 100%;
            background: var(--phonix-black);
            padding: 20px 14px 2px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 48px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 4000;
            overflow: visible;
        }

        .logo {
            flex: none;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 36px;
            display: block;
            width: auto;
        }

        .country-custom-select {
            position: relative;
            width: 125px;
            flex: none;
        }

        .country-selected {
            width: 100%;
            height: 40px;
            border: 0;
            border-radius: 14px;
            background: var(--phonix-dark);
            color: var(--phonix-white);
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 12px;
            font-weight: 900;
            font-size: 13px;
            cursor: pointer;
        }

        .country-selected img,
        .country-dropdown img {
            width: 23px;
            height: 23px;
            border-radius: 50%;
            object-fit: cover;
        }

        .country-selected i {
            margin-left: auto;
            font-size: 13px;
        }

        .country-dropdown {
            position: absolute;
            top: 45px;
            left: 0;
            width: 155px;
            background: var(--phonix-black);
            border: 1px solid var(--phonix-border);
            border-radius: 10px;
            padding: 6px;
            display: none;
            z-index: 5000;
        }

        .country-dropdown.show {
            display: block;
        }

        .country-dropdown button {
            width: 100%;
            border: 0;
            background: transparent;
            color: var(--phonix-white);
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 13px;
            cursor: pointer;
        }

        .country-dropdown button:hover {
            background: var(--phonix-border);
        }

        .search-box {
            flex: 1;
            position: relative;
            min-width: 0;
        }

        .search-box input {
            width: 100%;
            height: 42px;
            border: 0;
            outline: 0;
            border-radius: 8px;
            padding: 0 52px 0 16px;
            font-weight: 900;
            font-size: 16px;
            color: var(--phonix-white);
        }

        .hamburger-btn {
            position: absolute;
            right: 6px;
            top: 4px;
            width: 34px;
            height: 34px;
            border-radius: 5px;
            border: 2px solid #111;
            background: var(--phonix-card);
            color: var(--phonix-white);
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            line-height: 1;
        }

        .info-box {
            width: 220px;
            display: flex;
            flex-direction: column;
            gap: 3px;
            flex: none;
        }

        .phone-line,
        .exchange-line {
            height: 22px;
            border: 0;
            border-radius: 4px;
            background: var(--phonix-white);
            color: var(--phonix-black);
            font-weight: 900;
            font-size: 12px;
            padding: 0 8px;
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            line-height: 1;
        }

        .exchange-line {
            justify-content: space-between;
            padding-right: 0;
            overflow: hidden;
        }

        .exchange-price {
            height: 100%;
            min-width: 65px;
            background: var(--phonix-border);
            color: var(--phonix-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
        }

        .round-btn,
        .mobile-icon-btn {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 50%;
            border: 1px solid var(--phonix-border);
            background: var(--phonix-black);
            color: var(--phonix-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 21px;
            position: relative;
            cursor: pointer;
            flex: none;
            padding: 0;
            line-height: 1;
            overflow: visible;
        }

        .badge-count {
            position: absolute;
            top: 2px;
            right: 2px;
            min-width: 16px;
            height: 16px;
            padding: 0 4px;
            background: var(--phonix-primary);
            color: var(--phonix-white);
            border-radius: 999px;
            font-size: 9px;
            font-weight: 900;
            line-height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            border: 1px solid #000;
        }

        .login-btn {
            height: 40px;
            border: 1px solid var(--phonix-border);
            border-radius: 20px;
            background: var(--phonix-black);
            color: var(--phonix-white);
            padding: 0 18px;
            font-size: 13px;
            font-weight: 900;
            white-space: nowrap;
            flex: none;
        }

        .tablet-row-wrapper {
            width: 100%;
            display: none;
            justify-content: center;
            align-items: center;
            overflow: visible;
            scrollbar-width: none;
        }

        .tablet-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            padding: 0;
            margin: 0 auto;
            overflow: visible;
            scrollbar-width: none;
            max-width: 100%;
        }

        .mini-panel {
            position: fixed;
            right: 12px;
            top: calc(var(--header-height) + 8px);
            width: 270px;
            background: var(--phonix-black);
            color: var(--phonix-white);
            border: 1px solid var(--phonix-border);
            border-radius: 10px;
            padding: 12px;
            z-index: 2000;
            display: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .55);
        }

        .mini-panel.show {
            display: block;
        }

        .mini-panel h6 {
            margin-bottom: 10px;
            font-size: 14px;
            font-weight: 900;
        }

        .cart-item {
            display: flex;
            gap: 9px;
            padding-bottom: 9px;
            margin-bottom: 9px;
            border-bottom: 1px solid var(--phonix-border);
            font-size: 12px;
        }

        .cart-img {
            width: 42px;
            height: 42px;
            background: var(--phonix-white);
            border-radius: 6px;
            flex: none;
        }

        .offcanvas {
            background: var(--phonix-black);
            color: var(--phonix-white);
        }

        .category-link {
            padding: 10px;
            border-bottom: 1px solid var(--phonix-border);
            font-weight: 800;
        }

        .subcategory {
            padding: 6px 0 6px 18px;
            color: var(--phonix-gray);
            font-size: 13px;
            font-weight: 400;
        }

        .category-link:hover,
        .subcategory:hover {
            background: var(--phonix-card);
            color: var(--phonix-white);
            cursor: pointer;
        }

        .main-carousel {
            position: relative;
            background: var(--phonix-black);
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .main-carousel .carousel-inner {
            border-radius: 0 0 18px 18px;
            overflow: hidden;
            background: var(--phonix-black);
            box-shadow: 0 14px 34px rgba(0, 0, 0, .38);
        }

        .main-carousel .carousel-item img {
            width: 100%;
            height: clamp(190px, 34vw, 520px);
            object-fit: contain;
            object-position: center;
            background: var(--phonix-black);
            display: block;
        }

        .main-carousel .carousel-control-prev,
        .main-carousel .carousel-control-next {
            width: 54px;
            height: 54px;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 18px;
            border-radius: 50%;
            background: rgba(0, 0, 0, .55);
            backdrop-filter: blur(6px);
            opacity: 1;
        }

        .main-carousel .carousel-indicators [data-bs-target] {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            border: 0;
            opacity: .55;
        }

        .main-carousel .carousel-indicators .active {
            width: 26px;
            border-radius: 999px;
            opacity: 1;
        }

        .quick-menu-section {
            position: sticky;
            top: var(--header-height);
            z-index: 1000;
            background: linear-gradient(180deg, #050505 0%, #111 100%);
            border-top: 1px solid rgba(255, 255, 255, .08);
            border-bottom: 1px solid rgba(255, 255, 255, .12);
            box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
            padding: 12px 14px;
        }

        .quick-menu-row {
            width: min(100%, 1080px);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(6px, 1.2vw, 14px);
            flex-wrap: nowrap;
            overflow: hidden;
        }

        .quick-menu-card {
            flex: 1 1 0;
            min-width: 0;
            height: clamp(42px, 4.3vw, 52px);
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .14);
            background: linear-gradient(180deg, #151515 0%, #080808 100%);
            color: var(--phonix-white);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: clamp(4px, .9vw, 10px);
            padding: 0 clamp(7px, 1.2vw, 14px);
            text-decoration: none;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 8px 18px rgba(0, 0, 0, .24);
            transition: transform .25s ease, border-color .25s ease, background .25s ease;
            overflow: hidden;
        }

        .quick-menu-card:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, .34);
            background: linear-gradient(180deg, #1d1d1d 0%, #0b0b0b 100%);
        }

        .quick-menu-title {
            min-width: 0;
            font-size: clamp(9px, 1.25vw, 14px);
            font-weight: 900;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1;
        }

        .quick-menu-counter {
            flex: 0 0 auto;
            min-width: clamp(24px, 3vw, 36px);
            height: clamp(22px, 2.8vw, 30px);
            padding: 0 clamp(5px, .8vw, 9px);
            border-radius: 999px;
            background: #f5f5f5;
            color: var(--phonix-black);
            border: 1px solid rgba(255, 255, 255, .22);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(9px, 1.1vw, 12px);
            font-weight: 900;
            line-height: 1;
        }

        .products-wrapper {
            background: var(--phonix-black);
            padding: 45px 0 75px;
        }

        .product-section {
            margin-bottom: 60px;
        }

        .product-section:last-child {
            margin-bottom: 0;
        }

        .product-title-badge {
            width: fit-content;
            margin: 0 auto 26px;
            background: var(--phonix-primary);
            color: var(--phonix-white);
            padding: 10px 26px;
            font-weight: 900;
            font-size: clamp(13px, 2vw, 18px);
            letter-spacing: .5px;
        }

        .product-carousel-shell {
            width: min(100%, 1180px);
            margin: 0 auto;
            position: relative;
            padding: 0 56px;
        }

        .product-slider {
            overflow: hidden;
            width: 100%;
        }

        .product-track {
            display: flex;
            flex-wrap: nowrap;
            gap: 34px;
            transition: transform .45s ease;
            will-change: transform;
        }

        .product-card {
            flex: 0 0 calc((100% - 102px) / 4);
            position: relative;
            background: var(--phonix-card);
            border: 1px solid var(--phonix-border);
            padding: 12px;
            color: var(--phonix-white);
            text-decoration: none;
            min-width: 0;
            transition: transform .25s ease, border-color .25s ease;
        }

        .product-card:hover {
            transform: translateY(-4px);
            border-color: var(--phonix-primary);
        }

        .product-img {
            width: 100%;
            aspect-ratio: 1 / 1;
            background: var(--phonix-black);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-bottom: 11px;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
        }

        .tag-new,
        .stock-tag {
            position: absolute;
            top: 18px;
            font-size: 8px;
            font-weight: 900;
            color: var(--phonix-white);
            padding: 3px 6px;
            border-radius: 3px;
            z-index: 2;
            line-height: 1;
        }

        .tag-new {
            left: 18px;
            background: var(--phonix-primary);
        }

        .stock-tag {
            right: 18px;
            background: var(--phonix-border);
        }

        .product-card h6 {
            font-size: clamp(11px, 1.2vw, 14px);
            font-weight: 900;
            margin: 0 0 3px;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .product-card small {
            color: var(--phonix-primary);
            font-size: 10px;
            display: block;
            margin-bottom: 9px;
        }

        .product-info {
            display: flex;
            justify-content: space-between;
            gap: 8px;
            margin: 10px 0 12px;
            font-size: 9px;
            color: var(--phonix-gray);
        }

        .product-info span {
            display: flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
        }

        .add-cart-btn {
            width: 100%;
            height: 36px;
            border: 0;
            background: var(--phonix-primary);
            color: var(--phonix-white);
            font-size: 11px;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: space-around;
            cursor: pointer;
        }

        .product-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .16);
            background: rgba(0, 0, 0, .75);
            color: var(--phonix-white);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
            cursor: pointer;
            transition: .25s ease;
        }

        .product-nav-btn:hover {
            background: var(--phonix-primary);
            border-color: var(--phonix-primary);
        }

        .product-nav-btn.prev {
            left: 5px;
        }

        .product-nav-btn.next {
            right: 5px;
        }

        .see-more-card {
            min-height: 100%;
            background: linear-gradient(90deg, #151515 0%, #111 45%, rgba(8, 124, 255, .35) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 6px;
        }

        .see-more-card i {
            font-size: 42px;
            color: var(--phonix-primary);
            margin-bottom: 8px;
        }

        .demo-content {
            min-height: 500px;
            padding: 45px 16px;
            color: var(--phonix-white);
            text-align: center;
            background: linear-gradient(180deg, #111 0%, #050505 100%);
        }

        @media(max-width:1199px) {
            .phonix-header {
                flex-wrap: wrap;
                padding: 6px 14px;
                gap: 9px;
            }

            .logo img {
                height: 30px;
            }

            .desktop-only {
                display: none !important;
            }

            .search-box {
                flex: 1;
                min-width: 220px;
            }

            .search-box input {
                height: 36px;
                font-size: 13px;
            }

            .hamburger-btn {
                width: 28px;
                height: 28px;
                top: 4px;
                font-size: 18px;
            }

            .tablet-row-wrapper {
                display: flex;
            }

            .tablet-row {
                width: auto;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 9px;
                padding: 0;
                overflow: visible;
            }

            .country-custom-select {
                width: 125px;
            }

            .country-selected {
                height: 37px;
                border-radius: 13px;
                font-size: 12px;
            }

            .round-btn,
            .mobile-icon-btn {
                width: 40px;
                height: 40px;
                min-width: 40px;
                font-size: 19px;
            }

            .login-btn {
                height: 36px;
                font-size: 12px;
                padding: 0 15px;
            }

            .product-card {
                flex: 0 0 calc((100% - 68px) / 3);
            }
        }

        @media(max-width:768px) {
            .product-carousel-shell {
                padding: 0 48px;
            }

            .product-track {
                gap: 22px;
            }

            .product-card {
                flex: 0 0 calc((100% - 22px) / 2);
            }
        }

        @media(max-width:600px) {
            .phonix-header {
                padding: 6px 8px;
            }

            .logo img {
                height: 26px;
            }

            .search-box {
                min-width: 170px;
            }

            .tablet-row-wrapper {
                justify-content: center;
                overflow: visible;
            }

            .tablet-row {
                justify-content: center;
                padding: 0;
                gap: 7px;
                min-width: max-content;
                overflow: visible;
            }

            .country-dropdown {
                top: 42px;
                left: 0;
                z-index: 5000;
            }

            .country-custom-select {
                width: 125px;
            }

            .country-selected {
                height: 36px;
                font-size: 11px;
            }

            .round-btn,
            .mobile-icon-btn {
                width: 36px;
                height: 36px;
                min-width: 36px;
                font-size: 17px;
            }

            .badge-count {
                top: 1px;
                right: 1px;
                min-width: 15px;
                height: 15px;
                font-size: 8px;
                line-height: 15px;
            }

            .login-btn {
                padding: 0 12px;
            }

            .main-carousel .carousel-item img {
                height: clamp(150px, 45vw, 215px);
                object-fit: contain;
            }

            .main-carousel .carousel-control-prev,
            .main-carousel .carousel-control-next {
                width: 38px;
                height: 38px;
                margin: 0 8px;
            }

            .quick-menu-section {
                padding: 10px 8px;
            }

            .quick-menu-row {
                justify-content: center;
                gap: 5px;
            }

            .quick-menu-card {
                height: 40px;
                border-radius: 11px;
                padding: 0 6px;
            }

            .quick-menu-title {
                font-size: clamp(7px, 2.35vw, 10px);
                letter-spacing: 0;
            }

            .quick-menu-counter {
                min-width: 21px;
                height: 21px;
                padding: 0 5px;
                font-size: 8px;
            }

            .products-wrapper {
                padding-top: 35px;
            }

            .product-section {
                margin-bottom: 45px;
            }

            .product-title-badge {
                margin-bottom: 20px;
            }

            .product-carousel-shell {
                padding: 0 42px;
            }

            .product-track {
                gap: 18px;
            }

            .product-card {
                flex: 0 0 100%;
                padding: 10px;
            }

            .product-nav-btn {
                width: 34px;
                height: 34px;
            }

            .product-nav-btn.prev {
                left: 4px;
            }

            .product-nav-btn.next {
                right: 4px;
            }
        }

        @media(max-width:380px) {
            .quick-menu-section {
                padding-left: 5px;
                padding-right: 5px;
            }

            .quick-menu-row {
                gap: 4px;
            }

            .quick-menu-card {
                height: 36px;
                padding: 0 4px;
                border-radius: 9px;
            }

            .quick-menu-title {
                font-size: 6.8px;
            }

            .quick-menu-counter {
                min-width: 18px;
                height: 18px;
                padding: 0 4px;
                font-size: 7px;
            }
        }

.logo-tabs-section {
            background: var(--phonix-black);
            padding: 20px 15px;
            overflow: hidden;
        }

        .logo-tabs {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            border-bottom: 1px solid rgba(255, 255, 255, .35);
            max-width: 420px;
            margin: 0 auto 22px;
        }

        .logo-tab {
            background: transparent;
            border: 0;
            color: var(--phonix-white);
            font-size: 15px;
            padding: 6px 24px;
            border-radius: 8px 8px 0 0;
            transition: .25s ease;
        }

        .logo-tab.active {
            background: var(--phonix-white);
            color: var(--phonix-black);
        }

        .logo-slider {
            display: none;
            width: 100%;
            overflow: hidden;
        }

        .logo-slider.active {
            display: block;
        }

        .logo-track {
            display: flex;
            gap: 28px;
            transition: transform .7s ease-in-out;
            will-change: transform;
        }

        .logo-card {
            flex: 0 0 calc((100% - 168px) / 7);
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-card img {
            max-width: 120px;
            max-height: 48px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            opacity: .85;
            transition: .3s ease;
        }

        .logo-card img:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        @media (max-width: 992px) {
            .logo-card {
                flex: 0 0 calc((100% - 96px) / 4);
            }
        }

        @media (max-width: 576px) {
            .logo-card {
                flex: 0 0 calc((100% - 40px) / 2);
            }

            .logo-track {
                gap: 20px;
            }
        }

.categories-section {
            background: var(--phonix-black);
            color: var(--phonix-white);
        }

        .categories-title {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 800;
            letter-spacing: -.5px;
        }

        .categories-title span {
            color: var(--phonix-primary);
        }

        .categories-subtitle {
            color: rgba(255, 255, 255, .55);
            font-size: 14px;
            margin-top: 8px;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 18px;
        }

        .category-card {
            position: relative;
            min-height: 190px;
            border-radius: 4px;
            overflow: hidden;
            background: var(--phonix-black);
            text-decoration: none;
            isolation: isolate;
            box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
        }

        .category-card.large {
            min-height: 250px;
        }

        .category-card img {
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0;
            object-fit: cover;
            transition: transform .6s ease, opacity .6s ease;
            opacity: .85;
        }

        .category-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to bottom, rgba(0, 0, 0, .1), rgba(0, 0, 0, .85)),
                radial-gradient(circle at top, rgba(0, 140, 255, .22), transparent 45%);
            z-index: 1;
        }

        .category-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            padding: 14px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-transform: uppercase;
        }

        .category-overlay span {
            font-size: 12px;
            font-weight: 700;
            color: rgba(255, 255, 255, .9);
        }

        .category-overlay strong {
            font-size: 15px;
            font-weight: 800;
            color: var(--phonix-white);
            line-height: 1.1;
            text-shadow: 0 2px 10px rgba(0, 0, 0, .8);
        }

        .badge-label {
            background: var(--phonix-primary);
            color: #fff !important;
            width: fit-content;
            padding: 5px 14px;
            border-radius: 2px;
            font-size: 11px !important;
        }

        .category-card:hover img {
            transform: scale(1.08);
            opacity: 1;
        }

        .category-card:hover {
            box-shadow: 0 20px 55px rgba(0, 140, 255, .22);
        }

        @media (max-width: 1200px) {
            .category-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .category-card,
            .category-card.large {
                min-height: 180px;
            }
        }

        @media (max-width: 480px) {

            .category-card,
            .category-card.large {
                min-height: 155px;
            }
        }

.div-a-footer {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0;
            flex-wrap: wrap;
        }

        .div-a-footer a {
            position: relative;
            color: rgba(255, 255, 255, .85);
            text-decoration: none;
            font-size: .9rem;
            font-weight: 400;
            padding: 0 18px;
            transition: all .25s ease;
            line-height: 1;
        }

        .div-a-footer a:hover {
            color: var(--phonix-white);
        }

        /* Línea vertical */
        .div-a-footer a:not(:last-child)::after {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 14px;
            background: rgba(255, 255, 255, .25);
        }

        @media (max-width: 576px) {
            .div-a-footer {
                gap: 8px 0;
            }

            .div-a-footer a {
                font-size: .8rem;
                padding: 0 12px;
            }

            .div-a-footer a:not(:last-child)::after {
                height: 12px;
            }
        }

/*
      Ajuste final de marca Phonix:
      fondo negro, letras blancas y acentos cobre.
    */
        body,
        .products-wrapper,
        .categories-section,
        .logo-tabs-section,
        .demo-content,
        .offcanvas {
            background: var(--phonix-black) !important;
            color: var(--phonix-white) !important;
        }

        body,
        body *:not(input):not(textarea):not(select):not(option) {
            color: var(--phonix-white);
        }

        .phonix-header,
        .main-carousel,
        .main-carousel .carousel-inner,
        .main-carousel .carousel-item img {
            background: var(--phonix-black) !important;
        }

        .country-selected,
        .country-dropdown,
        .mini-panel,
        .hamburger-btn,
        .login-btn,
        .round-btn,
        .mobile-icon-btn,
        .category-card,
        .product-card,
        .cart-img {
            background: var(--phonix-card) !important;
            border-color: var(--phonix-border) !important;
            color: var(--phonix-white) !important;
        }

        .search-box input {
            background: var(--phonix-card);
            border: 1px solid var(--phonix-border);
            color: var(--phonix-white);
        }

        .search-box input::placeholder {
            color: var(--phonix-gray);
        }

        .phone-line,
        .exchange-line {
            background: var(--phonix-card);
            color: var(--phonix-white);
            border: 1px solid var(--phonix-border);
        }

        .exchange-price,
        .badge-count,
        .tag-new,
        .badge-label,
        .product-title-badge,
        .add-cart-btn {
            background: var(--phonix-primary) !important;
            color: var(--phonix-white) !important;
        }

        .add-cart-btn:hover,
        .product-nav-btn:hover,
        .logo-tab.active,
        .quick-menu-card:hover {
            background: var(--phonix-primary-hover) !important;
            border-color: var(--phonix-primary-hover) !important;
            color: var(--phonix-black) !important;
        }

        .logo-tab.active {
            color: var(--phonix-black) !important;
        }

        .product-card small,
        .categories-title span,
        .see-more-card i {
            color: var(--phonix-primary) !important;
        }

        .quick-menu-section {
            background: linear-gradient(180deg, var(--phonix-black) 0%, var(--phonix-dark) 100%) !important;
            border-top: 1px solid var(--phonix-border);
            border-bottom: 1px solid var(--phonix-border);
        }

        .quick-menu-card {
            background: linear-gradient(180deg, var(--phonix-card) 0%, var(--phonix-dark) 100%) !important;
            border-color: var(--phonix-border);
        }

        .quick-menu-counter {
            background: var(--phonix-primary);
            color: var(--phonix-white);
            border-color: var(--phonix-primary);
        }

        .see-more-card {
            background: linear-gradient(90deg, var(--phonix-card) 0%, var(--phonix-dark) 45%, rgba(201, 120, 50, .32) 100%) !important;
        }

        .category-card::after {
            background:
                linear-gradient(to bottom, rgba(11, 11, 11, .08), rgba(11, 11, 11, .90)),
                radial-gradient(circle at top, rgba(201, 120, 50, .22), transparent 45%);
        }

        .category-card:hover {
            box-shadow: 0 20px 55px rgba(201, 120, 50, .22);
        }

        .btn-light {
            background: var(--phonix-primary) !important;
            border-color: var(--phonix-primary) !important;
            color: var(--phonix-white) !important;
        }

        a,
        a:hover {
            color: var(--phonix-white);
        }

/* =========================================================
           BOTONES FLOTANTES: SCROLL TOP + ROBOT
           ========================================================= */
        .floating-actions {
            position: fixed;
            right: clamp(14px, 2vw, 24px);
            bottom: clamp(18px, 2.4vw, 28px);
            z-index: 6000;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            pointer-events: none;
        }

        .floating-action-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .14);
            background: linear-gradient(180deg, var(--phonix-card), var(--phonix-dark));
            color: var(--phonix-white);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 14px 34px rgba(0, 0, 0, .45);
            cursor: pointer;
            pointer-events: auto;
            transition: transform .25s ease, border-color .25s ease, background .25s ease, opacity .25s ease;
        }

        .floating-action-btn:hover {
            transform: translateY(-3px);
            border-color: var(--phonix-primary);
            background: linear-gradient(180deg, var(--phonix-primary-hover), var(--phonix-primary));
        }

        .scroll-top-btn {
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px) scale(.92);
        }

        .scroll-top-btn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .scroll-top-btn i {
            font-size: 22px;
            line-height: 1;
        }

        .robot-btn {
            overflow: hidden;
        }

        .robot-btn img {
            width: 30px;
            height: 30px;
            object-fit: contain;
            display: block;
            filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .35));
        }

        @media (max-width: 576px) {
            .floating-actions {
                right: 12px;
                bottom: 14px;
                gap: 10px;
            }

            .floating-action-btn {
                width: 46px;
                height: 46px;
            }

            .robot-btn img {
                width: 27px;
                height: 27px;
            }
        }

.kai-chatbot-btn {
        position: fixed;
        right: 18px;
        bottom: 22px;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        border: 1px solid var(--phonix-border);
        background: linear-gradient(135deg, var(--phonix-primary), var(--phonix-primary-hover));
        color: var(--phonix-white);
        font-size: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9998;
        cursor: pointer;
        box-shadow: 0 14px 35px rgba(0, 0, 0, .55);
        transition: .3s ease;
    }

    .kai-chatbot-btn:hover {
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 18px 45px rgba(217, 119, 6, .35);
    }

    .kai-chatbot {
        position: fixed;
        right: 18px;
        bottom: 92px;
        width: min(390px, calc(100vw - 24px));
        height: 520px;
        background: var(--phonix-black);
        border: 1px solid var(--phonix-border);
        border-radius: 16px;
        overflow: hidden;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        box-shadow: 0 22px 60px rgba(0, 0, 0, .65);
        opacity: 0;
        visibility: hidden;
        transform: translateY(25px) scale(.96);
        transition: .35s ease;
    }

    .kai-chatbot.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .kai-chatbot-header {
        height: 58px;
        padding: 0 16px;
        background: linear-gradient(135deg, var(--phonix-card), var(--phonix-primary));
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--phonix-white);
    }

    .kai-chatbot-title {
        display: flex;
        align-items: center;
        gap: 9px;
        font-size: 15px;
    }

    .kai-bot-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(255,255,255,.16);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .kai-chatbot-header button {
        border: 0;
        background: transparent;
        color: var(--phonix-white);
        font-size: 18px;
        cursor: pointer;
    }

    .kai-chatbot-body {
        flex: 1;
        padding: 14px;
        background: linear-gradient(180deg, var(--phonix-dark), var(--phonix-black));
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .kai-message {
        max-width: 82%;
        padding: 12px 14px;
        border-radius: 14px;
        font-size: 13px;
        line-height: 1.5;
        animation: kaiMessageIn .25s ease;
    }

    .kai-message p {
        margin: 0;
    }

    .kai-message span {
        display: block;
        margin-top: 6px;
        font-size: 10px;
        opacity: .65;
        text-align: right;
    }

    .kai-message.bot {
        align-self: flex-start;
        background: var(--phonix-card);
        color: var(--phonix-white);
        border: 1px solid var(--phonix-border);
    }

    .kai-message.user {
        align-self: flex-end;
        background: var(--phonix-primary);
        color: var(--phonix-white);
    }

    .kai-chatbot-footer {
        padding: 10px;
        background: var(--phonix-card);
        border-top: 1px solid var(--phonix-border);
        display: flex;
        gap: 8px;
    }

    .kai-chatbot-footer input {
        flex: 1;
        height: 44px;
        border-radius: 10px;
        border: 1px solid var(--phonix-border);
        background: var(--phonix-black);
        color: var(--phonix-white);
        padding: 0 14px;
        outline: none;
        font-size: 13px;
    }

    .kai-chatbot-footer input::placeholder {
        color: var(--phonix-gray);
    }

    .kai-chatbot-footer button {
        width: 46px;
        height: 44px;
        border: 0;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--phonix-primary), var(--phonix-primary-hover));
        color: var(--phonix-white);
        font-size: 17px;
        cursor: pointer;
    }

    .kai-chatbot-power {
        height: 25px;
        background: var(--phonix-black);
        border-top: 1px solid var(--phonix-border);
        color: var(--phonix-gray);
        font-size: 9px;
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @keyframes kaiMessageIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media(max-width: 480px) {
        .kai-chatbot {
            right: 10px;
            bottom: 82px;
            height: 500px;
        }

        .kai-chatbot-btn {
            right: 14px;
            bottom: 16px;
        }
    }

/* ==========================================
   PHONIX SOCIAL FLOAT BAR
========================================== */

        .social-floating-bar {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 99999;

            display: flex;
            flex-direction: column;
        }

        .social-btn {
            width: 46px;
            height: 46px;

            display: flex;
            align-items: center;
            justify-content: center;

            background: var(--phonix-card);
            border: 1px solid var(--phonix-border);

            color: var(--phonix-white);
            text-decoration: none;
            font-size: 18px;

            margin-left: -12px;

            transition: all .28s ease;
        }

        /* bordes redondeados superiores */
        .social-btn:first-child {
            border-top-right-radius: 10px;
        }

        /* bordes redondeados inferiores */
        .social-btn:last-child {
            border-bottom-right-radius: 10px;
        }

        .social-btn:hover {
            margin-left: 0;
            width: 56px;

            background: var(--phonix-primary);
            border-color: var(--phonix-primary);

            color: var(--phonix-white);

            box-shadow: 0 0 20px rgba(217, 119, 6, .25);
        }

        /* línea lateral dorada */
        .social-floating-bar::after {
            content: '';
            position: absolute;
            right: 0;
            top: 15%;
            height: 70%;
            width: 2px;
            background: var(--phonix-primary);
            opacity: .6;
        }

        /* ocultar en tablets y móviles */
        @media (max-width: 800px) {
            .social-floating-bar {
                display: none;
            }
        }