/* ==========================================
   TITANBYTE STORE HEADER
========================================== */

.tb-store-header{

    position:relative;

    z-index:1000;

    width:100%;

    background:#08090b;

    color:#fff;

}


/* ==========================================
   TOP HEADER
========================================== */

.tb-store-top{

    height:46px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 45px;

    border-bottom:1px solid
        rgba(255,255,255,.08);

}


.tb-store-top-item{

    display:flex;

    align-items:center;

    gap:9px;

    color:#cbd5e1;

    font-size:12px;

}


.tb-store-top-item i{

    color:#a3aab5;

    font-size:13px;

}


/* ==========================================
   MAIN HEADER
========================================== */

.tb-store-main{

    border-bottom:1px solid
        rgba(255,255,255,.06);

}


.tb-store-main-inner{

    min-height:130px;

    max-width:1500px;

    margin:auto;

    padding:20px 45px;

    display:grid;

    grid-template-columns:
        280px
        minmax(300px,1fr)
        auto;

    align-items:center;

    gap:40px;

}


/* ==========================================
   LOGO
========================================== */

.tb-store-logo{

    display:flex;

    align-items:center;

    gap:13px;

    text-decoration:none;

    color:#fff;

}


.tb-store-logo-icon{

    width:57px;

    height:57px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:15px;

    color:#f97316;

    border:1px solid
        rgba(249,115,22,.25);

    background:
        rgba(249,115,22,.05);

    font-size:27px;

}


.tb-store-logo-text{

    display:flex;

    flex-direction:column;

}


.tb-store-logo-text strong{

    font-size:30px;

    line-height:1;

    letter-spacing:-1.5px;

}


.tb-store-logo-text strong span{

    color:#f97316;

}


.tb-store-logo-text small{

    margin-top:6px;

    color:#94a3b8;

    font-size:10px;

    letter-spacing:.5px;

}


/* ==========================================
   SEARCH
========================================== */

.tb-store-search{

    width:100%;

}


.tb-store-search form{

    position:relative;

    width:100%;

}


.tb-store-search .input{

    width:100%;

    height:58px;

    padding:
        0 72px 0 22px;

    border:0;

    outline:none;

    border-radius:30px;

    background:#fff;

    color:#1e293b;

    font-size:15px;

}


.tb-store-search .input::placeholder{

    color:#8a94a3;

}


.tb-search-btn{

    position:absolute;

    top:5px;

    right:5px;

    width:48px;

    height:48px;

    border:0;

    border-radius:50%;

    background:#ea580c;

    color:#fff;

    cursor:pointer;

    font-size:17px;

    transition:.2s;

}


.tb-search-btn:hover{

    background:#f97316;

    transform:scale(1.04);

}


/* ==========================================
   ACTIONS
========================================== */

.tb-store-actions{

    display:flex;

    align-items:center;

    gap:25px;

}


.tb-store-action{

    min-width:62px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:5px;

    color:#fff;

    text-decoration:none;

}


.tb-action-icon{

    position:relative;

    font-size:27px;

}


.tb-store-action > span{

    font-size:11px;

    color:#e2e8f0;

}


.tb-action-badge{

    position:absolute;

    top:-9px;

    right:-12px;

    min-width:20px;

    height:20px;

    padding:0 5px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:#ea580c;

    color:#fff;

    font-size:10px;

    font-weight:800;

}


/* ==========================================
   ACCOUNT
========================================== */

.tb-account{

    position:relative;

}


.tb-account-btn{

    height:60px;

    min-width:190px;

    padding:0 15px;

    display:flex;

    align-items:center;

    gap:11px;

    border:1px solid
        rgba(255,255,255,.08);

    border-radius:15px;

    background:#111317;

    color:#fff;

    cursor:pointer;

}


.tb-account-avatar{

    width:39px;

    height:39px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#ea580c;

    color:#fff;

}


.tb-account-info{

    flex:1;

    text-align:left;

    display:flex;

    flex-direction:column;

}


.tb-account-info strong{

    font-size:12px;

}


.tb-account-info small{

    margin-top:3px;

    color:#7f8794;

    font-size:9px;

}


.tb-account-arrow{

    color:#94a3b8;

    font-size:10px;

    transition:.2s;

}


.tb-account-btn.active
.tb-account-arrow{

    transform:rotate(180deg);

}


/* ==========================================
   ACCOUNT DROPDOWN
========================================== */

.tb-account-menu{

    position:absolute;

    top:calc(100% + 10px);

    right:0;

    width:280px;

    padding:10px;

    border:1px solid
        rgba(255,255,255,.08);

    border-radius:15px;

    background:#17191d;

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transform:
        translateY(-8px);

    transition:.2s;

}


.tb-account-menu.active{

    opacity:1;

    visibility:visible;

    transform:
        translateY(0);

}


.tb-account-menu a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:11px;

    border-radius:10px;

    color:#fff;

    text-decoration:none;

    transition:.2s;

}


.tb-account-menu a:hover{

    background:#22252b;

}


.tb-account-menu-icon{

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:10px;

    background:#22252b;

    color:#cbd5e1;

}


.tb-account-menu a > div:last-child{

    display:flex;

    flex-direction:column;

}


.tb-account-menu strong{

    font-size:12px;

}


.tb-account-menu small{

    margin-top:3px;

    color:#7f8794;

    font-size:9px;

}


.tb-account-divider{

    height:1px;

    margin:6px 5px;

    background:rgba(255,255,255,.07);

}


.tb-account-logout strong,
.tb-account-logout
.tb-account-menu-icon{

    color:#ef4444;

}


/* ==========================================
   NAV
========================================== */

.tb-store-nav{

    height:70px;

    background:#0c0e11;

}


.tb-store-nav-inner{

    max-width:1500px;

    height:100%;

    margin:auto;

    padding:0 45px;

    display:flex;

    align-items:center;

    gap:40px;

}


/* ==========================================
   CATEGORIES
========================================== */

.tb-categories{

    position:relative;

}


.tb-categories-btn{

    height:46px;

    min-width:220px;

    padding:0 17px;

    display:flex;

    align-items:center;

    gap:11px;

    border:0;

    border-radius:11px;

    background:#ea580c;

    color:#fff;

    font-size:14px;

    font-weight:700;

    cursor:pointer;

}


.tb-categories-btn i:last-child{

    margin-left:auto;

    font-size:10px;

}


/* ==========================================
   CATEGORIES MENU
========================================== */

.tb-categories-menu{

    position:absolute;

    top:calc(100% + 8px);

    left:0;

    width:300px;

    padding:10px;

    border-radius:14px;

    background:#17191d;

    border:1px solid
        rgba(255,255,255,.08);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transform:
        translateY(-8px);

    transition:.2s;

}


.tb-categories-menu.active{

    opacity:1;

    visibility:visible;

    transform:
        translateY(0);

}


.tb-categories-menu > a{

    display:flex;

    align-items:center;

    gap:13px;

    padding:13px 12px;

    border-radius:9px;

    color:#e2e8f0;

    text-decoration:none;

    font-size:13px;

}


.tb-categories-menu > a:hover{

    background:#23262c;

    color:#fff;

}


.tb-categories-menu > a > i:first-child{

    width:20px;

    color:#aab2bd;

}


.tb-categories-menu > a > i:last-child{

    margin-left:auto;

    font-size:9px;

    color:#737b86;

}


.tb-categories-divider{

    height:1px;

    margin:7px 5px;

    background:rgba(255,255,255,.07);

}


.tb-all-categories{

    background:#22252b;

    justify-content:space-between;

}


/* ==========================================
   NAV LINKS
========================================== */

.tb-store-links{

    height:100%;

    display:flex;

    align-items:center;

    gap:35px;

}


.tb-store-links a{

    position:relative;

    height:100%;

    display:flex;

    align-items:center;

    color:#d5dae1;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

}


.tb-store-links a:hover{

    color:#fff;

}


.tb-store-links a.active{

    color:#f97316;

}


.tb-store-links a.active::after{

    content:"";

    position:absolute;

    bottom:0;

    left:0;

    right:0;

    height:3px;

    background:#f97316;

    border-radius:5px 5px 0 0;

}


.tb-store-links .tb-offers{

    height:38px;

    padding:0 16px;

    gap:7px;

    border:1px solid
        rgba(249,115,22,.5);

    border-radius:9px;

    color:#f97316;

}


.tb-store-links .tb-offers::after{

    display:none;

}


/* ==========================================
   MOBILE
========================================== */

.tb-mobile-menu{

    display:none;

    width:42px;

    height:42px;

    border:1px solid
        rgba(255,255,255,.1);

    border-radius:10px;

    background:#17191d;

    color:#fff;

    cursor:pointer;

}


/* ==========================================
   RESPONSIVE
========================================== */

/* =========================================================
   TITANBYTE - RESPONSIVE COMPLETO
========================================================= */


/* =========================================================
   TABLET
   1200px
========================================================= */

@media (max-width:1200px){

    .tb-store-main-inner{

        grid-template-columns:
            220px
            minmax(280px, 1fr)
            auto;

        gap:20px;

        padding-left:25px;
        padding-right:25px;

    }


    .tb-store-logo-text strong{

        font-size:25px;

    }


    .tb-store-logo-text small{

        font-size:9px;

    }


    .tb-account-info{

        display:none;

    }


    .tb-account-btn{

        min-width:48px;

        width:48px;

        height:48px;

        justify-content:center;

        padding:0;

    }


    .tb-account-arrow{

        display:none;

    }


    .tb-store-nav-inner{

        padding:0 25px;

        gap:25px;

    }


    .tb-store-links{

        gap:22px;

    }


    .tb-store-links a{

        font-size:13px;

    }

}


/* =========================================================
   TABLET PEQUEÑA
   1000px
========================================================= */

@media (max-width:1000px){

    .tb-store-top{

        padding:0 20px;

    }


    .tb-store-top-item{

        font-size:11px;

    }


    .tb-store-main-inner{

        grid-template-columns:
            190px
            1fr
            auto;

        gap:15px;

    }


    .tb-store-logo-text strong{

        font-size:22px;

    }


    .tb-store-logo-icon{

        width:48px;
        height:48px;

        font-size:22px;

    }


    .tb-store-actions{

        gap:12px;

    }


    .tb-store-action{

        min-width:45px;

    }


    .tb-store-action > span{

        font-size:9px;

    }


    .tb-action-icon{

        font-size:22px;

    }


    .tb-account-btn{

        width:45px;

        min-width:45px;

    }


    .tb-store-nav-inner{

        padding:0 20px;

    }


    .tb-categories-btn{

        min-width:180px;

    }


    .tb-store-links{

        gap:18px;

    }

}


/* =========================================================
   TABLET / MÓVIL
   850px
========================================================= */

@media (max-width:850px){

    .tb-store-top{

        height:40px;

    }


    .tb-store-top-item:nth-child(2){

        display:none;

    }


    .tb-store-top-item{

        font-size:10px;

    }


    .tb-store-main-inner{

        min-height:95px;

        grid-template-columns:
            auto
            1fr
            auto;

        gap:15px;

        padding:
            15px 20px;

    }


    /* LOGO */

    .tb-store-logo-text{

        display:none;

    }


    .tb-store-logo-icon{

        width:50px;
        height:50px;

    }


    /* SEARCH */

    .tb-store-search .input{

        height:48px;

        font-size:13px;

        padding-left:18px;

        padding-right:60px;

    }


    .tb-search-btn{

        width:40px;

        height:40px;

        top:4px;

        right:4px;

        font-size:14px;

    }


    /* ACTIONS */

    .tb-store-actions{

        gap:7px;

    }


    .tb-store-action{

        min-width:40px;

    }


    .tb-store-action > span{

        display:none;

    }


    .tb-action-icon{

        font-size:23px;

    }


    /* ACCOUNT */

    .tb-account{

        display:none;

    }


    /* MOBILE BUTTON */

    .tb-mobile-menu{

        display:flex;

        align-items:center;

        justify-content:center;

        width:43px;

        height:43px;

    }


    /* NAV */

    .tb-store-nav{

        display:none;

    }

}


/* =========================================================
   MÓVIL GRANDE
   700px
========================================================= */

@media (max-width:700px){

    .tb-store-top{

        display:none;

    }


    .tb-store-main-inner{

        min-height:75px;

        padding:
            10px 15px;

        grid-template-columns:
            auto
            1fr
            auto;

        gap:10px;

    }


    /* LOGO */

    .tb-store-logo-icon{

        width:43px;

        height:43px;

        border-radius:11px;

        font-size:19px;

    }


    /* SEARCH */

    .tb-store-search{

        min-width:0;

    }


    .tb-store-search .input{

        height:43px;

        padding:
            0 48px 0 14px;

        font-size:11px;

        border-radius:23px;

    }


    .tb-search-btn{

        width:35px;

        height:35px;

        top:4px;

        right:4px;

        font-size:12px;

    }


    /* ACTIONS */

    .tb-store-actions{

        gap:7px;

    }


    .tb-store-action{

        min-width:35px;

    }


    .tb-action-icon{

        font-size:20px;

    }


    .tb-action-badge{

        min-width:17px;

        height:17px;

        top:-7px;

        right:-8px;

        font-size:8px;

    }


    /* MOBILE MENU */

    .tb-mobile-menu{

        width:38px;

        height:38px;

        font-size:14px;

    }


    /* ACCOUNT */

    .tb-account{

        display:none;

    }

}


/* =========================================================
   MÓVIL PEQUEÑO
   550px
========================================================= */

@media (max-width:550px){

    .tb-store-main-inner{

        grid-template-columns:
            42px
            1fr
            40px;

        gap:8px;

    }


    .tb-store-logo-icon{

        width:40px;

        height:40px;

        font-size:17px;

    }


    .tb-store-actions{

        gap:0;

    }


    /* OCULTAR WISHLIST */

    .tb-store-action:first-child{

        display:none;

    }


    /* CARRITO */

    .tb-store-action{

        display:flex;

        min-width:38px;

    }


    .tb-action-icon{

        font-size:19px;

    }


    /* MENU */

    .tb-mobile-menu{

        width:38px;

        height:38px;

    }


    /* DROPDOWN */

    .tb-account-menu{

        position:fixed;

        top:75px;

        right:10px;

        left:10px;

        width:auto;

    }


    /* CATEGORIAS */

    .tb-categories-menu{

        position:fixed;

        top:75px;

        left:10px;

        right:10px;

        width:auto;

        max-height:
            calc(100vh - 90px);

        overflow-y:auto;

    }

}


/* =========================================================
   MÓVIL PEQUEÑO
   400px
========================================================= */

@media (max-width:400px){

    .tb-store-main-inner{

        grid-template-columns:
            38px
            1fr
            36px;

        padding:
            9px 10px;

        gap:6px;

    }


    .tb-store-logo-icon{

        width:36px;

        height:36px;

        font-size:15px;

    }


    .tb-store-search .input{

        height:39px;

        font-size:10px;

        padding-left:12px;

        padding-right:43px;

    }


    .tb-search-btn{

        width:32px;

        height:32px;

        top:3.5px;

        right:3.5px;

        font-size:11px;

    }


    .tb-store-action{

        min-width:34px;

    }


    .tb-action-icon{

        font-size:18px;

    }


    .tb-action-badge{

        min-width:15px;

        height:15px;

        font-size:7px;

    }


    .tb-mobile-menu{

        width:34px;

        height:34px;

        font-size:12px;

    }

}


/* =========================================================
   MÓVIL MUY PEQUEÑO
   350px
========================================================= */

@media (max-width:350px){

    .tb-store-main-inner{

        grid-template-columns:
            34px
            1fr
            32px;

        padding:
            8px;

        gap:5px;

    }


    .tb-store-logo-icon{

        width:34px;

        height:34px;

        font-size:14px;

    }


    .tb-store-search .input{

        height:36px;

        font-size:9px;

    }


    .tb-search-btn{

        width:29px;

        height:29px;

    }


    .tb-store-action{

        min-width:30px;

    }


    .tb-action-icon{

        font-size:16px;

    }


    .tb-mobile-menu{

        width:31px;

        height:31px;

    }

}

/* =========================================================
   TITANBYTE - PROMOTIONAL BANNERS
========================================================= */

.tb-promo{

    width:100%;

    padding:25px 25px 40px;

    background:#f3f4f6;

}


.tb-promo-container{

    width:100%;

    max-width:1500px;

    margin:0 auto;

    display:grid;

    grid-template-columns:
        1.05fr
        1fr;

    gap:18px;

}


/* =========================================================
   BANNER PRINCIPAL
========================================================= */

.tb-promo-main{

    position:relative;

    min-height:590px;

    overflow:hidden;

    display:block;

    border-radius:20px;

    background:#080b13;

    text-decoration:none;

    box-shadow:
        0 10px 30px
        rgba(15,23,42,.12);

}


.tb-promo-main > img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:
        transform .6s ease;

}


.tb-promo-main:hover > img{

    transform:scale(1.035);

}


/* =========================================================
   MAIN OVERLAY
========================================================= */

.tb-promo-main-overlay{

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            90deg,
            rgba(2,6,23,.96) 0%,
            rgba(2,6,23,.80) 28%,
            rgba(2,6,23,.28) 65%,
            rgba(2,6,23,.05) 100%
        );


    z-index:1;

}


/* =========================================================
   MAIN CONTENT
========================================================= */

.tb-promo-main-content{

    position:absolute;

    left:45px;

    top:50%;

    transform:
        translateY(-50%);

    width:53%;

    z-index:2;

}


.tb-promo-label{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 13px;

    margin-bottom:20px;

    border:1px solid
        rgba(0,136,255,.35);

    border-radius:30px;

    background:
        rgba(0,136,255,.08);

    color:#38bdf8;

    font-size:9px;

    font-weight:800;

    letter-spacing:1px;

}


.tb-promo-label i{

    color:#38bdf8;

}


.tb-promo-main-content h2{

    margin:0;

    color:#fff;

    font-size:
        clamp(42px,4vw,65px);

    line-height:.95;

    font-weight:900;

    letter-spacing:-3px;

}


.tb-promo-main-content h2 strong{

    display:block;

    color:#0788ff;

}


.tb-promo-main-content p{

    margin:20px 0 25px;

    color:#dce5f2;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

}


/* =========================================================
   MAIN BUTTON
========================================================= */

.tb-promo-main-button{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:14px 20px;

    border-radius:9px;

    background:#087ff5;

    color:#fff;

    font-size:12px;

    font-weight:800;

    transition:.25s;

}


.tb-promo-main:hover
.tb-promo-main-button{

    background:#1595ff;

    transform:
        translateX(4px);

}


/* =========================================================
   MAIN BOTTOM FEATURES
========================================================= */

.tb-promo-main-bottom{

    position:absolute;

    left:25px;

    right:25px;

    bottom:20px;

    z-index:2;

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    padding-top:17px;

    border-top:1px solid
        rgba(255,255,255,.15);

}


.tb-promo-main-bottom div{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:6px;

    color:#fff;

    text-align:center;

}


.tb-promo-main-bottom i{

    color:#1495ff;

    font-size:18px;

}


.tb-promo-main-bottom span{

    color:#d5dce7;

    font-size:9px;

    font-weight:700;

    text-transform:uppercase;

}


/* =========================================================
   RIGHT COLUMN
========================================================= */

.tb-promo-side{

    min-width:0;

    display:grid;

    grid-template-rows:
        1fr
        1fr;

    gap:18px;

}


/* =========================================================
   GENERAL CARD
========================================================= */

.tb-promo-card{

    position:relative;

    display:block;

    min-width:0;

    overflow:hidden;

    border-radius:20px;

    background:#080b13;

    text-decoration:none;

    box-shadow:
        0 10px 30px
        rgba(15,23,42,.10);

}


.tb-promo-card img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:
        transform .6s ease;

}


.tb-promo-card:hover img{

    transform:scale(1.04);

}


.tb-promo-card-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(2,6,23,.88),
            rgba(2,6,23,.25)
        );

    z-index:1;

}


/* =========================================================
   SHIPPING
========================================================= */

.tb-promo-shipping{

    min-height:275px;

}


.tb-promo-shipping
.tb-promo-card-overlay{

    background:
        linear-gradient(
            90deg,
            rgba(2,6,23,.90) 0%,
            rgba(2,6,23,.52) 45%,
            rgba(2,6,23,.10) 100%
        );

}


.tb-promo-card-content{

    position:absolute;

    top:50%;

    left:35px;

    transform:
        translateY(-50%);

    z-index:2;

}


.tb-promo-card-content > span{

    display:inline-flex;

    align-items:center;

    gap:7px;

    color:#38bdf8;

    font-size:9px;

    font-weight:800;

    letter-spacing:1px;

}


.tb-promo-card-content h3{

    margin:9px 0 4px;

    color:#fff;

    font-size:
        clamp(27px,2.5vw,42px);

    line-height:.95;

    font-weight:900;

}


.tb-promo-card-content h3 strong{

    display:block;

    color:#0788ff;

}


.tb-promo-card-content p{

    margin:10px 0 0;

    color:#d7e0eb;

    font-size:11px;

}


/* =========================================================
   BOTTOM TWO CARDS
========================================================= */

.tb-promo-bottom{

    min-width:0;

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:18px;

}


.tb-promo-bottom .tb-promo-card{

    min-height:275px;

}


/* =========================================================
   SMALL CARD CONTENT
========================================================= */

.tb-promo-small-content{

    position:absolute;

    left:25px;

    bottom:30px;

    z-index:2;

}


.tb-promo-small-content > span{

    display:inline-flex;

    align-items:center;

    gap:6px;

    color:#38bdf8;

    font-size:8px;

    font-weight:800;

    letter-spacing:.8px;

}


.tb-promo-small-content h3{

    margin:8px 0 5px;

    color:#fff;

    font-size:
        clamp(20px,2vw,30px);

    line-height:.9;

    font-weight:900;

}


.tb-promo-small-content h3 strong{

    display:block;

    color:#0788ff;

}


.tb-promo-small-content small{

    color:#cbd5e1;

    font-size:9px;

}


/* =========================================================
   REPAIR
========================================================= */

.tb-promo-repair
.tb-promo-card-overlay{

    background:
        linear-gradient(
            90deg,
            rgba(2,6,23,.90),
            rgba(2,6,23,.20)
        );

}


/* =========================================================
   WEB
========================================================= */

.tb-promo-web
.tb-promo-card-overlay{

    background:
        linear-gradient(
            90deg,
            rgba(2,6,23,.92),
            rgba(2,6,23,.25)
        );

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1100px){

    .tb-promo{

        padding:
            20px 18px 30px;

    }


    .tb-promo-container{

        gap:14px;

    }


    .tb-promo-main{

        min-height:500px;

    }


    .tb-promo-main-content{

        left:30px;

    }


    .tb-promo-main-content h2{

        font-size:45px;

    }


    .tb-promo-main-bottom{

        left:18px;

        right:18px;

    }


    .tb-promo-card-content{

        left:25px;

    }

}


/* =========================================================
   TABLET VERTICAL
========================================================= */

@media(max-width:850px){

    .tb-promo-container{

        grid-template-columns:1fr;

    }


    .tb-promo-main{

        min-height:480px;

    }


    .tb-promo-side{

        grid-template-rows:
            300px
            250px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

    .tb-promo{

        padding:
            10px;

    }


    .tb-promo-container{

        display:flex;

        flex-direction:column;

        gap:10px;

    }


    .tb-promo-main{

        min-height:390px;

        border-radius:14px;

    }


    .tb-promo-main-overlay{

        background:

            linear-gradient(
                180deg,
                rgba(2,6,23,.05),
                rgba(2,6,23,.90) 75%
            );

    }


    .tb-promo-main-content{

        left:20px;

        right:20px;

        bottom:75px;

        top:auto;

        transform:none;

        width:auto;

    }


    .tb-promo-label{

        padding:
            6px 9px;

        margin-bottom:10px;

        font-size:7px;

    }


    .tb-promo-main-content h2{

        font-size:34px;

        letter-spacing:-1.5px;

    }


    .tb-promo-main-content p{

        margin:
            10px 0 14px;

        font-size:10px;

    }


    .tb-promo-main-button{

        padding:
            11px 15px;

        font-size:10px;

    }


    .tb-promo-main-bottom{

        left:15px;

        right:15px;

        bottom:12px;

        padding-top:10px;

    }


    .tb-promo-main-bottom i{

        font-size:14px;

    }


    .tb-promo-main-bottom span{

        font-size:7px;

    }


    /* SIDE */

    .tb-promo-side{

        display:flex;

        flex-direction:column;

        gap:10px;

    }


    .tb-promo-shipping{

        min-height:220px;

    }


    .tb-promo-bottom{

        grid-template-columns:
            1fr 1fr;

        gap:10px;

    }


    .tb-promo-bottom
    .tb-promo-card{

        min-height:190px;

        border-radius:14px;

    }


    .tb-promo-card-content{

        left:20px;

    }


    .tb-promo-card-content h3{

        font-size:25px;

    }


    .tb-promo-small-content{

        left:15px;

        bottom:18px;

    }


    .tb-promo-small-content h3{

        font-size:19px;

    }

}


/* =========================================================
   MOBILE PEQUEÑO
========================================================= */

@media(max-width:420px){

    .tb-promo-main{

        min-height:350px;

    }


    .tb-promo-main-content h2{

        font-size:29px;

    }


    .tb-promo-main-bottom{

        grid-template-columns:
            repeat(2,1fr);

        gap:7px;

    }


    .tb-promo-main-bottom div{

        flex-direction:row;

        justify-content:flex-start;

    }


    .tb-promo-main-bottom div:nth-child(3),
    .tb-promo-main-bottom div:nth-child(4){

        display:none;

    }


    .tb-promo-shipping{

        min-height:190px;

    }


    .tb-promo-bottom{

        grid-template-columns:1fr;

    }


    .tb-promo-bottom
    .tb-promo-card{

        min-height:180px;

    }

}


/* =========================================================
   TITANBYTE
   PRODUCTOS DESTACADOS
========================================================= */

.tb-products{

    width:100%;

    padding:65px 30px;

    background:#f6f8fb;

}


.tb-products-container{

    width:100%;

    max-width:1450px;

    margin:auto;

}


/* =========================================================
   HEADER
========================================================= */

.tb-products-header{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:30px;

    margin-bottom:30px;

}


.tb-products-heading{

    min-width:0;

}


.tb-products-label{

    position:relative;

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-bottom:10px;

    color:#1264ed;

    font-size:11px;

    font-weight:800;

    letter-spacing:1px;

}


.tb-products-label::after{

    content:"";

    width:38px;

    height:2px;

    background:#1264ed;

    border-radius:10px;

}


.tb-products-heading h2{

    margin:0;

    color:#111827;

    font-size:46px;

    line-height:1;

    font-weight:800;

    letter-spacing:-2px;

}


.tb-products-heading p{

    margin:13px 0 0;

    color:#687386;

    font-size:15px;

}


/* =========================================================
   NAVEGACIÓN
========================================================= */

.tb-products-navigation{

    display:flex;

    align-items:center;

    gap:10px;

}


.tb-products-arrow{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid #e1e6ed;

    border-radius:50%;

    background:#fff;

    color:#182235;

    cursor:pointer;

    box-shadow:
        0 4px 15px
        rgba(20,30,50,.06);

    transition:.25s;

}


.tb-products-arrow:hover{

    border-color:#1769ee;

    color:#1769ee;

    transform:
        translateY(-2px);

}


.tb-products-arrow.active{

    border-color:#1769ee;

    background:#1769ee;

    color:#fff;

    box-shadow:
        0 7px 20px
        rgba(23,105,238,.25);

}


.tb-products-all{

    height:50px;

    display:flex;

    align-items:center;

    gap:14px;

    padding:0 20px;

    margin-left:8px;

    border-radius:28px;

    background:#fff;

    color:#182235;

    text-decoration:none;

    font-size:13px;

    font-weight:700;

    box-shadow:
        0 4px 15px
        rgba(20,30,50,.06);

    transition:.25s;

}


.tb-products-all:hover{

    color:#1769ee;

    transform:
        translateY(-2px);

}


.tb-products-all i{

    font-size:15px;

}


/* =========================================================
   SLIDER
========================================================= */

.tb-products-window{

    width:100%;

    overflow-x: scroll;

}


.tb-products-track{

    display:flex;

    gap:20px;

    transition:
        transform .45s ease;

}


/* =========================================================
   PRODUCT CARD
========================================================= */

.tb-product{

    position:relative;

    flex:
        0 0 calc(
            20% - 16px
        );

    min-width:0;

    overflow:hidden;

    border:1px solid #e5e9ef;

    border-radius:15px;

    background:#fff;

    box-shadow:
        0 5px 20px
        rgba(15,23,42,.06);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

}


.tb-product:hover{

    transform:
        translateY(-6px);

    border-color:#d8e3f5;

    box-shadow:
        0 18px 40px
        rgba(15,23,42,.12);

}


/* =========================================================
   BADGE
========================================================= */

.tb-product-badge{

    position:absolute;

    top:16px;

    left:16px;

    z-index:5;

    padding:6px 11px;

    border-radius:20px;

    color:#fff;

    font-size:9px;

    font-weight:800;

}


.tb-badge-blue{

    background:#1469ed;

}


/* =========================================================
   FAVORITO
========================================================= */

.tb-product-favorite{

    position:absolute;

    top:13px;

    right:13px;

    z-index:5;

    width:38px;

    height:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:0;

    border-radius:50%;

    background:rgba(255,255,255,.95);

    color:#172033;

    font-size:18px;

    cursor:pointer;

    box-shadow:
        0 3px 12px
        rgba(0,0,0,.08);

    transition:.25s;

}


.tb-product-favorite:hover{

    color:#ef4444;

    transform:
        scale(1.08);

}


/* =========================================================
   IMAGEN
========================================================= */

.tb-product-picture{

    width:100%;

    height:265px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:28px;

    background:#fff;

}


.tb-product-picture img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:
        transform .35s ease;

}


.tb-product:hover
.tb-product-picture img{

    transform:
        scale(1.06);

}


/* =========================================================
   BODY
========================================================= */

.tb-product-body{

    padding:
        0 18px 17px;

}


.tb-product-category{

    display:block;

    margin-bottom:6px;

    color:#1769ee;

    font-size:10px;

    font-weight:800;

    text-transform:uppercase;

}


.tb-product-body h3{

    height:58px;

    margin:0;

    overflow:hidden;

}


.tb-product-body h3 a{

    color:#172033;

    text-decoration:none;

    font-size:13px;

    line-height:1.45;

    font-weight:750;

}


.tb-product-body h3 a:hover{

    color:#1769ee;

}


/* =========================================================
   ESTRELLAS
========================================================= */

.tb-product-rating{

    display:flex;

    align-items:center;

    gap:7px;

    margin-top:9px;

}


.tb-stars{

    color:#f5a800;

    font-size:13px;

    letter-spacing:-2px;

}


.tb-product-rating span:last-child{

    color:#8993a3;

    font-size:10px;

}


/* =========================================================
   PRECIO
========================================================= */

.tb-product-price{

    margin-top:9px;

    color:#1769ee;

    font-size:21px;

    font-weight:850;

    letter-spacing:-.4px;

}


/* =========================================================
   STOCK
========================================================= */

.tb-product-available{

    display:inline-flex;

    align-items:center;

    gap:6px;

    margin-top:8px;

    padding:5px 9px;

    border-radius:20px;

    background:#eaf9ef;

    color:#159447;

    font-size:9px;

    font-weight:700;

}


.tb-product-available span{

    width:6px;

    height:6px;

    border-radius:50%;

    background:#20b85a;

}


/* =========================================================
   BOTONES
========================================================= */

.tb-product-buttons{

    display:flex;

    gap:8px;

    margin-top:13px;

}


.tb-product-cart{

    width:46px;

    height:42px;

    flex-shrink:0;

    border:1px solid #dfe4eb;

    border-radius:8px;

    background:#fff;

    color:#1769ee;

    cursor:pointer;

    transition:.25s;

}


.tb-product-cart:hover{

    border-color:#1769ee;

    color:#1769ee;

}


.tb-product-detail{

    flex:1;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    border-radius:8px;

    background:black;

    color:#fff;

    text-decoration:none;

    font-size:11px;

    font-weight:700;

    transition:.25s;

}


.tb-product-detail:hover{

    background:#0d58d0;

}


.tb-product-detail i{

    font-size:10px;

}


/* =========================================================
   DOTS
========================================================= */

.tb-products-dots{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:7px;

    margin:25px 0 35px;

}


.tb-products-dots span{

    width:7px;

    height:7px;

    border-radius:50%;

    background:#cbd2dc;

}


.tb-products-dots span.active{

    width:23px;

    border-radius:10px;

    background:#1769ee;

}


/* =========================================================
   BENEFICIOS
========================================================= */

.tb-products-benefits{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    overflow:hidden;

    border-radius:12px;

    background:#111a2b;
    margin: -1px 3%;

}


.tb-benefit{

    position:relative;

    display:flex;

    align-items:center;

    gap:15px;

    min-height:105px;

    padding:20px 28px;

}


.tb-benefit:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;

    top:25%;

    width:1px;

    height:50%;

    background:#425069;

}


.tb-benefit-icon{

    width:52px;

    height:52px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid #31558f;

    border-radius:50%;

    background:#172844;

    color:#4b91ff;

    font-size:21px;

    box-shadow:
        0 0 20px
        rgba(60,130,255,.08);

}


.tb-benefit strong{

    display:block;

    margin-bottom:5px;

    color:#fff;

    font-size:13px;

}


.tb-benefit p{

    max-width:190px;

    margin:0;

    color:#b3bdcc;

    font-size:10px;

    line-height:1.5;

}


/* =========================================================
   TABLET GRANDE
========================================================= */

@media(max-width:1200px){

    .tb-product{

        flex:
            0 0 calc(
                25% - 15px
            );

    }


    .tb-product:nth-child(n+5){

        display:none;

    }


    .tb-product-picture{

        height:230px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

    .tb-products{

        padding:
            50px 20px;

    }


    .tb-products-heading h2{

        font-size:38px;

    }


    .tb-product{

        flex:
            0 0 calc(
                33.333% - 14px
            );

    }


    .tb-product:nth-child(n+4){

        display:none;

    }


    .tb-product-picture{

        height:210px;

        padding:20px;

    }


    .tb-products-benefits{

        grid-template-columns:
            repeat(2,1fr);

    }


    .tb-benefit:nth-child(2)::after{

        display:none;

    }


    .tb-benefit:nth-child(1),
    .tb-benefit:nth-child(2){

        border-bottom:
            1px solid #425069;

    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media(max-width:650px){

    .tb-products{

        padding:
            40px 12px;

    }


    .tb-products-header{

        flex-direction:column;

        align-items:flex-start;

        margin-bottom:22px;

    }


    .tb-products-heading h2{

        font-size:31px;

        letter-spacing:-1.2px;

    }


    .tb-products-heading p{

        font-size:12px;

        line-height:1.5;

    }


    .tb-products-navigation{

        width:100%;

    }


    .tb-products-all{

        margin-left:auto;

    }


    .tb-products-arrow{

        width:43px;

        height:43px;

    }


    .tb-products-all{

        height:43px;

        padding:
            0 15px;

        font-size:11px;

    }


    .tb-products-track{

        gap:10px;

    }


    .tb-product{

        flex:
            0 0 calc(
                50% - 5px
            );

        border-radius:12px;

    }


    .tb-product-picture{

        height:185px;

        padding:14px;

    }


    .tb-product-body{

        padding:
            0 12px 13px;

    }


    .tb-product-badge{

        top:10px;

        left:10px;

        padding:5px 8px;

        font-size:7px;

    }


    .tb-product-favorite{

        top:9px;

        right:9px;

        width:32px;

        height:32px;

        font-size:15px;

    }


    .tb-product-category{

        font-size:8px;

    }


    .tb-product-body h3{

        height:42px;

    }


    .tb-product-body h3 a{

        font-size:11px;

    }


    .tb-product-rating{

        display:none;

    }


    .tb-product-price{

        font-size:17px;

    }


    .tb-product-available{

        font-size:8px;

        padding:4px 7px;

    }


    .tb-product-buttons{

        margin-top:10px;

    }


    .tb-product-cart{

        width:38px;

        height:38px;

    }


    .tb-product-detail{

        height:38px;

        font-size:9px;

    }


    .tb-products-benefits{

        grid-template-columns:1fr;

    }


    .tb-benefit{

        min-height:80px;

        padding:
            16px 18px;

    }


    .tb-benefit:not(:last-child)::after{

        top:auto;

        right:10%;

        bottom:0;

        width:80%;

        height:1px;

    }


    .tb-benefit:nth-child(2)::after{

        display:block;

    }


    .tb-benefit-icon{

        width:45px;

        height:45px;

        font-size:18px;

    }

}


/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */

@media(max-width:420px){

    .tb-products-heading h2{

        font-size:27px;

    }


    .tb-products-label{

        font-size:9px;

    }


    .tb-product{

        flex:
            0 0 100%;

    }


    .tb-product-picture{

        height:250px;

    }


    .tb-product-body h3{

        height:auto;

        min-height:40px;

    }


    .tb-product-body h3 a{

        font-size:14px;

    }


    .tb-product-price{

        font-size:20px;

    }

}


/* =========================================================
   TITANBYTE
   SECCIÓN PRODUCTOS
========================================================= */

.tb-products-section{

    width:100%;

    padding:65px 30px;

    background:#f5f7fa;

}


.tb-products-container{

    width:100%;

    max-width:1450px;

    margin: -67px 0px;

}

.tb-products-section {
    margin: 47px 0px;
}


/* =========================================================
   HEADER
========================================================= */

.tb-section-header{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:30px;

    margin-bottom:30px;

}


.tb-section-heading{

    min-width:0;

}


.tb-section-label{

    display:flex;

    align-items:center;

    gap:8px;

    margin-bottom:10px;

    color:#1769ee;

    font-size:10px;

    font-weight:800;

    letter-spacing:1.4px;

}


.tb-section-label::after{

    content:"";

    width:35px;

    height:2px;

    border-radius:5px;

    background:#1769ee;

}


.tb-section-label i{

    font-size:10px;

}


.tb-section-heading h2{

    margin:0;

    color:#111827;

    font-size:42px;

    line-height:1.05;

    font-weight:850;

    letter-spacing:-1.8px;

}


.tb-section-heading p{

    margin:12px 0 0;

    color:#687386;

    font-size:13px;

}


/* =========================================================
   VER TODOS
========================================================= */

.tb-view-all{

    height:45px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:0 18px;

    border:1px solid #dce2ea;

    border-radius:8px;

    background:#fff;

    color:#172033;

    text-decoration:none;

    font-size:11px;

    font-weight:750;

    box-shadow:
        0 4px 15px
        rgba(15,23,42,.05);

    transition:.25s;

}


.tb-view-all:hover{

    color:#1769ee;

    border-color:#1769ee;

    transform:
        translateY(-2px);

}


.tb-view-all i{

    color:#1769ee;

}


/* =========================================================
   GRID
========================================================= */

.tb-products-grid{

    display:grid;

    grid-template-columns:
        repeat(5,1fr);

    gap:18px;

}


/* =========================================================
   CARD
========================================================= */

.tb-store-card{

    position:relative;

    min-width:0;

    overflow:hidden;

    border:1px solid #e3e7ed;

    border-radius:15px;

    background:#fff;

    box-shadow:
        0 5px 20px
        rgba(15,23,42,.06);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

}


.tb-store-card:hover{

    transform:
        translateY(-6px);

    border-color:#d4e1f6;

    box-shadow:
        0 18px 40px
        rgba(15,23,42,.12);

}


/* =========================================================
   BADGE
========================================================= */

.tb-card-badge{

    position:absolute;

    top:13px;

    left:13px;

    z-index:5;

    padding:6px 9px;

    border-radius:20px;

    background:#1769ee;

    color:#fff;

    font-size:8px;

    font-weight:800;

    letter-spacing:.4px;

}


/* =========================================================
   FAVORITO
========================================================= */

.tb-card-favorite{

    position:absolute;

    top:11px;

    right:11px;

    z-index:6;

    width:36px;

    height:36px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid #e5e9ef;

    border-radius:50%;

    background:rgba(255,255,255,.95);

    color:#1d2738;

    cursor:pointer;

    transition:.25s;

}


.tb-card-favorite:hover{

    color:#ef4444;

    border-color:#fecaca;

    transform:
        scale(1.08);

}


/* =========================================================
   IMAGEN
========================================================= */

.tb-card-image{

    position:relative;

    width:100%;

    height:235px;

    display:block;

    overflow:hidden;

    background:#fff;

}


.tb-card-img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    padding:20px;

    object-fit:contain;

    transition:
        opacity .35s ease,
        transform .45s ease;

}


.tb-card-img-main{

    opacity:1;

}


.tb-card-img-hover{

    opacity:0;

}


.tb-store-card:hover
.tb-card-img-main{

    opacity:0;

    transform:
        scale(1.04);

}


.tb-store-card:hover
.tb-card-img-hover{

    opacity:1;

    transform:
        scale(1.04);

}


/* =========================================================
   BODY
========================================================= */

.tb-card-body{

    padding:
        0 17px 17px;

}


/* =========================================================
   CATEGORY
========================================================= */

.tb-card-category{

    display:block;

    margin-bottom:6px;

    color:#1769ee;

    font-size:9px;

    font-weight:800;

    letter-spacing:.5px;

}


/* =========================================================
   TITLE
========================================================= */

.tb-card-title{

    height:44px;

    margin:0;

    overflow:hidden;

}


.tb-card-title a{

    color:#172033;

    text-decoration:none;

    font-size:14px;

    line-height:1.5;

    font-weight:750;

}


.tb-card-title a:hover{

    color:#1769ee;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.tb-card-description{

    height:36px;

    margin:7px 0 0;

    overflow:hidden;

    color:#7a8494;

    font-size:10px;

    line-height:1.6;

}


/* =========================================================
   RATING
========================================================= */

.tb-card-rating{

    display:flex;

    align-items:center;

    gap:7px;

    margin-top:9px;

}


.tb-stars{

    color:#f4ad00;

    font-size:12px;

    letter-spacing:-2px;

}


.tb-rating-text{

    color:#8b95a4;

    font-size:9px;

}


/* =========================================================
   STOCK
========================================================= */

.tb-card-stock{

    display:inline-flex;

    align-items:center;

    gap:6px;

    margin-top:8px;

    padding:5px 8px;

    border-radius:20px;

    background:#eaf8ef;

    color:#149447;

    font-size:8px;

    font-weight:750;

}


.tb-stock-indicator{

    width:6px;

    height:6px;

    border-radius:50%;

    background:#1db954;

    box-shadow:
        0 0 5px
        rgba(29,185,84,.4);

}


/* =========================================================
   PRICE
========================================================= */

.tb-card-price{

    display:flex;

    flex-direction:column;

    margin-top:9px;

}


.tb-card-price del{

    color:#9aa3b1;

    font-size:10px;

}


.tb-card-price strong{

    margin-top:2px;

    color:#1769ee;

    font-size:21px;

    font-weight:850;

    letter-spacing:-.5px;

}


/* =========================================================
   ACTIONS
========================================================= */

.tb-card-actions{

    display:flex;

    gap:7px;

    margin-top:13px;

}


.tb-card-cart{

    width:42px;

    height:40px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid #dfe4eb;

    border-radius:8px;

    background:#fff;

    color:#1769ee;

    text-decoration:none;

    transition:.25s;

}


.tb-card-cart:hover{

    border-color:#1769ee;

    color:#1769ee;

}


.tb-card-buy{

    flex:1;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    border-radius:8px;

    background:black;

    color:#fff;

    text-decoration:none;

    font-size:10px;

    font-weight:750;

    transition:.25s;

}


.tb-card-buy:hover{

    background:#0d58d0;

}


.tb-card-buy i{

    font-size:9px;

}


/* =========================================================
   SKU
========================================================= */

.tb-card-sku{

    display:block;

    margin-top:10px;

    color:#a0a8b4;

    font-size:8px;

}


/* =========================================================
   FOOTER
========================================================= */

.tb-section-footer{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:45px;

    margin-top:30px;

    padding-top:20px;

    border-top:1px solid #e0e5eb;

}


.tb-section-footer span{

    display:flex;

    align-items:center;

    gap:8px;

    color:#687386;

    font-size:10px;

    font-weight:650;

}


.tb-section-footer i{

    color:#1769ee;

    font-size:13px;

}


/* =========================================================
   TABLET GRANDE
========================================================= */

@media(max-width:1200px){

    .tb-products-grid{

        grid-template-columns:
            repeat(4,1fr);

    }


    .tb-store-card:nth-child(n+5){

        display:none;

    }


    .tb-card-image{

        height:215px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:950px){

    .tb-products-section{

        padding:
            50px 20px;

    }


    .tb-section-heading h2{

        font-size:36px;

    }


    .tb-products-grid{

        grid-template-columns:
            repeat(3,1fr);

    }


    .tb-store-card:nth-child(n+4){

        display:none;

    }


    .tb-card-image{

        height:200px;

    }


    .tb-section-footer{

        gap:20px;

    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media(max-width:650px){

    .tb-products-section{

        padding:
            40px 12px;

    }


    .tb-section-header{

        align-items:flex-start;

        flex-direction:column;

        gap:18px;

    }


    .tb-section-heading h2{

        font-size:30px;

        letter-spacing:-1px;

    }


    .tb-section-heading p{

        font-size:11px;

        line-height:1.5;

    }


    .tb-view-all{

        height:42px;

    }


    .tb-products-grid{

        grid-template-columns:
            repeat(2,1fr);

        gap:10px;

    }


    .tb-store-card:nth-child(n){

        display:block;

    }


    .tb-card-image{

        height:180px;

    }


    .tb-card-img{

        padding:13px;

    }


    .tb-card-body{

        padding:
            0 11px 12px;

    }


    .tb-card-badge{

        top:9px;

        left:9px;

        padding:
            5px 7px;

        font-size:7px;

    }


    .tb-card-favorite{

        top:8px;

        right:8px;

        width:31px;

        height:31px;

        font-size:14px;

    }


    .tb-card-category{

        font-size:7px;

    }


    .tb-card-title{

        height:40px;

    }


    .tb-card-title a{

        font-size:11px;

    }


    .tb-card-description{

        display:none;

    }


    .tb-card-rating{

        display:none;

    }


    .tb-card-price strong{

        font-size:17px;

    }


    .tb-card-price del{

        font-size:9px;

    }


    .tb-card-stock{

        font-size:7px;

        padding:
            4px 6px;

    }


    .tb-card-actions{

        margin-top:9px;

    }


    .tb-card-cart{

        width:35px;

        height:36px;

    }


    .tb-card-buy{

        height:36px;

        font-size:8px;

    }


    .tb-card-sku{

        font-size:7px;

    }


    .tb-section-footer{

        display:grid;

        grid-template-columns:
            1fr 1fr;

        gap:15px;

        margin-top:25px;

    }


    .tb-section-footer span{

        font-size:8px;

    }

}


/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */

@media(max-width:420px){

    .tb-products-grid{

        grid-template-columns:1fr 1fr;

    }

    .tb-products-container {
   
    margin: -40px 0px;
}


    .tb-store-card:nth-child(n){

        display:block;

    }


    .tb-card-image{

        height:240px;

    }


    .tb-card-title{
height: 44px;
        margin: 0;
        overflow: hidden;
    
    }


    .tb-card-title a{

        font-size:14px;

    }


    .tb-card-description{

        display:block;

        height:32px;

    }


    .tb-card-rating{

        display:flex;

    }


    .tb-card-price strong{

        font-size:21px;

    }


    .tb-card-cart{

        width:43px;

    }


    .tb-card-buy{

        font-size:10px;

    }


    .tb-section-footer{

        grid-template-columns:1fr;

    }

}

/* =========================================================
   LISTADO GENERAL DE PRODUCTOS
========================================================= */

.tb-products-list{

    background:#f5f7fa;

}


/* =========================================================
   GRID
========================================================= */

.tb-products-list
.tb-products-grid{

    display:grid;

    grid-template-columns:
        repeat(5, minmax(0,1fr));

    gap:18px;

}


/* =========================================================
   CARD
========================================================= */

.tb-products-list
.tb-store-card{

    width:100%;

}


/* =========================================================
   IMAGEN
========================================================= */

.tb-products-list
.tb-card-image{

    height:250px;

}


/* =========================================================
   TITULO
========================================================= */

.tb-products-list
.tb-card-title{

    min-height:44px;

}


/* =========================================================
   DESCRIPCIÓN
========================================================= */

.tb-products-list
.tb-card-description{

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}


/* =========================================================
   PRECIO
========================================================= */

.tb-products-list
.tb-card-price{

    min-height:31px;

}


.tb-products-list
.tb-card-price strong{
    
    color:#1769ee;

}


/* =========================================================
   BOTÓN CARRITO
========================================================= */

.tb-products-list
.tb-card-cart{

    border:1px solid #dce3ec;

    background:#fff;

}


.tb-products-list
.tb-card-cart:hover{

    color:#fff;

    background:#1769ee;

    border-color:#1769ee;

}


/* =========================================================
   BOTÓN VER PRODUCTO
========================================================= */

.tb-products-list
.tb-card-buy{

    background:black;

}


.tb-products-list
.tb-card-buy:hover{

    background:#0c58d2;

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1200px){

    .tb-products-list
    .tb-products-grid{

        grid-template-columns:
            repeat(4,1fr);

    }


    .tb-products-list
    .tb-card-image{

        height:225px;

    }

}


/* =========================================================
   TABLET PEQUEÑA
========================================================= */

@media(max-width:950px){

    .tb-products-list
    .tb-products-grid{

        grid-template-columns:
            repeat(3,1fr);

        gap:14px;

    }


    .tb-products-list
    .tb-card-image{

        height:210px;

    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media(max-width:650px){

    .tb-products-list
    .tb-products-grid{

        grid-template-columns:
            repeat(2,1fr);

        gap:10px;

    }


    .tb-products-list
    .tb-card-image{

        height:185px;

    }


    .tb-products-list
    .tb-card-body{

        padding:
            0 11px 13px;

    }


    .tb-products-list
    .tb-card-title{

        height:42px;

    }


    .tb-products-list
    .tb-card-title a{

        font-size:11px;

    }


    .tb-products-list
    .tb-card-description{

        display:none;

    }


    .tb-products-list
    .tb-card-rating{

        display:none;

    }


    .tb-products-list
    .tb-card-price strong{

        font-size:18px;

    }


    .tb-products-list
    .tb-card-buy{

        font-size:9px;

    }


    .tb-products-list
    .tb-card-cart{

        width:36px;

        height:37px;

    }

}


/* =========================================================
   CELULAR PEQUEÑO
========================================================= */

@media(max-width:420px){

    .tb-products-list
    .tb-products-grid{

        grid-template-columns:1fr 1fr;

        gap:14px;

    }


    .tb-products-list
    .tb-card-image{

        height:260px;

    }


    .tb-products-list
    .tb-card-title{

        height:auto;

        min-height:42px;

    }


    .tb-products-list
    .tb-card-title a{

        font-size:14px;

    }


    .tb-products-list
    .tb-card-description{

        display:-webkit-box;

        -webkit-line-clamp:2;

        -webkit-box-orient:vertical;

        height:auto;

        margin-top:7px;

    }


    .tb-products-list
    .tb-card-rating{

        display:flex;

    }


    .tb-products-list
    .tb-card-price strong{

        font-size:21px;

    }

}

/* =========================================================
   TITANBYTE - PRODUCTO
========================================================= */

:root{

    --tb-primary:#155eef;
    --tb-primary-dark:#0b4dcc;

    --tb-green:#16a34a;
    --tb-green-dark:#12823b;

    --tb-dark:#111827;
    --tb-text:#1f2937;
    --tb-muted:#6b7280;

    --tb-border:#e5e7eb;
    --tb-bg:#f6f8fb;
    --tb-white:#ffffff;

    --tb-radius:18px;

    --tb-shadow:
        0 10px 30px rgba(15,23,42,.07);

}


/* =========================================================
   GENERAL
========================================================= */

.tb-product-page{

    width:100%;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );

    padding:30px 20px 70px;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color:var(--tb-text);

}


.tb-product-container{

    width:min(1400px,100%);

    margin:auto;

}


/* =========================================================
   BREADCRUMB
========================================================= */

.tb-breadcrumb{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:20px;

    color:var(--tb-muted);

    font-size:13px;

}

.tb-breadcrumb a{

    color:var(--tb-muted);

    text-decoration:none;

    transition:.2s;

}

.tb-breadcrumb a:hover{

    color:var(--tb-primary);

}

.tb-breadcrumb strong{

    color:var(--tb-dark);

}


/* =========================================================
   PRODUCT MAIN
========================================================= */

.tb-product-main{

    display:grid;

    grid-template-columns:
        minmax(0,1.15fr)
        minmax(420px,.85fr);

    gap:24px;

    align-items:start;

}


/* =========================================================
   GALLERY
========================================================= */

.tb-gallery{

    background:#fff;

    border:1px solid var(--tb-border);

    border-radius:var(--tb-radius);

    padding:22px;

    display:grid;

    grid-template-columns:100px 1fr;

    gap:20px;

    min-height:650px;

    box-shadow:var(--tb-shadow);

}


.tb-thumbnails{

    display:flex;

    flex-direction:column;

    gap:14px;

}


.tb-thumb{

    width:90px;

    height:90px;

    border-radius:12px;

    border:2px solid transparent;

    background:#fff;

    padding:6px;

    cursor:pointer;

    transition:.25s;

    overflow:hidden;

}

.tb-thumb:hover{

    border-color:#b8cdfc;

}

.tb-thumb.active{

    border-color:var(--tb-primary);

    box-shadow:
        0 0 0 3px rgba(21,94,239,.10);

}

.tb-thumb img{

    width:100%;

    height:100%;

    object-fit:contain;

}


/* MAIN IMAGE */

.tb-main-image{

    position:relative;

    min-height:600px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

        radial-gradient(
            circle at center,
            #ffffff 0%,
            #f7f9fc 70%,
            #f1f5f9 100%
        );

    border-radius:15px;

    overflow:hidden;

}


.tb-main-image img{

    width:90%;

    height:90%;

    object-fit:contain;

    transition:.3s;

}


.tb-product-badge{

    position:absolute;

    left:20px;

    top:20px;

    z-index:3;

    background:#dcfce7;

    color:#15803d;

    border-radius:30px;

    padding:8px 13px;

    font-size:12px;

    font-weight:700;

}


.tb-gallery-prev,
.tb-gallery-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:42px;

    height:42px;

    border:1px solid var(--tb-border);

    background:#fff;

    border-radius:50%;

    cursor:pointer;

    box-shadow:0 4px 15px rgba(0,0,0,.08);

    color:var(--tb-dark);

}


.tb-gallery-prev{

    left:15px;

}

.tb-gallery-next{

    right:15px;

}


/* =========================================================
   PRODUCT INFO
========================================================= */

.tb-product-info{

    background:#fff;

    border:1px solid var(--tb-border);

    border-radius:var(--tb-radius);

    padding:30px;

    box-shadow:var(--tb-shadow);

}


.tb-product-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

}


.tb-product-category{

    display:inline-flex;

    align-items:center;

    padding:6px 11px;

    background:#eff6ff;

    color:var(--tb-primary);

    border-radius:7px;

    font-size:12px;

    font-weight:700;

}


.tb-favorite{

    width:42px;

    height:42px;

    border-radius:50%;

    border:1px solid var(--tb-border);

    background:white;

    color:#6b7280;

    cursor:pointer;

    font-size:18px;

    transition:.2s;

}

.tb-favorite:hover{

    color:#ef4444;

    border-color:#fecaca;

    background:#fff5f5;

}


.tb-product-title{

    font-size:31px;

    line-height:1.2;

    margin:18px 0 14px;

    color:#111827;

}


.tb-rating-row{

    display:flex;

    align-items:center;

    gap:9px;

    font-size:13px;

    color:var(--tb-muted);

}


.tb-stars{

    color:#f59e0b;

    letter-spacing:2px;

}


.tb-separator{

    color:#d1d5db;

}


/* =========================================================
   PRICE
========================================================= */

.tb-price-box{

    margin:25px 0;

    padding-bottom:22px;

    border-bottom:1px solid var(--tb-border);

}


.tb-price-label{

    display:block;

    color:var(--tb-muted);

    font-size:13px;

    margin-bottom:3px;

}


.tb-price{

    color:var(--tb-primary);

    font-size:38px;

    font-weight:800;

}


/* =========================================================
   STATUS
========================================================= */

.tb-product-status{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    border:1px solid var(--tb-border);

    border-radius:14px;

    overflow:hidden;

    margin-bottom:25px;

}


.tb-status-item{

    display:flex;

    align-items:center;

    gap:10px;

    padding:15px;

    border-right:1px solid var(--tb-border);

}

.tb-status-item:last-child{

    border-right:0;

}


.tb-status-icon{

    width:36px;

    height:36px;

    border-radius:10px;

    background:#eff6ff;

    color:var(--tb-primary);

    display:flex;

    align-items:center;

    justify-content:center;

}


.tb-status-item small{

    display:block;

    font-size:10px;

    color:var(--tb-muted);

    margin-bottom:3px;

}


.tb-status-item strong{

    display:block;

    font-size:12px;

    color:var(--tb-dark);

}


/* =========================================================
   QUANTITY
========================================================= */

.tb-quantity{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:18px;

}


.tb-quantity label{

    font-weight:700;

    font-size:14px;

}


.tb-quantity-control{

    display:flex;

    align-items:center;

    border:1px solid var(--tb-border);

    border-radius:10px;

    overflow:hidden;

}


.tb-quantity-control button{

    width:40px;

    height:40px;

    border:0;

    background:#f8fafc;

    font-size:20px;

    cursor:pointer;

}


.tb-quantity-control span{

    width:45px;

    text-align:center;

    font-weight:700;

}


/* =========================================================
   BUTTONS
========================================================= */

.tb-buy-actions{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:12px;

}


.tb-buy-form,
.tb-cart-form{

    margin:0;

}


.tb-btn{

    width:100%;

    min-height:52px;

    border:0;

    border-radius:10px;

    cursor:pointer;

    font-size:14px;

    font-weight:800;

    transition:.25s;

}


.tb-btn-primary{

    background:var(--tb-primary);

    color:#fff;

}


.tb-btn-primary:hover{

    background:var(--tb-primary-dark);

    transform:translateY(-2px);

}


.tb-btn-cart{

    background:#16a34a;

    color:#fff;

}


.tb-btn-cart:hover{

    background:var(--tb-green-dark);

    transform:translateY(-2px);

}


.tb-btn i{

    margin-right:7px;

}


/* =========================================================
   WHATSAPP
========================================================= */

.tb-btn-whatsapp{

    margin-top:12px;

    width:100%;

    min-height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:9px;

    border:1px solid #22c55e;

    border-radius:10px;

    color:#16a34a;

    background:#fff;

    text-decoration:none;

    font-weight:800;

    transition:.25s;

}


.tb-btn-whatsapp:hover{

    background:#f0fdf4;

}


/* =========================================================
   BENEFICIOS
========================================================= */

.tb-benefits{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:10px;

    margin-top:22px;

    padding-top:22px;

    border-top:1px solid var(--tb-border);

}


.tb-benefits div{

    display:flex;

    align-items:flex-start;

    gap:9px;

}


.tb-benefits i{

    color:var(--tb-primary);

    font-size:19px;

}


.tb-benefits span{

    display:flex;

    flex-direction:column;

    gap:3px;

    font-size:10px;

    color:var(--tb-muted);

}


.tb-benefits strong{

    color:var(--tb-dark);

    font-size:11px;

}


/* =========================================================
   SHARE
========================================================= */

.tb-share{

    display:flex;

    align-items:center;

    gap:10px;

    margin-top:20px;

    font-size:12px;

    color:var(--tb-muted);

}


.tb-share a{

    width:32px;

    height:32px;

    border-radius:50%;

    background:#f1f5f9;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#374151;

    text-decoration:none;

    transition:.2s;

}


.tb-share a:hover{

    background:var(--tb-primary);

    color:#fff;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.tb-product-description{

    margin-top:25px;

    background:#fff;

    border:1px solid var(--tb-border);

    border-radius:var(--tb-radius);

    overflow:hidden;

    box-shadow:var(--tb-shadow);

}


.tb-tabs{

    display:flex;

    border-bottom:1px solid var(--tb-border);

    padding:0 25px;

}


.tb-tab{

    position:relative;

    border:0;

    background:none;

    padding:20px 25px;

    font-size:14px;

    font-weight:700;

    color:var(--tb-muted);

    cursor:pointer;

}


.tb-tab.active{

    color:var(--tb-primary);

}


.tb-tab.active::after{

    content:"";

    position:absolute;

    left:20px;

    right:20px;

    bottom:-1px;

    height:3px;

    background:var(--tb-primary);

    border-radius:4px 4px 0 0;

}


.tb-tab-content{

    display:none;

    padding:30px;

}


.tb-tab-content.active{

    display:block;

}


.tb-tab-content h3{

    margin-top:0;

    font-size:20px;

}


.tb-tab-content p{

    color:#64748b;

    line-height:1.8;

}


/* =========================================================
   ESPECIFICACIONES
========================================================= */

.tb-spec-grid{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:15px;

}


.tb-spec-grid div{

    display:flex;

    justify-content:space-between;

    gap:20px;

    padding:15px;

    background:#f8fafc;

    border-radius:10px;

}


.tb-spec-grid span{

    color:var(--tb-muted);

}


.tb-spec-grid strong{

    color:var(--tb-dark);

}


/* =========================================================
   RESEÑAS
========================================================= */

.tb-reviews-empty{

    min-height:180px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    text-align:center;

}


.tb-reviews-empty i{

    font-size:38px;

    color:#94a3b8;

    margin-bottom:10px;

}


/* =========================================================
   RELATED
========================================================= */

.tb-related{

    margin-top:45px;

}


.tb-section-header{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    margin-bottom:20px;

}


.tb-section-header span{

    color:var(--tb-primary);

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

}


.tb-section-header h2{

    margin:5px 0 0;

    font-size:27px;

    color:#111827;

}


.tb-section-header a{

    text-decoration:none;

    color:var(--tb-primary);

    font-size:13px;

    font-weight:700;

}


.tb-related-grid{

    display:grid;

    grid-template-columns:
        repeat(5,1fr);

    gap:18px;

}


.tb-related-card{

    background:#fff;

    border:1px solid var(--tb-border);

    border-radius:15px;

    overflow:hidden;

    text-decoration:none;

    color:inherit;

    transition:.25s;

}


.tb-related-card:hover{

    transform:translateY(-5px);

    box-shadow:
        0 15px 35px rgba(15,23,42,.10);

}


.tb-related-image{

    height:220px;

    background:#f8fafc;

    position:relative;

    padding:15px;

}


.tb-related-image img{

    width:100%;

    height:100%;

    object-fit:contain;

}


.tb-related-image span{

    position:absolute;

    top:10px;

    left:10px;

    background:#dcfce7;

    color:#15803d;

    padding:5px 8px;

    border-radius:6px;

    font-size:9px;

    font-weight:800;

}


.tb-related-info{

    padding:15px;

}


.tb-related-info small{

    color:var(--tb-primary);

    font-size:10px;

}


.tb-related-info h3{

    font-size:14px;

    line-height:1.4;

    min-height:40px;

    margin:7px 0;

}


.tb-related-rating{

    color:#f59e0b;

    font-size:12px;

}


.tb-related-price{

    color:var(--tb-primary);

    font-size:19px;

    font-weight:800;

    margin-top:8px;

}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media(max-width:1100px){

    .tb-product-main{

        grid-template-columns:
            1fr;

    }

    .tb-gallery{

        min-height:550px;

    }

    .tb-product-info{

        width:100%;

    }

    .tb-related-grid{

        grid-template-columns:
            repeat(3,1fr);

    }

}


/* =========================================================
   RESPONSIVE 768
========================================================= */

@media(max-width:768px){

    .tb-product-page{

        padding:
            15px 12px 50px;

    }


    .tb-product-title{

        font-size:25px;

    }


    .tb-gallery{

        grid-template-columns:
            70px 1fr;

        padding:12px;

        gap:10px;

        min-height:450px;

    }


    .tb-thumb{

        width:62px;

        height:62px;

    }


    .tb-main-image{

        min-height:430px;

    }


    .tb-product-info{

        padding:20px;

    }


    .tb-product-status{

        grid-template-columns:
            1fr;

    }


    .tb-status-item{

        border-right:0;

        border-bottom:
            1px solid var(--tb-border);

    }


    .tb-status-item:last-child{

        border-bottom:0;

    }


    .tb-buy-actions{

        grid-template-columns:
            1fr;

    }


    .tb-benefits{

        grid-template-columns:
            1fr;

    }


    .tb-benefits div{

        padding:8px 0;

    }


    .tb-tabs{

        overflow-x:auto;

        padding:0 10px;

    }


    .tb-tab{

        white-space:nowrap;

        padding:
            17px 15px;

    }


    .tb-tab-content{

        padding:20px;

    }


    .tb-spec-grid{

        grid-template-columns:
            1fr;

    }


    .tb-related-grid{

        grid-template-columns:
            repeat(2,1fr);

    }

}


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media(max-width:480px){

    .tb-breadcrumb{

        overflow:hidden;

        white-space:nowrap;

        font-size:11px;

    }


    .tb-gallery{

        grid-template-columns:
            1fr;

        min-height:auto;

    }


    .tb-thumbnails{

        order:2;

        flex-direction:row;

        overflow-x:auto;

    }


    .tb-thumb{

        flex:0 0 70px;

    }


    .tb-main-image{

        min-height:330px;

        order:1;

    }


    .tb-main-image img{

        width:95%;

        height:95%;

    }


    .tb-product-info{

        padding:16px;

    }


    .tb-product-title{

        font-size:22px;

    }


    .tb-rating-row{

        flex-wrap:wrap;

    }


    .tb-price{

        font-size:32px;

    }


    .tb-quantity{

        align-items:flex-start;

        flex-direction:column;

        gap:10px;

    }


    .tb-quantity-control{

        width:100%;

        justify-content:space-between;

    }


    .tb-quantity-control button{

        width:50%;

    }


    .tb-quantity-control span{

        width:50px;

    }


    .tb-section-header{

        align-items:flex-start;

        flex-direction:column;

        gap:12px;

    }


    .tb-section-header h2{

        font-size:23px;

    }


    .tb-related-grid{

        grid-template-columns:
            1fr 1fr;

        gap:10px;

    }


    .tb-related-image{

        height:150px;

    }


    .tb-related-info{

        padding:10px;

    }


    .tb-related-info h3{

        font-size:12px;

    }


    .tb-related-price{

        font-size:16px;

    }

}


/* =========================================================
   TITANBYTE - CARRITO
========================================================= */

:root{

    --tb-cart-primary:#1769ee;
    --tb-cart-primary-dark:#0f56c9;

    --tb-cart-green:#16a34a;
    --tb-cart-red:#ef4444;

    --tb-cart-dark:#111827;
    --tb-cart-text:#374151;
    --tb-cart-muted:#6b7280;

    --tb-cart-border:#e5e7eb;
    --tb-cart-bg:#f6f8fb;
    --tb-cart-white:#ffffff;

    --tb-cart-radius:18px;

}


/* =========================================================
   PÁGINA
========================================================= */

.tb-cart-page{

    width:100%;

    min-height:70vh;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );

    padding:35px 20px 80px;

}


.tb-cart-container{

    width:min(1400px,100%);

    margin:auto;

}


/* =========================================================
   HEADER
========================================================= */

.tb-cart-header{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    margin-bottom:30px;

}


.tb-cart-label{

    display:inline-flex;

    align-items:center;

    gap:7px;

    color:var(--tb-cart-primary);

    font-size:12px;

    font-weight:800;

    letter-spacing:.7px;

}


.tb-cart-header h1{

    margin:7px 0 5px;

    color:var(--tb-cart-dark);

    font-size:34px;

}


.tb-cart-header p{

    margin:0;

    color:var(--tb-cart-muted);

    font-size:14px;

}


.tb-cart-count{

    display:flex;

    align-items:center;

    gap:8px;

    background:#fff;

    border:1px solid var(--tb-cart-border);

    padding:10px 15px;

    border-radius:10px;

    color:var(--tb-cart-text);

    font-size:13px;

    font-weight:700;

}


/* =========================================================
   LAYOUT
========================================================= */

.tb-cart-layout{

    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        370px;

    gap:25px;

    align-items:start;

}


/* =========================================================
   PRODUCTOS
========================================================= */

.tb-cart-products{

    background:#fff;

    border:1px solid var(--tb-cart-border);

    border-radius:var(--tb-cart-radius);

    overflow:hidden;

}


.tb-cart-products-header{

    display:grid;

    grid-template-columns:1fr 160px;

    padding:17px 22px;

    background:#f8fafc;

    border-bottom:1px solid var(--tb-cart-border);

    color:#64748b;

    font-size:12px;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:.4px;

}


/* =========================================================
   ITEM
========================================================= */

.tb-cart-item{

    display:grid;

    grid-template-columns:
        120px
        minmax(200px,1fr)
        150px
        140px
        75px;

    gap:18px;

    align-items:center;

    padding:22px;

    border-bottom:1px solid var(--tb-cart-border);

    transition:.2s;

}


.tb-cart-item:hover{

    background:#fcfdff;

}


/* =========================================================
   IMAGEN
========================================================= */

.tb-cart-image{

    width:120px;

    height:120px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f8fafc;

    border-radius:13px;

    overflow:hidden;

}


.tb-cart-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.25s;

}


.tb-cart-image:hover img{

    transform:scale(1.06);

}


/* =========================================================
   INFORMACIÓN
========================================================= */

.tb-cart-category{

    display:block;

    color:var(--tb-cart-primary);

    font-size:10px;

    font-weight:800;

    text-transform:uppercase;

    margin-bottom:6px;

}


.tb-cart-info h3{

    margin:0 0 8px;

    color:var(--tb-cart-dark);

    font-size:15px;

    line-height:1.4;

}


.tb-cart-code{

    color:#94a3b8;

    font-size:11px;

}


.tb-cart-stock{

    display:flex;

    align-items:center;

    gap:5px;

    margin-top:10px;

    color:#16a34a;

    font-size:11px;

    font-weight:700;

}


/* =========================================================
   CANTIDAD
========================================================= */

.tb-cart-quantity{

    display:flex;

    flex-direction:column;

    gap:8px;

}


.tb-cart-quantity > span{

    color:#94a3b8;

    font-size:10px;

    text-transform:uppercase;

    font-weight:700;

}


.tb-quantity-form{

    display:flex;

    align-items:center;

    width:max-content;

    border:1px solid var(--tb-cart-border);

    border-radius:9px;

    overflow:hidden;

}


.tb-quantity-form button{

    border:0;

    cursor:pointer;

}


.tb-qty-minus,
.tb-qty-plus{

    width:32px;

    height:36px;

    background:#f8fafc;

    color:#374151;

    font-size:17px;

}


.tb-qty-minus:hover,
.tb-qty-plus:hover{

    background:#eaf2ff;

    color:var(--tb-cart-primary);

}


.tb-qty-value{

    min-width:38px;

    text-align:center;

    font-size:13px;

    font-weight:800;

}


.tb-hidden-quantity{

    position:absolute;

    opacity:0;

    pointer-events:none;

}


.tb-update-cart{

    width:35px;

    height:36px;

    background:#eff6ff;

    color:var(--tb-cart-primary);

    font-size:12px;

}


/* =========================================================
   PRECIO
========================================================= */

.tb-cart-price{

    display:flex;

    flex-direction:column;

    align-items:flex-end;

}


.tb-cart-price > span{

    display:none;

}


.tb-cart-price strong{

    color:var(--tb-cart-dark);

    font-size:16px;

}


.tb-cart-price small{

    margin-top:5px;

    color:#94a3b8;

    font-size:10px;

}


/* =========================================================
   ACCIONES
========================================================= */

.tb-cart-actions{

    display:flex;

    flex-direction:column;

    gap:8px;

}


.tb-cart-actions form{

    margin:0;

}


.tb-cart-buy,
.tb-cart-delete{

    width:38px;

    height:38px;

    border-radius:9px;

    cursor:pointer;

    transition:.2s;

}


.tb-cart-buy{

    border:1px solid #bfdbfe;

    background:#eff6ff;

    color:var(--tb-cart-primary);

}


.tb-cart-buy:hover{

    background:var(--tb-cart-primary);

    color:#fff;

}


.tb-cart-delete{

    border:1px solid #fecaca;

    background:#fff5f5;

    color:var(--tb-cart-red);

}


.tb-cart-delete:hover{

    background:var(--tb-cart-red);

    color:#fff;

}


/* =========================================================
   FOOTER PRODUCTOS
========================================================= */

.tb-cart-footer{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:20px 22px;

}


.tb-continue-shopping{

    display:flex;

    align-items:center;

    gap:8px;

    color:var(--tb-cart-primary);

    text-decoration:none;

    font-size:13px;

    font-weight:800;

}


.tb-cart-footer > span{

    color:#94a3b8;

    font-size:11px;

}


/* =========================================================
   RESUMEN
========================================================= */

.tb-cart-summary{

    background:#fff;

    border:1px solid var(--tb-cart-border);

    border-radius:var(--tb-cart-radius);

    padding:24px;

    position:sticky;

    top:20px;

    box-shadow:
        0 10px 30px rgba(15,23,42,.06);

}


.tb-summary-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding-bottom:20px;

    border-bottom:1px solid var(--tb-cart-border);

}


.tb-summary-header span{

    color:var(--tb-cart-primary);

    font-size:10px;

    font-weight:800;

    letter-spacing:1px;

}


.tb-summary-header h2{

    margin:5px 0 0;

    font-size:20px;

    color:var(--tb-cart-dark);

}


.tb-summary-header > i{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    background:#eff6ff;

    color:var(--tb-cart-primary);

}


/* =========================================================
   SUMMARY ROW
========================================================= */

.tb-summary-products,
.tb-summary-row{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:16px 0;

    font-size:13px;

}


.tb-summary-products span,
.tb-summary-row span{

    color:var(--tb-cart-muted);

}


.tb-summary-products strong,
.tb-summary-row strong{

    color:var(--tb-cart-dark);

}


.tb-free{

    color:#16a34a !important;

    font-size:11px;

}


.tb-summary-line{

    height:1px;

    background:var(--tb-cart-border);

}


.tb-summary-total{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:20px 0;

}


.tb-summary-total span{

    color:var(--tb-cart-dark);

    font-size:15px;

    font-weight:800;

}


.tb-summary-total strong{

    color:var(--tb-cart-primary);

    font-size:26px;

}


/* =========================================================
   CHECKOUT
========================================================= */

.tb-checkout{

    width:100%;

    min-height:53px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    border-radius:10px;

    background:var(--tb-cart-primary);

    color:#fff;

    text-decoration:none;

    font-size:13px;

    font-weight:800;

    transition:.25s;

}


.tb-checkout:hover{

    background:var(--tb-cart-primary-dark);

    transform:translateY(-2px);

    color:#fff;

}


/* =========================================================
   SECURE
========================================================= */

.tb-secure-payment{

    display:flex;

    align-items:center;

    gap:10px;

    margin-top:18px;

    padding:13px;

    border-radius:10px;

    background:#f0fdf4;

}


.tb-secure-payment > i{

    color:#16a34a;

    font-size:20px;

}


.tb-secure-payment div{

    display:flex;

    flex-direction:column;

    gap:2px;

}


.tb-secure-payment strong{

    color:#166534;

    font-size:11px;

}


.tb-secure-payment span{

    color:#4b5563;

    font-size:9px;

}


/* =========================================================
   SHIPPING
========================================================= */

.tb-shipping-info{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:8px;

    margin-top:12px;

}


.tb-shipping-info div{

    display:flex;

    align-items:center;

    gap:7px;

    padding:10px;

    border:1px solid var(--tb-cart-border);

    border-radius:9px;

    color:#64748b;

    font-size:9px;

}


.tb-shipping-info i{

    color:var(--tb-cart-primary);

}


/* =========================================================
   CARRITO VACÍO
========================================================= */

.tb-cart-empty{

    background:#fff;

    border:1px solid var(--tb-cart-border);

    border-radius:var(--tb-cart-radius);

    min-height:450px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    text-align:center;

    padding:40px;

}


.tb-empty-icon{

    width:90px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#eff6ff;

    color:var(--tb-cart-primary);

    font-size:36px;

    margin-bottom:20px;

}


.tb-cart-empty h2{

    margin:0 0 8px;

    color:var(--tb-cart-dark);

}


.tb-cart-empty p{

    color:var(--tb-cart-muted);

    margin-bottom:25px;

}


.tb-empty-button{

    display:flex;

    align-items:center;

    gap:8px;

    padding:13px 20px;

    border-radius:9px;

    background:var(--tb-cart-primary);

    color:#fff;

    text-decoration:none;

    font-size:13px;

    font-weight:800;

}


/* =========================================================
   WHATSAPP
========================================================= */

.tb-cart-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#25d366;

    color:#fff;

    font-size:27px;

    box-shadow:
        0 8px 25px rgba(37,211,102,.35);

    z-index:1000;

    text-decoration:none;

    transition:.25s;

}


.tb-cart-whatsapp:hover{

    transform:scale(1.08);

    color:#fff;

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1150px){

    .tb-cart-layout{

        grid-template-columns:
            minmax(0,1fr)
            320px;

    }


    .tb-cart-item{

        grid-template-columns:
            100px
            minmax(150px,1fr)
            130px
            110px
            60px;

        gap:12px;

        padding:17px;

    }


    .tb-cart-image{

        width:100px;

        height:100px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

    .tb-cart-layout{

        grid-template-columns:1fr;

    }


    .tb-cart-summary{

        position:relative;

        top:auto;

    }


    .tb-cart-item{

        grid-template-columns:
            100px 1fr 120px 50px;

    }


    .tb-cart-quantity{

        grid-column:2;

    }


    .tb-cart-price{

        grid-column:3;

        grid-row:1;

    }


    .tb-cart-actions{

        grid-column:4;

        grid-row:1;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:650px){

    .tb-cart-page{

        padding:
            20px 12px 60px;

    }


    .tb-cart-header{

        align-items:flex-start;

        flex-direction:column;

        gap:15px;

    }


    .tb-cart-header h1{

        font-size:27px;

    }


    .tb-cart-products-header{

        display:none;

    }


    .tb-cart-item{

        grid-template-columns:
            85px 1fr;

        gap:12px;

        padding:15px;

    }


    .tb-cart-image{

        width:85px;

        height:85px;

        grid-row:
            span 3;

    }


    .tb-cart-info{

        grid-column:2;

    }


    .tb-cart-info h3{

        font-size:13px;

    }


    .tb-cart-quantity{

        grid-column:2;

    }


    .tb-cart-price{

        grid-column:2;

        grid-row:auto;

        align-items:flex-start;

    }


    .tb-cart-price > span{

        display:block;

        color:#94a3b8;

        font-size:9px;

        text-transform:uppercase;

        margin-bottom:3px;

    }


    .tb-cart-actions{

        grid-column:2;

        grid-row:auto;

        flex-direction:row;

    }


    .tb-cart-footer{

        flex-direction:column;

        align-items:flex-start;

        gap:12px;

    }


    .tb-summary-total strong{

        font-size:23px;

    }


    .tb-shipping-info{

        grid-template-columns:1fr;

    }


    .tb-cart-whatsapp{

        right:15px;

        bottom:15px;

        width:52px;

        height:52px;

        font-size:24px;

    }

}


/* =========================================================
   MOBILE PEQUEÑO
========================================================= */

@media(max-width:400px){

    .tb-cart-item{

        grid-template-columns:
            70px 1fr;

    }


    .tb-cart-image{

        width:70px;

        height:70px;

    }


    .tb-cart-header h1{

        font-size:23px;

    }


    .tb-cart-count{

        font-size:11px;

    }

}

/* =========================================================
   TITANBYTE / MUNDO TECNOLÓGICO
   CHECKOUT
========================================================= */

:root{

    --tb-blue:#1769ee;
    --tb-blue-dark:#0f56c9;

    --tb-green:#16a34a;

    --tb-dark:#111827;
    --tb-text:#374151;
    --tb-muted:#64748b;

    --tb-border:#e5e7eb;

    --tb-bg:#f7f9fc;

    --tb-white:#ffffff;

}


/* =========================================================
   GENERAL
========================================================= */

*{

    box-sizing:border-box;

}


body{

    margin:0;

    font-family:
        'Montserrat',
        Arial,
        sans-serif;

    background:var(--tb-bg);

    color:var(--tb-text);

}


.tb-checkout-container{

    width:
        min(1380px, calc(100% - 40px));

    margin:auto;

}


/* =========================================================
   HEADER
========================================================= */

.tb-checkout-header{

    background:#fff;

    border-bottom:1px solid var(--tb-border);

    padding:30px 0;

}


.tb-checkout-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

}


.tb-checkout-title span{

    display:inline-flex;

    align-items:center;

    gap:7px;

    color:var(--tb-blue);

    font-size:11px;

    font-weight:800;

    letter-spacing:.7px;

}


.tb-checkout-title h1{

    margin:7px 0 5px;

    color:var(--tb-dark);

    font-size:32px;

    font-weight:800;

}


.tb-checkout-title p{

    margin:0;

    color:var(--tb-muted);

    font-size:13px;

}


/* =========================================================
   STEPS
========================================================= */

.tb-checkout-steps{

    display:flex;

    align-items:center;

}


.tb-step{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:5px;

}


.tb-step span{

    width:34px;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#e5e7eb;

    color:#64748b;

    font-size:12px;

    font-weight:800;

}


.tb-step p{

    margin:0;

    color:#94a3b8;

    font-size:9px;

    font-weight:700;

}


.tb-step.active span{

    background:var(--tb-blue);

    color:#fff;

}


.tb-step.active p{

    color:var(--tb-blue);

}


.tb-step-line{

    width:55px;

    height:1px;

    background:#e5e7eb;

    margin:
        0 10px;

}


/* =========================================================
   PAGE
========================================================= */

.tb-checkout-page{

    padding:
        35px 0 80px;

}


.tb-checkout-grid{

    display:grid;

    grid-template-columns:
        2fr 1fr;

    gap:25px;

    align-items:start;

}


/* =========================================================
   CARD FORMULARIO
========================================================= */

.tb-checkout-form{

    background:#fff;

    border:1px solid var(--tb-border);

    border-radius:18px;

    padding:28px;

}


.tb-card-title{

    display:flex;

    align-items:center;

    gap:13px;

    padding-bottom:22px;

    border-bottom:1px solid var(--tb-border);

}


.tb-card-icon{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    background:#eff6ff;

    color:var(--tb-blue);

    font-size:18px;

}


.tb-card-title span{

    color:var(--tb-blue);

    font-size:9px;

    font-weight:800;

    letter-spacing:1px;

}


.tb-card-title h2{

    margin:4px 0 0;

    color:var(--tb-dark);

    font-size:20px;

}


/* =========================================================
   FORM SECTION
========================================================= */

.tb-form-section{

    padding:
        25px 0;

    border-bottom:1px solid var(--tb-border);

}


.tb-form-section h3{

    display:flex;

    align-items:center;

    gap:8px;

    margin:
        0 0 20px;

    color:var(--tb-dark);

    font-size:14px;

}


.tb-form-section h3 i{

    color:var(--tb-blue);

}


.tb-form-grid{

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:18px;

}


.tb-field-full{

    grid-column:
        1 / -1;

}


.tb-field label{

    display:block;

    margin-bottom:7px;

    color:#475569;

    font-size:11px;

    font-weight:700;

}


.tb-input{

    height:48px;

    display:flex;

    align-items:center;

    gap:10px;

    border:1px solid #dbe1e8;

    border-radius:10px;

    padding:0 13px;

    background:#fff;

    transition:.2s;

}


.tb-input:focus-within{

    border-color:var(--tb-blue);

    box-shadow:
        0 0 0 3px
        rgba(23,105,238,.08);

}


.tb-input i{

    color:#94a3b8;

    font-size:14px;

}


.tb-input input{

    width:100%;

    height:100%;

    border:0;

    outline:0;

    background:transparent;

    color:var(--tb-dark);

    font-family:inherit;

    font-size:12px;

}


.tb-input input::placeholder{

    color:#a1aab7;

}


.tb-field textarea{

    width:100%;

    min-height:110px;

    resize:vertical;

    border:1px solid #dbe1e8;

    border-radius:10px;

    padding:14px;

    outline:none;

    font-family:inherit;

    font-size:12px;

}


.tb-field textarea:focus{

    border-color:var(--tb-blue);

    box-shadow:
        0 0 0 3px
        rgba(23,105,238,.08);

}


/* =========================================================
   CUENTA
========================================================= */

.tb-account-box{

    padding-top:24px;

}


.tb-check{

    display:flex;

    align-items:flex-start;

    gap:10px;

    cursor:pointer;

}


.tb-check input{

    display:none;

}


.tb-check > span{

    width:18px;

    height:18px;

    flex:0 0 18px;

    border:1px solid #cbd5e1;

    border-radius:5px;

    margin-top:2px;

    position:relative;

}


.tb-check input:checked + span{

    background:var(--tb-blue);

    border-color:var(--tb-blue);

}


.tb-check input:checked + span::after{

    content:"✓";

    position:absolute;

    left:3px;

    top:-2px;

    color:#fff;

    font-size:14px;

    font-weight:800;

}


.tb-check div{

    display:flex;

    flex-direction:column;

    gap:3px;

}


.tb-check strong{

    color:var(--tb-dark);

    font-size:12px;

}


.tb-check small{

    color:#94a3b8;

    font-size:10px;

}


.tb-password{

    display:none;

    margin-top:15px;

    max-width:450px;

}


.tb-password.show{

    display:block;

}


/* =========================================================
   RESUMEN
========================================================= */

.tb-order-card{

    position:sticky;

    top:20px;

    background:#fff;

    border:1px solid var(--tb-border);

    border-radius:18px;

    padding:25px;

    box-shadow:
        0 15px 35px
        rgba(15,23,42,.06);

}


.tb-order-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-bottom:20px;

    border-bottom:1px solid var(--tb-border);

}


.tb-order-header span{

    color:var(--tb-blue);

    font-size:9px;

    font-weight:800;

    letter-spacing:1px;

}


.tb-order-header h2{

    margin:5px 0 0;

    color:var(--tb-dark);

    font-size:19px;

}


.tb-order-icon{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:11px;

    background:#eff6ff;

    color:var(--tb-blue);

}


/* =========================================================
   PRODUCTOS
========================================================= */

.tb-order-products{

    max-height:400px;

    overflow-y:auto;

}


.tb-order-product{

    display:grid;

    grid-template-columns:55px 1fr auto;

    gap:12px;

    align-items:center;

    padding:15px 0;

    border-bottom:1px solid #f1f5f9;

}


.tb-order-image{

    width:55px;

    height:55px;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:9px;

    background:#f8fafc;

    overflow:visible;

}


.tb-order-image img{

    width:100%;

    height:100%;

    object-fit:contain;

}


.tb-order-image span{

    position:absolute;

    top:-6px;

    right:-6px;

    min-width:18px;

    height:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--tb-blue);

    color:#fff;

    font-size:9px;

    font-weight:800;

}


.tb-order-info{

    min-width:0;

}


.tb-order-info h3{

    margin:0 0 5px;

    color:var(--tb-dark);

    font-size:11px;

    line-height:1.4;

    display:
        -webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}


.tb-order-info span{

    color:#94a3b8;

    font-size:9px;

}


.tb-order-product > strong{

    color:var(--tb-dark);

    font-size:11px;

    white-space:nowrap;

}


/* =========================================================
   TOTALES
========================================================= */

.tb-order-total{

    padding-top:15px;

}


.tb-total-row{

    display:flex;

    justify-content:space-between;

    padding:8px 0;

}


.tb-total-row span{

    color:#64748b;

    font-size:11px;

}


.tb-total-row strong{

    color:var(--tb-dark);

    font-size:11px;

}


.tb-free{

    color:var(--tb-green) !important;

}


.tb-total-line{

    height:1px;

    background:var(--tb-border);

    margin:8px 0;

}


.tb-final-total{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:12px 0 18px;

}


.tb-final-total span{

    color:var(--tb-dark);

    font-size:14px;

    font-weight:800;

}


.tb-final-total strong{

    color:var(--tb-blue);

    font-size:24px;

}


/* =========================================================
   BOTÓN PAGAR
========================================================= */

.tb-pay-button{

    width:100%;

    min-height:54px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    border:0;

    border-radius:10px;

    background:
        linear-gradient(
            135deg,
            #1769ee,
            #0f56c9
        );

    color:#fff;

    font-family:inherit;

    font-size:12px;

    font-weight:800;

    cursor:pointer;

    transition:.25s;

}


.tb-pay-button:hover{

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 20px
        rgba(23,105,238,.25);

}


/* =========================================================
   SEGURIDAD
========================================================= */

.tb-security{

    display:flex;

    align-items:center;

    gap:10px;

    margin-top:15px;

    padding:13px;

    background:#f0fdf4;

    border-radius:10px;

}


.tb-security-icon{

    width:35px;

    height:35px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#16a34a;

    font-size:18px;

}


.tb-security strong{

    color:#166534;

    font-size:10px;

}


.tb-security p{

    margin:2px 0 0;

    color:#64748b;

    font-size:9px;

}


/* =========================================================
   BENEFICIOS
========================================================= */

.tb-order-benefits{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:8px;

    margin-top:12px;

}


.tb-order-benefits div{

    display:flex;

    align-items:center;

    gap:7px;

    padding:10px;

    border:1px solid var(--tb-border);

    border-radius:8px;

}


.tb-order-benefits i{

    color:var(--tb-blue);

}


.tb-order-benefits span{

    color:#64748b;

    font-size:8px;

}


/* =========================================================
   WHATSAPP
========================================================= */

.tb-checkout-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:56px;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#25d366;

    color:#fff;

    font-size:27px;

    box-shadow:
        0 8px 25px
        rgba(37,211,102,.35);

    z-index:999;

    text-decoration:none;

}


.tb-checkout-whatsapp:hover{

    color:#fff;

    transform:scale(1.08);

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1000px){

    .tb-checkout-grid{

        grid-template-columns:1fr;

    }


    .tb-order-card{

        position:relative;

        top:auto;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:700px){

    .tb-checkout-container{

        width:
            min(
                100% - 24px,
                600px
            );

    }


    .tb-checkout-header
    .tb-checkout-container{

        flex-direction:column;

        align-items:flex-start;

    }


    .tb-checkout-steps{

        width:100%;

        justify-content:center;

    }


    .tb-step-line{

        flex:1;

        max-width:70px;

    }


    .tb-form-grid{

        grid-template-columns:1fr;

    }


    .tb-field-full{

        grid-column:auto;

    }


    .tb-checkout-form{

        padding:20px;

    }


    .tb-order-card{

        padding:20px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:480px){

    .tb-checkout-header{

        padding:22px 0;

    }


    .tb-checkout-title h1{

        font-size:25px;

    }


    .tb-checkout-title p{

        font-size:11px;

    }


    .tb-checkout-steps{

        justify-content:space-between;

    }


    .tb-step-line{

        max-width:35px;

        margin:
            0 5px;

    }


    .tb-step p{

        font-size:8px;

    }


    .tb-checkout-page{

        padding:
            18px 0 60px;

    }


    .tb-checkout-form{

        border-radius:13px;

        padding:16px;

    }


    .tb-card-title h2{

        font-size:17px;

    }


    .tb-form-section{

        padding:20px 0;

    }


    .tb-order-card{

        border-radius:13px;

        padding:16px;

    }


    .tb-order-product{

        grid-template-columns:
            48px 1fr auto;

        gap:9px;

    }


    .tb-order-image{

        width:48px;

        height:48px;

    }


    .tb-order-product > strong{

        font-size:10px;

    }


    .tb-final-total strong{

        font-size:21px;

    }


    .tb-order-benefits{

        grid-template-columns:1fr;

    }


    .tb-checkout-whatsapp{

        width:50px;

        height:50px;

        right:15px;

        bottom:15px;

        font-size:23px;

    }

}

:root{

    --vp-blue:#1769ee;
    --vp-blue-dark:#0f56c9;

    --vp-green:#16a34a;

    --vp-dark:#111827;
    --vp-text:#374151;
    --vp-muted:#64748b;

    --vp-border:#e5e7eb;

    --vp-bg:#f6f8fb;

    --vp-white:#fff;

}


/* =========================================
   GENERAL
========================================= */

*{
    box-sizing:border-box;
}


body{

    margin:0;

    background:var(--vp-bg);

    color:var(--vp-text);

    font-family:
        'Montserrat',
        Arial,
        sans-serif;

}


.tb-verify-container{

    width:
        min(1380px, calc(100% - 40px));

    margin:auto;

}


/* =========================================
   HEADER
========================================= */

.tb-verify-header{

    background:#fff;

    border-bottom:
        1px solid var(--vp-border);

    padding:30px 0;

}


.tb-verify-header
.tb-verify-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

}


.tb-verify-heading span{

    display:flex;

    align-items:center;

    gap:7px;

    color:var(--vp-blue);

    font-size:10px;

    font-weight:800;

    letter-spacing:1px;

}


.tb-verify-heading h1{

    margin:7px 0 5px;

    color:var(--vp-dark);

    font-size:32px;

    font-weight:800;

}


.tb-verify-heading p{

    margin:0;

    color:var(--vp-muted);

    font-size:12px;

}


/* =========================================
   STEPS
========================================= */

.tb-verify-steps{

    display:flex;

    align-items:center;

    gap:10px;

}


.tb-verify-steps > i{

    color:#cbd5e1;

    font-size:10px;

}


.tb-verify-step{

    display:flex;

    align-items:center;

    flex-direction:column;

    gap:5px;

}


.tb-verify-step div{

    width:34px;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#e5e7eb;

    color:#64748b;

    font-size:11px;

    font-weight:800;

}


.tb-verify-step span{

    color:#94a3b8;

    font-size:8px;

    font-weight:700;

}


.tb-verify-step.active div{

    background:var(--vp-blue);

    color:#fff;

}


.tb-verify-step.active span{

    color:var(--vp-blue);

}


/* =========================================
   PAGE
========================================= */

.tb-verify-page{

    padding:35px 0 80px;

}


.tb-verify-grid{

    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        430px;

    gap:25px;

    align-items:start;

}


/* =========================================
   CLIENT CARD
========================================= */

.tb-client-card{

    background:#fff;

    border:1px solid var(--vp-border);

    border-radius:18px;

    padding:28px;

}


.tb-section-heading{

  

    align-items:center;

    gap:13px;

    padding-bottom:22px;

    border-bottom:
        1px solid var(--vp-border);

}


.tb-section-icon{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eff6ff;

    border-radius:12px;

    color:var(--vp-blue);

}


.tb-section-heading span{

    color:var(--vp-blue);

    font-size:11px;

    font-weight:800;

    letter-spacing:1px;

}


.tb-section-heading h2{

    margin:4px 0 0;

    color:var(--vp-dark);

    font-size:45px;

}


/* =========================================
   FORM
========================================= */

.tb-form-block{

    padding:25px 0;

    border-bottom:
        1px solid var(--vp-border);

}


.tb-form-block h3{

    display:flex;

    align-items:center;

    gap:8px;

    margin:0 0 20px;

    color:var(--vp-dark);

    font-size:13px;

}


.tb-form-block h3 i{

    color:var(--vp-blue);

}


.tb-form-grid{

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:18px;

}


.tb-field-full{

    grid-column:
        1 / -1;

}


.tb-field label{

    display:block;

    margin-bottom:7px;

    color:#475569;

    font-size:10px;

    font-weight:700;

}


.tb-input{

    height:48px;

    display:flex;

    align-items:center;

    gap:10px;

    padding:0 13px;

    border:
        1px solid #dbe1e8;

    border-radius:10px;

    background:#fff;

    transition:.2s;

}


.tb-input:focus-within{

    border-color:var(--vp-blue);

    box-shadow:
        0 0 0 3px
        rgba(23,105,238,.08);

}


.tb-input i{

    color:#94a3b8;

    font-size:13px;

}


.tb-input input{

    width:100%;

    height:100%;

    border:0;

    outline:0;

    background:transparent;

    font-family:inherit;

    color:var(--vp-dark);

    font-size:11px;

}


.tb-input input::placeholder{

    color:#a1aab7;

}


.tb-field textarea{

    width:100%;

    min-height:105px;

    resize:vertical;

    border:
        1px solid #dbe1e8;

    border-radius:10px;

    outline:0;

    padding:13px;

    font-family:inherit;

    font-size:11px;

}


.tb-field textarea:focus{

    border-color:var(--vp-blue);

    box-shadow:
        0 0 0 3px
        rgba(23,105,238,.08);

}


.tb-counter{

    display:block;

    margin-top:5px;

    color:#94a3b8;

    font-size:8px;

}


/* =========================================
   ACCOUNT
========================================= */

.tb-account{

    padding-top:24px;

}


.tb-account-check{

    display:flex;

    align-items:flex-start;

    gap:10px;

    cursor:pointer;

}


.tb-account-check input{

    display:none;

}


.tb-account-check > span{

    width:18px;

    height:18px;

    flex:0 0 18px;

    border:
        1px solid #cbd5e1;

    border-radius:5px;

}


.tb-account-check input:checked + span{

    background:var(--vp-blue);

    border-color:var(--vp-blue);

}


.tb-account-check input:checked + span::after{

    content:"✓";

    display:block;

    color:#fff;

    text-align:center;

    font-size:12px;

    font-weight:800;

}


.tb-account-check div{

    display:flex;

    flex-direction:column;

    gap:3px;

}


.tb-account-check strong{

    color:var(--vp-dark);

    font-size:11px;

}


.tb-account-check small{

    color:#94a3b8;

    font-size:9px;

}


.tb-password-box{

    display:none;

    max-width:450px;

    margin-top:15px;

}


.tb-password-box.active{

    display:block;

}


.tb-password-box label{

    display:block;

    margin-bottom:7px;

    color:#475569;

    font-size:10px;

    font-weight:700;

}


/* =========================================
   SUMMARY
========================================= */

.tb-summary-card{

    position:sticky;

    top:20px;

    background:#fff;

    border:
        1px solid var(--vp-border);

    border-radius:18px;

    padding:24px;

    box-shadow:
        0 15px 35px
        rgba(15,23,42,.06);

}


.tb-summary-heading{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding-bottom:20px;

    border-bottom:
        1px solid var(--vp-border);

}


.tb-summary-heading span{

    color:var(--vp-blue);

    font-size:9px;

    font-weight:800;

    letter-spacing:1px;

}


.tb-summary-heading h2{

    margin:4px 0 0;

    color:var(--vp-dark);

    font-size:19px;

}


.tb-summary-icon{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eff6ff;

    border-radius:11px;

    color:var(--vp-blue);

}


/* =========================================
   COUNT
========================================= */

.tb-products-count{

    display:flex;

    justify-content:space-between;

    padding:15px 0;

}


.tb-products-count span{

    color:#64748b;

    font-size:10px;

}


.tb-products-count strong{

    color:var(--vp-dark);

    font-size:11px;

}


/* =========================================
   PRODUCTS
========================================= */

.tb-products-list{

    

   

}


.tb-summary-product{

    display:grid;

    grid-template-columns:
        55px 1fr auto;

    gap:11px;

    align-items:center;

    padding:14px 0;

    border-bottom:
        1px solid #f1f5f9;

}


.tb-product-image{

    position:relative;

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f8fafc;

    border-radius:9px;

}


.tb-product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

}


.tb-product-image span{

    position:absolute;

    top:-6px;

    right:-6px;

    width:18px;

    height:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--vp-blue);

    border-radius:50%;

    color:#fff;

    font-size:8px;

    font-weight:800;

}


.tb-product-info{

    min-width:0;

}


.tb-product-info h3{

    margin:0 0 4px;

    color:var(--vp-dark);

    font-size:10px;

    line-height:1.4;

    display:
        -webkit-box;

    -webkit-box-orient:vertical;

    -webkit-line-clamp:2;

    overflow:hidden;

}


.tb-product-info p{

    margin:0;

    color:#94a3b8;

    font-size:8px;

}


.tb-summary-product > strong{

    color:var(--vp-dark);

    font-size:10px;

    white-space:nowrap;

}


/* =========================================
   TOTAL
========================================= */

.tb-summary-total{

    padding-top:12px;

}


.tb-summary-row{

    display:flex;

    justify-content:space-between;

    padding:8px 0;

}


.tb-summary-row span{

    color:#64748b;

    font-size:10px;

}


.tb-summary-row strong{

    color:var(--vp-dark);

    font-size:10px;

}


.tb-free{

    color:var(--vp-green) !important;

}


.tb-summary-divider{

    height:1px;

    background:var(--vp-border);

    margin:8px 0;

}


.tb-total-final{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:13px 0 18px;

}


.tb-total-final span{

    color:var(--vp-dark);

    font-size:14px;

    font-weight:800;

}


.tb-total-final strong{

    color:var(--vp-blue);

    font-size:14px;

}


/* =========================================
   BUTTON
========================================= */

.tb-confirm-button{

    width:100%;

    min-height:54px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    border:0;

    border-radius:10px;

    background:
        linear-gradient(
            135deg,
            #1769ee,
            #0f56c9
        );

    color:#fff;

    font-family:inherit;

    font-size:11px;

    font-weight:800;

    cursor:pointer;

    transition:.25s;

}


.tb-confirm-button:hover{

    transform:translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(23,105,238,.25);

}


/* =========================================
   SECURITY
========================================= */

.tb-security-box{

    display:flex;

    align-items:center;

    gap:10px;

    margin-top:15px;

    padding:13px;

    border-radius:10px;

    background:#f0fdf4;

}


.tb-security-box > i{

    color:#16a34a;

    font-size:19px;

}


.tb-security-box strong{

    color:#166534;

    font-size:10px;

}


.tb-security-box p{

    margin:3px 0 0;

    color:#64748b;

    font-size:8px;

}


/* =========================================
   BENEFICIOS
========================================= */

.tb-benefits{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:8px;

    margin-top:10px;

}


.tb-benefits div{

    display:flex;

    align-items:center;

    gap:7px;

    padding:10px;

    border:
        1px solid var(--vp-border);

    border-radius:8px;

}


.tb-benefits i{

    color:var(--vp-blue);

}


.tb-benefits span{

    color:#64748b;

    font-size:8px;

}


/* =========================================
   WHATSAPP
========================================= */

.tb-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:56px;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#25d366;

    color:#fff;

    font-size:27px;

    text-decoration:none;

    box-shadow:
        0 8px 25px
        rgba(37,211,102,.35);

    z-index:999;

}


.tb-whatsapp:hover{

    color:#fff;

    transform:scale(1.08);

}


/* =========================================
   TABLET
========================================= */

@media(max-width:1000px){

    .tb-verify-grid{

        grid-template-columns:1fr;

    }


    .tb-summary-card{

        position:relative;

        top:auto;

    }

}


/* =========================================
   TABLET
========================================= */

@media(max-width:700px){

    .tb-verify-container{

        width:
            calc(100% - 24px);

    }


    .tb-verify-header
    .tb-verify-container{

        flex-direction:column;

        align-items:flex-start;

    }


    .tb-verify-steps{

        width:100%;

        justify-content:center;

    }


    .tb-client-card{

        padding:20px;

    }


    .tb-form-grid{

        grid-template-columns:1fr;

    }


    .tb-field-full{

        grid-column:auto;

    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:480px){

    .tb-verify-header{

        padding:22px 0;

    }


    .tb-verify-heading h1{

        font-size:25px;

    }


    .tb-verify-heading p{

        font-size:10px;

    }


    .tb-verify-steps{

        justify-content:space-between;

    }


    .tb-verify-steps > i{

        font-size:8px;

    }


    .tb-client-card{

        border-radius:13px;

        padding:16px;

    }


    .tb-summary-card{

        border-radius:13px;

        padding:16px;

    }


    .tb-section-heading h2{

        font-size:17px;

    }


    .tb-form-block{

        padding:20px 0;

    }


    .tb-summary-product{

        grid-template-columns:
            48px 1fr auto;

    }


    .tb-product-image{

        width:48px;

        height:48px;

    }


    .tb-total-final strong{

        font-size:21px;

    }


    .tb-benefits{

        grid-template-columns:1fr;

    }


    .tb-whatsapp{

        width:50px;

        height:50px;

        right:15px;

        bottom:15px;

        font-size:23px;

    }

}

/* =========================================================
   PAGOS FINAL - MUNDO TECNOLÓGICO
   ========================================================= */

:root {
    --tb-primary: #0d6efd;
    --tb-primary-dark: #0755c9;
    --tb-dark: #111827;
    --tb-text: #1f2937;
    --tb-muted: #6b7280;
    --tb-border: #e5e7eb;
    --tb-bg: #f5f7fb;
    --tb-white: #ffffff;
    --tb-success: #16a34a;
    --tb-radius: 18px;
    --tb-shadow: 0 10px 35px rgba(15, 23, 42, .08);
}


/* =========================================================
   GENERAL
   ========================================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--tb-bg);
    color: var(--tb-text);
    font-family: 'Montserrat', sans-serif;
}

button,
input,
textarea {
    font-family: inherit;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.tb-payment-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* =========================================================
   HEADER PAGOS
   ========================================================= */

.tb-payment-header {
    background: var(--tb-white);
    border-bottom: 1px solid var(--tb-border);
    padding: 35px 0;
}

.tb-payment-header .tb-payment-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.tb-payment-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--tb-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;

    margin-bottom: 8px;
}

.tb-payment-label i {
    font-size: 14px;
}

.tb-payment-header h1 {
    margin: 0;

    color: var(--tb-dark);

    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}

.tb-payment-header p {
    margin: 8px 0 0;

    color: var(--tb-muted);

    font-size: 14px;
}


/* =========================================================
   REFERENCIA
   ========================================================= */

.tb-payment-reference {
    min-width: 220px;

    padding: 16px 20px;

    background: #f8fafc;

    border: 1px solid var(--tb-border);
    border-radius: 14px;

    text-align: right;
}

.tb-payment-reference small {
    display: block;

    margin-bottom: 5px;

    color: var(--tb-muted);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tb-payment-reference strong {
    display: block;

    color: var(--tb-dark);

    font-size: 13px;

    word-break: break-all;
}


/* =========================================================
   PAGINA
   ========================================================= */

.tb-payment-page {
    padding: 45px 0 70px;
}


/* =========================================================
   GRID
   ========================================================= */

.tb-payment-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 430px);

    gap: 28px;

    align-items: start;
}


/* =========================================================
   TARJETAS
   ========================================================= */

.tb-payment-order,
.tb-payment-method {
    background: var(--tb-white);

    border: 1px solid var(--tb-border);
    border-radius: var(--tb-radius);

    box-shadow: var(--tb-shadow);
}


/* =========================================================
   TITULOS
   ========================================================= */

.tb-payment-title {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 25px 28px;

    border-bottom: 1px solid var(--tb-border);
}

.tb-payment-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf2ff;

    border-radius: 13px;

    color: var(--tb-primary);

    font-size: 18px;
}

.tb-payment-title span {
    display: block;

    color: var(--tb-primary);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;

    margin-bottom: 4px;
}

.tb-payment-title h2 {
    margin: 0;

    color: var(--tb-dark);

    font-size: 20px;
    font-weight: 800;
}


/* =========================================================
   PRODUCTO
   ========================================================= */

.tb-payment-product {
    display: grid;

    grid-template-columns: 90px minmax(0, 1fr) auto;

    gap: 18px;

    align-items: center;

    padding: 28px;
}

.tb-payment-image {
    position: relative;

    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f8fafc;

    border: 1px solid var(--tb-border);
    border-radius: 14px;

    overflow: visible;
}

.tb-payment-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 12px;
}

.tb-payment-image span {
    position: absolute;

    top: -8px;
    right: -8px;

    min-width: 25px;
    height: 25px;

    padding: 0 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--tb-primary);

    color: white;

    border: 3px solid white;
    border-radius: 50%;

    font-size: 11px;
    font-weight: 800;
}

.tb-payment-product-info {
    min-width: 0;
}

.tb-payment-product-info h3 {
    margin: 0 0 10px;

    color: var(--tb-dark);

    font-size: 15px;
    font-weight: 700;

    line-height: 1.5;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.tb-payment-product-info p {
    margin: 5px 0;

    color: var(--tb-muted);

    font-size: 12px;
}

.tb-payment-product-info strong {
    color: var(--tb-text);
}

.tb-payment-product-total {
    color: var(--tb-dark);

    font-size: 17px;
    font-weight: 800;

    white-space: nowrap;
}


/* =========================================================
   TOTALES
   ========================================================= */

.tb-payment-totals {
    padding: 0 28px 28px;
}

.tb-payment-totals > div {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 9px 0;

    color: var(--tb-muted);

    font-size: 13px;
}

.tb-payment-totals strong {
    color: var(--tb-text);
}

.tb-payment-totals .gratis {
    color: var(--tb-success);

    font-weight: 800;
}

.tb-payment-totals hr {
    height: 1px;

    margin: 12px 0;

    border: 0;

    background: var(--tb-border);
}

.tb-payment-totals .tb-payment-grand-total {
    padding-top: 5px;
}

.tb-payment-grand-total span {
    color: var(--tb-dark);

    font-size: 15px;
    font-weight: 700;
}

.tb-payment-grand-total strong {
    color: var(--tb-primary);

    font-size: 25px;
    font-weight: 800;
}


/* =========================================================
   MÉTODO DE PAGO
   ========================================================= */

.tb-payment-method {
    overflow: hidden;
}

.tb-payment-option {
    margin: 25px;

    border: 2px solid var(--tb-border);
    border-radius: 15px;

    overflow: hidden;

    transition: .2s ease;
}

.tb-payment-option.active {
    border-color: var(--tb-primary);
}

.tb-payment-option-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 18px;

    background: #f8fafc;
}

.tb-payment-option-left {
    display: flex;

    align-items: center;

    gap: 13px;

    min-width: 0;
}

.tb-payment-provider {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: white;

    background: var(--tb-dark);

    font-size: 18px;
}

.tb-payment-option-header strong {
    display: block;

    color: var(--tb-dark);

    font-size: 14px;
    font-weight: 800;
}

.tb-payment-option-header small {
    display: block;

    margin-top: 4px;

    color: var(--tb-muted);

    font-size: 10px;

    line-height: 1.4;
}

.tb-payment-option-header > i {
    color: var(--tb-success);

    font-size: 18px;
}


/* =========================================================
   BOTON BOLD
   ========================================================= */

.tb-payment-button-container {
    padding: 22px;

    min-height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;
}


/* =========================================================
   ERROR DE PAGO
   ========================================================= */

.tb-payment-error {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px;

    background: #fff7ed;

    border: 1px solid #fed7aa;

    border-radius: 12px;

    color: #9a3412;
}

.tb-payment-error > i {
    font-size: 20px;
}

.tb-payment-error strong {
    display: block;

    font-size: 12px;
}

.tb-payment-error p {
    margin: 3px 0 0;

    font-size: 10px;
}


/* =========================================================
   SEGURIDAD
   ========================================================= */

.tb-payment-security {
    display: flex;

    gap: 13px;

    margin: 0 25px 25px;

    padding: 17px;

    background: #f0fdf4;

    border: 1px solid #bbf7d0;

    border-radius: 13px;
}

.tb-payment-security > div:first-child {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dcfce7;

    border-radius: 10px;

    color: var(--tb-success);
}

.tb-payment-security strong {
    display: block;

    margin-bottom: 4px;

    color: #166534;

    font-size: 12px;
}

.tb-payment-security p {
    margin: 0;

    color: #4b5563;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   DATOS CLIENTE
   ========================================================= */

.tb-payment-customer {
    margin: 0 25px 25px;

    padding-top: 22px;

    border-top: 1px solid var(--tb-border);
}

.tb-payment-customer h3 {
    margin: 0 0 18px;

    color: var(--tb-dark);

    font-size: 13px;
    font-weight: 800;
}

.tb-customer-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.tb-customer-grid > div {
    min-width: 0;

    padding: 12px;

    background: #f8fafc;

    border-radius: 10px;
}

.tb-customer-grid span {
    display: block;

    margin-bottom: 5px;

    color: var(--tb-muted);

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: .5px;
}

.tb-customer-grid strong {
    display: block;

    color: var(--tb-text);

    font-size: 11px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.tb-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;

    color: white;

    border-radius: 50%;

    box-shadow:
        0 8px 25px rgba(37, 211, 102, .35);

    font-size: 28px;

    z-index: 999;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.tb-whatsapp:hover {
    color: white;

    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(37, 211, 102, .45);
}


/* =========================================================
   ANIMACIONES
   ========================================================= */

.tb-payment-order,
.tb-payment-method {
    animation: tbPaymentAppear .45s ease both;
}

.tb-payment-method {
    animation-delay: .08s;
}

@keyframes tbPaymentAppear {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .tb-payment-container {
        width: min(100% - 30px, 760px);
    }

    .tb-payment-header .tb-payment-container {
        align-items: flex-start;
    }

    .tb-payment-grid {
        grid-template-columns: 1fr;

    }

    .tb-payment-method {
        order: 2;
    }

    .tb-payment-order {
        order: 1;
    }

}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 600px) {

    .tb-payment-container {
        width: calc(100% - 20px);
    }


    /* HEADER */

    .tb-payment-header {
        padding: 25px 0;
    }

    .tb-payment-header .tb-payment-container {
        display: block;
    }

    .tb-payment-header h1 {
        font-size: 24px;
    }

    .tb-payment-header p {
        font-size: 12px;
        line-height: 1.5;
    }


    .tb-payment-reference {
        margin-top: 18px;

        width: 100%;

        text-align: left;
    }


    /* CONTENIDO */

    .tb-payment-page {
        padding: 20px 0 50px;
    }


    /* TITULOS */

    .tb-payment-title {
        padding: 20px;

        gap: 11px;
    }

    .tb-payment-icon {
        width: 40px;
        height: 40px;

        font-size: 15px;
    }

    .tb-payment-title h2 {
        font-size: 16px;
    }


    /* PRODUCTO */

    .tb-payment-product {
        grid-template-columns: 70px minmax(0, 1fr);

        gap: 12px;

        padding: 20px;
    }

    .tb-payment-image {
        width: 70px;
        height: 70px;
    }

    .tb-payment-product-info h3 {
        font-size: 12px;

        -webkit-line-clamp: 2;
    }

    .tb-payment-product-info p {
        font-size: 10px;
    }

    .tb-payment-product-total {
        grid-column: 2;

        font-size: 16px;

        justify-self: start;
    }


    /* TOTALES */

    .tb-payment-totals {
        padding: 0 20px 20px;
    }

    .tb-payment-grand-total strong {
        font-size: 21px;
    }


    /* MÉTODO */

    .tb-payment-option {
        margin: 20px;
    }

    .tb-payment-option-header {
        padding: 14px;
    }

    .tb-payment-option-left {
        gap: 9px;
    }

    .tb-payment-provider {
        width: 38px;
        height: 38px;

        font-size: 15px;
    }

    .tb-payment-option-header strong {
        font-size: 12px;
    }

    .tb-payment-option-header small {
        font-size: 9px;
    }

    .tb-payment-button-container {
        padding: 18px 12px;
    }


    /* SEGURIDAD */

    .tb-payment-security {
        margin: 0 20px 20px;

        padding: 14px;
    }


    /* CLIENTE */

    .tb-payment-customer {
        margin: 0 20px 20px;
    }

    .tb-customer-grid {
        grid-template-columns: 1fr;
    }


    /* WHATSAPP */

    .tb-whatsapp {
        right: 15px;
        bottom: 15px;

        width: 52px;
        height: 52px;

        font-size: 24px;
    }

}


/* =========================================================
   MÓVIL PEQUEÑO
   ========================================================= */

@media (max-width: 380px) {

    .tb-payment-header h1 {
        font-size: 21px;
    }

    .tb-payment-title h2 {
        font-size: 14px;
    }

    .tb-payment-product {
        padding: 16px;
    }

    .tb-payment-totals {
        padding: 0 16px 18px;
    }

    .tb-payment-option {
        margin: 16px;
    }

    .tb-payment-security {
        margin: 0 16px 16px;
    }

    .tb-payment-customer {
        margin: 0 16px 16px;
    }

}

/* =========================================================
   BENEFICIOS - TB BENEFIT V2
========================================================= */

.tb-benefit-v2 {
    width: 100%;
    padding: 35px 20px;
    background: #ffffff;
    box-sizing: border-box;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.tb-benefit-v2__container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   TARJETA
========================================================= */

.tb-benefit-v2__item {
    position: relative;

    display: flex;
    align-items: center;

    gap: 16px;

    min-height: 105px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e8edf3;

    border-radius: 14px;

    box-shadow:
        0 5px 18px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;

    box-sizing: border-box;
}


/* =========================================================
   HOVER
========================================================= */

.tb-benefit-v2__item:hover {
    transform: translateY(-4px);

    border-color: #dce5ef;

    box-shadow:
        0 12px 28px rgba(15, 23, 42, 0.10);
}


/* =========================================================
   ICONO
========================================================= */

.tb-benefit-v2__icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eef5ff;

    color: #1769e0;

    font-size: 21px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


/* =========================================================
   HOVER ICONO
========================================================= */

.tb-benefit-v2__item:hover
.tb-benefit-v2__icon {

    background: #1769e0;

    color: #ffffff;

    transform: scale(1.05);
}


/* =========================================================
   CONTENIDO
========================================================= */

.tb-benefit-v2__content {
    min-width: 0;
}


/* =========================================================
   TITULO
========================================================= */

.tb-benefit-v2__title {
    margin: 0 0 6px;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.3;

    color: #111827;
}


/* =========================================================
   DESCRIPCIÓN
========================================================= */

.tb-benefit-v2__text {
    margin: 0;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 400;

    line-height: 1.55;

    color: #6b7280;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .tb-benefit-v2 {
        padding: 30px 18px;
    }

    .tb-benefit-v2__container {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 16px;
    }

    .tb-benefit-v2__item {
        min-height: 100px;
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 600px) {

    .tb-benefit-v2 {
        padding: 25px 14px;
    }


    .tb-benefit-v2__container {

        grid-template-columns:
            1fr;

        gap: 12px;
    }


    .tb-benefit-v2__item {

        min-height: auto;

        padding: 16px;

        border-radius: 12px;
    }


    .tb-benefit-v2__icon {

        flex: 0 0 46px;

        width: 46px;
        height: 46px;

        font-size: 18px;
    }


    .tb-benefit-v2__title {

        font-size: 14px;
    }


    .tb-benefit-v2__text {

        font-size: 11.5px;
    }

}


/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */

@media (max-width: 380px) {

    .tb-benefit-v2 {
        padding: 20px 10px;
    }


    .tb-benefit-v2__item {
        gap: 12px;
        padding: 14px;
    }


    .tb-benefit-v2__icon {

        flex: 0 0 42px;

        width: 42px;
        height: 42px;

        font-size: 17px;
    }

}

/* =========================================================
   PRODUCTOS RELACIONADOS
========================================================= */

.tb-related {
    width: 100%;
    padding: 55px 20px;
    background: #f7f9fc;
    box-sizing: border-box;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.tb-related-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.tb-related-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 28px;
}


/* =========================================================
   LABEL
========================================================= */

.tb-related-label {
    display: block;
    margin-bottom: 7px;

    color: #1769e0;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: .6px;
    text-transform: uppercase;
}


/* =========================================================
   TITULO
========================================================= */

.tb-related-title {
    margin: 0;

    color: #111827;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================================
   VER TODOS
========================================================= */

.tb-related-all {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 10px 15px;

    background: #ffffff;

    border: 1px solid #dce3ec;
    border-radius: 8px;

    color: #1769e0;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: all .25s ease;
}


.tb-related-all:hover {
    background: #1769e0;
    border-color: #1769e0;

    color: #ffffff;

    text-decoration: none;
}


.tb-related-all i {
    font-size: 11px;

    transition: transform .25s ease;
}


.tb-related-all:hover i {
    transform: translateX(4px);
}


/* =========================================================
   GRID
========================================================= */

.tb-related-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.tb-related-card {
    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5eaf0;
    border-radius: 14px;

    box-shadow:
        0 5px 18px rgba(15, 23, 42, .05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.tb-related-card:hover {
    transform: translateY(-5px);

    border-color: #d7e1ee;

    box-shadow:
        0 15px 32px rgba(15, 23, 42, .11);
}


/* =========================================================
   IMAGEN
========================================================= */

.tb-related-image {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 235px;

    padding: 20px;

    background: #ffffff;

    box-sizing: border-box;

    overflow: hidden;

    text-decoration: none;
}


.tb-related-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform .35s ease;
}


.tb-related-card:hover
.tb-related-image img {
    transform: scale(1.06);
}


/* =========================================================
   STOCK
========================================================= */

.tb-related-stock {
    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 2;

    display: inline-flex;

    align-items: center;
    gap: 6px;

    padding: 6px 9px;

    background: #e9f9ef;

    border-radius: 20px;

    color: #159447;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
}


.tb-related-stock i {
    font-size: 6px;
}


/* =========================================================
   INFORMACIÓN
========================================================= */

.tb-related-info {
    padding: 17px 18px 16px;
}


/* =========================================================
   CATEGORÍA
========================================================= */

.tb-related-category {
    display: block;

    margin-bottom: 7px;

    color: #1769e0;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .5px;

    text-transform: uppercase;
}


/* =========================================================
   NOMBRE
========================================================= */

.tb-related-name {
    display: -webkit-box;

    min-height: 40px;

    margin-bottom: 9px;

    overflow: hidden;

    color: #172033;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;

    line-height: 1.5;

    text-decoration: none;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.tb-related-name:hover {
    color: #1769e0;

    text-decoration: none;
}


/* =========================================================
   RATING
========================================================= */

.tb-related-rating {
    display: flex;

    align-items: center;

    gap: 2px;

    margin-bottom: 11px;
}


.tb-related-rating i {
    color: #f5b301;

    font-size: 10px;
}


/* =========================================================
   PRECIO
========================================================= */

.tb-related-price {
    margin-bottom: 15px;

    color: #111827;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================================
   ACCIONES
========================================================= */

.tb-related-actions {
    display: flex;

    align-items: center;

    gap: 8px;

    width: 100%;
}


/* =========================================================
   BOTÓN CARRITO
========================================================= */

.tb-related-cart {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #dbe2ea;
    border-radius: 8px;

    background: #ffffff;

    color: #1769e0;

    font-size: 14px;

    cursor: pointer;

    transition: all .25s ease;
}


.tb-related-cart:hover {
    background: #1769e0;

    border-color: #1769e0;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   VER PRODUCTO
========================================================= */

.tb-related-view {
    flex: 1;

    min-width: 0;

    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 12px;

    border-radius: 8px;

    background: #111827;

    color: #ffffff;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition: all .25s ease;
}


.tb-related-view:hover {
    background: #1769e0;

    color: #ffffff;

    text-decoration: none;
}


.tb-related-view i {
    font-size: 10px;

    transition: transform .25s ease;
}


.tb-related-view:hover i {
    transform: translateX(3px);
}


/* =========================================================
   SKU
========================================================= */

.tb-related-sku {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 13px;
    padding-top: 11px;

    border-top: 1px solid #edf0f4;

    color: #9aa3af;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 9px;
}


.tb-related-sku strong {
    color: #6b7280;

    font-size: 9px;
    font-weight: 600;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .tb-related {
        padding: 45px 18px;
    }

    .tb-related-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 16px;
    }

    .tb-related-image {
        height: 220px;
    }

    .tb-related-title {
        font-size: 24px;
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 600px) {

    .tb-related {
        padding: 35px 14px;
    }


    .tb-related-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }


    .tb-related-title {
        font-size: 22px;
    }


    .tb-related-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }


    .tb-related-image {
        height: 170px;

        padding: 12px;
    }


    .tb-related-stock {
        top: 8px;
        left: 8px;

        padding: 5px 7px;

        font-size: 8px;
    }


    .tb-related-info {
        padding: 13px;
    }


    .tb-related-category {
        font-size: 8px;
    }


    .tb-related-name {
        min-height: 36px;

        font-size: 11px;
    }


    .tb-related-price {
        font-size: 16px;
    }


    .tb-related-cart {
        flex: 0 0 38px;

        width: 38px;
        height: 38px;
    }


    .tb-related-view {
        height: 38px;

        font-size: 9px;
    }


    .tb-related-sku {
        font-size: 8px;
    }

}


/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */

@media (max-width: 380px) {

    .tb-related-grid {
        grid-template-columns: 1fr;
    }


    .tb-related-image {
        height: 220px;
    }


    .tb-related-name {
        font-size: 13px;
    }


    .tb-related-price {
        font-size: 18px;
    }

}

/* =========================================================
   TITANBYTE - MOBILE SIDE MENU
========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       BOTÓN HAMBURGUESA
    ===================================================== */

    .tb-mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        padding: 0;
        margin: 0;

        border: 0;
        outline: none;

        background: transparent;

        cursor: pointer;

        position: relative;
        z-index: 11001;
    }

    .tb-mobile-menu i {
        font-size: 21px;
        pointer-events: none;
    }


    /* =====================================================
       NAV LATERAL
    ===================================================== */

    .tb-store-nav {

        display: block;

        position: fixed;

        top: 0;
        right: 0;

        width: 320px;
        max-width: 88vw;

        height: 100dvh;

        padding: 0;
        margin: 0;

        background: #ffffff;

        transform: translateX(105%);

        transition:
            transform 0.32s cubic-bezier(.4,0,.2,1);

        z-index: 11000;

        overflow-y: auto;
        overflow-x: hidden;

        box-shadow:
            -12px 0 35px rgba(0,0,0,.22);

        visibility: hidden;
    }


    /* =====================================================
       MENU ABIERTO
    ===================================================== */

    .tb-store-nav.tb-mobile-open {

        transform: translateX(0);

        visibility: visible;
    }


    /* =====================================================
       OSCURECER EL FONDO
       box-shadow crea el overlay sin necesitar otro HTML
    ===================================================== */

    .tb-store-nav.tb-mobile-open {

        box-shadow:
            -10px 0 35px rgba(0,0,0,.25),
            -100vw 0 0 100vw rgba(0,0,0,.58);
    }


    /* =====================================================
       CONTENEDOR
    ===================================================== */

    .tb-store-nav-inner {

        display: flex;

        flex-direction: column;

        width: 100%;
        min-height: 100%;

        padding: 0;
    }


    /* =====================================================
       CABECERA DEL MENU
    ===================================================== */

    .tb-store-nav::before {

        content: "TITANBYTE";

        display: flex;

        align-items: center;

        height: 68px;

        padding: 0 22px;

        box-sizing: border-box;

        background: #101114;

        color: #ffffff;

        font-size: 18px;
        font-weight: 800;
        letter-spacing: 1px;

        border-bottom: 1px solid #292b30;
    }


    /* =====================================================
       CATEGORÍAS
    ===================================================== */

    .tb-categories {

        width: 100%;

        margin: 0;

        padding: 0;

        border-bottom: 1px solid #eeeeee;
    }


    .tb-categories-btn {

        width: 100%;

        height: 54px;

        display: flex;

        align-items: center;

        gap: 12px;

        padding: 0 20px;

        margin: 0;

        border: 0;

        background: #ffffff;

        color: #222222;

        font-size: 14px;
        font-weight: 700;

        text-align: left;

        cursor: pointer;
    }


    .tb-categories-btn > i:first-child {

        width: 22px;

        font-size: 15px;

        text-align: center;
    }


    .tb-categories-btn .fa-chevron-down {

        margin-left: auto;

        font-size: 11px;

        transition: transform .25s ease;
    }


    /* =====================================================
       MENU DE CATEGORÍAS
    ===================================================== */

    .tb-categories-menu {

        display: none;

        position: static;

        width: 100%;

        padding: 4px 0 8px;

        margin: 0;

        background: #f8f8f9;

        border: 0;

        box-shadow: none;

        border-radius: 0;
    }


    .tb-categories-menu.tb-categories-open {

        display: block;
    }


    .tb-categories-menu a {

        display: flex;

        align-items: center;

        gap: 12px;

        min-height: 48px;

        padding: 0 20px 0 32px;

        box-sizing: border-box;

        color: #444444;

        text-decoration: none;

        font-size: 13px;

        border-bottom: 1px solid #eeeeee;

        background: transparent;
    }


    .tb-categories-menu a i:first-child {

        width: 20px;

        font-size: 14px;

        text-align: center;
    }


    .tb-categories-menu a span {

        flex: 1;
    }


    .tb-categories-menu a .fa-chevron-right {

        font-size: 9px;

        color: #999999;
    }


    .tb-categories-menu a:hover {

        background: #f0f0f2;
    }


    .tb-categories-divider {

        height: 1px;

        margin: 5px 20px;

        background: #dddddd;
    }


    .tb-categories-menu .tb-all-categories {

        color: #ff6a00;

        font-weight: 700;

        border-bottom: 0;
    }


    /* =====================================================
       LINKS PRINCIPALES
    ===================================================== */

    .tb-store-links {

        display: flex;

        flex-direction: column;

        width: 100%;

        padding: 8px 0;
    }


    .tb-store-links a {

        display: flex;

        align-items: center;

        width: 100%;

        min-height: 52px;

        padding: 0 20px;

        box-sizing: border-box;

        color: #252525;

        background: #ffffff;

        text-decoration: none;

        font-size: 14px;

        font-weight: 600;

        border-bottom: 1px solid #eeeeee;

        transition:
            background .2s ease,
            color .2s ease,
            padding-left .2s ease;
    }


    .tb-store-links a:hover {

        background: #f7f7f8;

        color: #ff6a00;

        padding-left: 25px;
    }


    .tb-store-links a.active {

        color: #ff6a00;

        background: #fff7f1;

        border-left: 3px solid #ff6a00;

        padding-left: 17px;
    }


    .tb-store-links .tb-offers {

        color: #ff6a00;

        font-weight: 700;
    }


    .tb-store-links .tb-offers i {

        margin-right: 10px;
    }


    /* =====================================================
       SCROLLBAR
    ===================================================== */

    .tb-store-nav::-webkit-scrollbar {

        width: 5px;
    }


    .tb-store-nav::-webkit-scrollbar-track {

        background: #f5f5f5;
    }


    .tb-store-nav::-webkit-scrollbar-thumb {

        background: #cccccc;

        border-radius: 10px;
    }


    /* =====================================================
       EVITAR SCROLL DEL BODY
    ===================================================== */

    body.tb-menu-open {

        overflow: hidden;
    }

}


/* =========================================================
   TITANBYTE
   NAVEGACIÓN DESKTOP + MOBILE
========================================================= */

:root {
    --tbn-orange: #ff5a00;
    --tbn-orange-hover: #e94f00;
    --tbn-black: #090a0c;
    --tbn-dark: #111318;
    --tbn-text: #222;
    --tbn-muted: #777;
    --tbn-border: #e8e8e8;
}


/* =========================================================
   BOTÓN MOBILE
========================================================= */

.tbn-mobile-trigger {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;
    margin: 0;

    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 8px;

    background: transparent;
    color: #fff;

    cursor: pointer;

    position: relative;
    z-index: 20001;
}

.tbn-mobile-trigger i {
    font-size: 21px;
}


/* =========================================================
   OVERLAY
========================================================= */

.tbn-overlay {
    display: none;
}


/* =========================================================
   NAVEGACIÓN DESKTOP
========================================================= */

.tbn-navigation {

    width: 100%;
    height: 56px;

    background: var(--tbn-black);

    position: relative;

    z-index: 9000;
}


.tbn-navigation-inner {

    width: 100%;
    max-width: 1450px;

    height: 100%;

    margin: 0 auto;
    padding: 0 35px;

    display: flex;
    align-items: center;
}


/* =========================================================
   CATEGORÍAS DESKTOP
========================================================= */

.tbn-category {

    height: 100%;

    position: relative;

    flex-shrink: 0;
}


.tbn-category-trigger {

    height: 36px;
    min-width: 176px;

    padding: 0 15px;

    display: flex;
    align-items: center;

    gap: 10px;

    border: 0;
    border-radius: 7px;

    background: var(--tbn-orange);
    color: #fff;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}


.tbn-category-trigger:hover {
    background: var(--tbn-orange-hover);
}


.tbn-category-trigger:active {
    transform: scale(.98);
}


.tbn-category-icon {

    width: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.tbn-category-icon i {
    font-size: 12px;
}


.tbn-category-text {
    flex: 1;
    text-align: left;
}


.tbn-category-arrow {

    font-size: 9px;

    transition:
        transform .25s ease;
}


/* =========================================================
   FLECHA CATEGORÍAS ABIERTA
========================================================= */

.tbn-category.tbn-category-open
.tbn-category-arrow {

    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN DESKTOP
========================================================= */

.tbn-category-dropdown {

    position: absolute;

    top: calc(100% + 10px);
    left: 0;

    width: 300px;

    padding: 7px 0;

    background: #fff;

    border: 1px solid var(--tbn-border);
    border-radius: 10px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .16);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(-8px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;

    z-index: 10000;
}


/* =========================================================
   DROPDOWN ABIERTO
========================================================= */

.tbn-category.tbn-category-open
.tbn-category-dropdown {

    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}


/* =========================================================
   ITEMS CATEGORÍAS
========================================================= */

.tbn-category-dropdown a {

    width: 100%;
    min-height: 48px;

    padding: 0 17px;

    box-sizing: border-box;

    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--tbn-text);

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    transition:
        background .2s ease,
        color .2s ease,
        padding-left .2s ease;
}


.tbn-category-dropdown a > i:first-child {

    width: 22px;

    text-align: center;

    color: #666;

    transition:
        color .2s ease;
}


.tbn-category-dropdown a span {
    flex: 1;
}


.tbn-category-dropdown a > i:last-child {

    font-size: 9px;

    color: #aaa;
}


.tbn-category-dropdown a:hover {

    background: #f7f7f8;

    color: var(--tbn-orange);

    padding-left: 22px;
}


.tbn-category-dropdown a:hover > i:first-child {

    color: var(--tbn-orange);
}


/* =========================================================
   DIVISOR
========================================================= */

.tbn-category-divider {

    height: 1px;

    margin: 7px 15px;

    background: #eeeeee;
}


/* =========================================================
   TODAS LAS CATEGORÍAS
========================================================= */

.tbn-category-dropdown
.tbn-all-categories {

    color: var(--tbn-orange);

    font-weight: 700;
}


.tbn-category-dropdown
.tbn-all-categories i {

    color: var(--tbn-orange);
}


/* =========================================================
   LINKS DESKTOP
========================================================= */

.tbn-links {

    height: 100%;

    margin-left: 18px;

    display: flex;
    align-items: center;

    gap: 2px;
}


.tbn-link {

    height: 100%;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    color: #fff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    transition:
        color .2s ease,
        background .2s ease;
}


.tbn-link:hover {

    color: var(--tbn-orange);
}


/* =========================================================
   LINK ACTIVO
========================================================= */

.tbn-link-active {

    color: var(--tbn-orange);
}


.tbn-link-active::after {

    content: "";

    position: absolute;

    left: 18px;
    right: 18px;

    bottom: 0;

    height: 3px;

    background: var(--tbn-orange);

    border-radius:
        3px 3px 0 0;
}


/* =========================================================
   OFERTAS
========================================================= */

.tbn-link-offer {

    height: 34px;

    margin-left: 8px;

    padding: 0 15px;

    gap: 7px;

    border: 1px solid
        rgba(255, 90, 0, .55);

    border-radius: 7px;

    color: var(--tbn-orange);
}


.tbn-link-offer:hover {

    background: var(--tbn-orange);

    color: #fff;
}


.tbn-link-offer i {

    font-size: 10px;
}


/* =========================================================
   HEADER MOBILE
========================================================= */

.tbn-mobile-header {
    display: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {


    /* =====================================================
       BOTÓN HAMBURGUESA
    ===================================================== */

    .tbn-mobile-trigger {

        display: flex;

    }


    /* =====================================================
       OVERLAY
    ===================================================== */

    .tbn-overlay {

        display: block;

        position: fixed;

        inset: 0;

        background:
            rgba(0, 0, 0, .65);

        opacity: 0;
        visibility: hidden;

        transition:
            opacity .3s ease,
            visibility .3s ease;

        z-index: 19998;
    }


    .tbn-overlay.tbn-overlay-active {

        opacity: 1;

        visibility: visible;
    }


    /* =====================================================
       PANEL LATERAL
    ===================================================== */

    .tbn-navigation {

        position: fixed;

        top: 0;
        right: 0;

        width: 330px;
        max-width: 88vw;

        height: 100dvh;

        margin: 0;
        padding: 0;

        background: #fff;

        transform:
            translateX(105%);

        transition:
            transform .35s
            cubic-bezier(.4, 0, .2, 1);

        box-shadow:
            -12px 0 35px
            rgba(0, 0, 0, .25);

        overflow-y: auto;
        overflow-x: hidden;

        z-index: 20000;
    }


    /* =====================================================
       MENÚ ABIERTO
    ===================================================== */

    .tbn-navigation.tbn-navigation-open {

        transform:
            translateX(0);
    }


    /* =====================================================
       CONTENEDOR
    ===================================================== */

    .tbn-navigation-inner {

        width: 100%;

        height: auto;
        min-height: 100%;

        margin: 0;
        padding: 0;

        display: block;
    }


    /* =====================================================
       CABECERA DEL PANEL
    ===================================================== */

    .tbn-mobile-header {

        width: 100%;
        height: 72px;

        padding: 0 18px;

        box-sizing: border-box;

        display: flex;

        align-items: center;
        justify-content: space-between;

        background:
            linear-gradient(
                135deg,
                #090a0c,
                #17191d
            );
    }


    .tbn-mobile-brand {

        display: flex;

        flex-direction: column;
    }


    .tbn-mobile-brand strong {

        color: #fff;

        font-size: 20px;

        font-weight: 800;

        letter-spacing: -.5px;
    }


    .tbn-mobile-brand strong span {

        color: var(--tbn-orange);
    }


    .tbn-mobile-brand small {

        margin-top: 2px;

        color: #888;

        font-size: 8px;
    }


    /* =====================================================
       BOTÓN X
    ===================================================== */

    .tbn-mobile-close {

        width: 38px;
        height: 38px;

        display: flex;

        align-items: center;
        justify-content: center;

        padding: 0;

        border: 1px solid
            rgba(255,255,255,.15);

        border-radius: 8px;

        background:
            rgba(255,255,255,.06);

        color: #fff;

        cursor: pointer;

        transition:
            background .2s ease,
            border-color .2s ease;
    }


    .tbn-mobile-close:hover {

        background:
            var(--tbn-orange);

        border-color:
            var(--tbn-orange);
    }


    .tbn-mobile-close i {

        font-size: 17px;
    }


    /* =====================================================
       CATEGORÍAS MOBILE
    ===================================================== */

    .tbn-category {

        width: 100%;
        height: auto;

        border-bottom:
            1px solid #eeeeee;
    }


    .tbn-category-trigger {

        width: 100%;
        height: 58px;

        min-width: 0;

        padding: 0 18px;

        border-radius: 0;

        background: #fff;

        color: #222;
    }


    .tbn-category-trigger:hover {

        background: #fff;
    }


    .tbn-category-icon {

        width: 31px;
        height: 31px;

        border-radius: 7px;

        background:
            rgba(255,90,0,.10);

        color:
            var(--tbn-orange);
    }


    .tbn-category-text {

        font-size: 14px;
        font-weight: 700;
    }


    .tbn-category-arrow {

        color: #777;
    }


    /* =====================================================
       DROPDOWN CATEGORÍAS MOBILE
    ===================================================== */

    .tbn-category-dropdown {

        position: static;

        width: 100%;

        max-height: 0;

        padding: 0;

        border: 0;
        border-radius: 0;

        box-shadow: none;

        background: #f7f7f8;

        opacity: 0;

        visibility: hidden;

        overflow: hidden;

        transform: none;

        transition:
            max-height .3s ease,
            opacity .25s ease,
            visibility .25s ease;
    }


    .tbn-category.tbn-category-open
    .tbn-category-dropdown {

        max-height: 500px;

        opacity: 1;

        visibility: visible;
    }


    /* =====================================================
       ITEMS CATEGORÍAS MOBILE
    ===================================================== */

    .tbn-category-dropdown a {

        min-height: 49px;

        padding:
            0 18px 0 28px;

        border-bottom:
            1px solid #e9e9e9;

        font-size: 13px;
    }


    .tbn-category-dropdown a:hover {

        padding-left: 32px;
    }


    .tbn-category-divider {

        margin: 0;

        background: #ddd;
    }


    /* =====================================================
       LINKS MOBILE
    ===================================================== */

    .tbn-links {

        width: 100%;

        height: auto;

        margin: 0;

        padding: 8px 0;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }


    .tbn-link {

        width: 100%;

        height: 52px;
        min-height: 52px;

        padding: 0 20px;

        justify-content: flex-start;

        box-sizing: border-box;

        color: #252525;

        font-size: 14px;

        border-bottom:
            1px solid #eeeeee;
    }


    .tbn-link:hover {

        background: #f7f7f7;

        color: var(--tbn-orange);
    }


    /* =====================================================
       LINK ACTIVO MOBILE
    ===================================================== */

    .tbn-link-active {

        background: #fff7f1;

        color: var(--tbn-orange);

        border-left:
            3px solid var(--tbn-orange);
    }


    .tbn-link-active::after {

        display: none;
    }


    /* =====================================================
       OFERTAS MOBILE
    ===================================================== */

    .tbn-link-offer {

        width:
            calc(100% - 30px);

        height: 46px;
        min-height: 46px;

        margin:
            10px 15px 5px;

        padding: 0 15px;

        justify-content: flex-start;

        border:
            1px solid
            rgba(255,90,0,.35);

        border-radius: 8px;

        color: var(--tbn-orange);

        gap: 9px;
    }


    .tbn-link-offer:hover {

        background:
            var(--tbn-orange);

        color: #fff;
    }


    /* =====================================================
       SCROLLBAR
    ===================================================== */

    .tbn-navigation::-webkit-scrollbar {

        width: 5px;
    }


    .tbn-navigation::-webkit-scrollbar-track {

        background: #f4f4f4;
    }


    .tbn-navigation::-webkit-scrollbar-thumb {

        background: #ccc;

        border-radius: 10px;
    }

}


/* =========================================================
   TELÉFONOS PEQUEÑOS
========================================================= */

@media (max-width: 380px) {

    .tbn-navigation {

        width: 310px;

        max-width: 90vw;
    }

}

/* =========================================================
   SLIDER PRODUCTOS
========================================================= */

.tb-products-window {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.tb-products-track {

    display: flex;

    gap: 20px;

    width: max-content;

    transform: translate3d(0, 0, 0);

    transition: transform .45s ease;

    will-change: transform;
}

.tb-products-track .tb-product {

    flex: 0 0 calc((100vw - 120px) / 5);

    min-width: 0;

    box-sizing: border-box;
}


/* =========================================================
   TABLET
   4 PRODUCTOS
========================================================= */

@media screen and (max-width: 1200px) {

    .tb-products-track .tb-product {

        flex: 0 0 calc((100vw - 100px) / 4);

    }

}


/* =========================================================
   TABLET PEQUEÑA
   3 PRODUCTOS
========================================================= */

@media screen and (max-width: 900px) {

    .tb-products-track {

        gap: 15px;

    }

    .tb-products-track .tb-product {

        flex: 0 0 calc((100vw - 70px) / 3);

    }

}


/* =========================================================
   CELULAR
   3 PRODUCTOS
========================================================= */

@media screen and (max-width: 650px) {

    .tb-products-track {

        gap: 10px;

    }

    .tb-products-track .tb-product {

        flex: 0 0 calc((100vw - 40px) / 3);

    }

}


/* =========================================================
   CELULAR PEQUEÑO
   3 PRODUCTOS
========================================================= */

@media screen and (max-width: 480px) {

    .tb-products-track {

        gap: 8px;

    }

    .tb-products-track .tb-product {

        flex: 0 0 calc((100vw - 32px) / 2);

    }

}


