:root{
    --bg:#070B14;
    --panel:#0b1220;
    --cyan:#00e5ff;
    --lime:#bef264;
    --line:rgba(0,229,255,.16);
}

/* =========================================
   GLOBAL
========================================= */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:
    radial-gradient(circle at 15% 0,
    rgba(0,229,255,.12),
    transparent 26%),
    var(--bg);

    color:#eef6ff;

    font-family:
    Inter,
    system-ui,
    Segoe UI,
    Arial,
    sans-serif;

    overflow-x:hidden;
}

a{
    transition:.2s ease;
}

img{
    max-width:100%;
}

.fw-black{
    font-weight:900;
}

.text-cyan{
    color:var(--cyan);
}

.text-lime{
    color:var(--lime);
}

/* =========================================
   NAVBAR
========================================= */

.bit-nav{
    background:rgba(7,11,20,.86);

    backdrop-filter:blur(18px);

    border-bottom:
    1px solid rgba(0,229,255,.10);
}

/* =========================================
   GLASS
========================================= */

.glass{
    background:
    linear-gradient(
        145deg,
        rgba(14,23,41,.92),
        rgba(15,33,54,.64)
    );

    border:1px solid var(--line);

    box-shadow:
    0 18px 60px rgba(0,0,0,.35);

    border-radius:1.7rem;
}

.neon{
    box-shadow:
    0 0 35px rgba(0,229,255,.22);
}

/* =========================================
   BUTTONS
========================================= */

.btn{
    border-radius:16px;

    font-weight:800;

    padding:.85rem 1.1rem;
}

.btn-cyan{
    background:var(--cyan);

    color:#001018;

    border:0;
}

.btn-cyan:hover{
    background:#00cde5;
    color:#000;
}

.btn-dark-soft{
    background:#111827;

    color:#fff;

    border:
    1px solid #253653;
}

.btn-dark-soft:hover{
    background:#162033;
    color:#fff;
}

/* =========================================
   FORMS
========================================= */

input,
select,
textarea{
    width:100%;

    background:#0b1220 !important;

    border:
    1px solid #1f3556 !important;

    color:white !important;

    border-radius:16px !important;

    padding:.9rem 1rem !important;

    outline:none !important;
}

input:focus,
select:focus,
textarea:focus{
    border-color:
    rgba(0,229,255,.45) !important;

    box-shadow:
    0 0 0 4px rgba(0,229,255,.08) !important;
}

label.form-label{
    font-weight:800;
    color:#e6faff;
}

.form-text{
    color:#94a3b8 !important;
}

/* =========================================
   HERO
========================================= */

.home-hero{
    padding:45px 0 70px;
}

.hero-slide{
    min-height:650px;

    position:relative;

    display:flex;
    align-items:center;

    background-size:cover;
    background-position:center;

    border-radius:36px;

    overflow:hidden;
}

.hero-slide-1{
    background:
    linear-gradient(
        rgba(0,0,0,.38),
        rgba(0,0,0,.38)
    ),
    url('https://www.asus.com/me-en/microsite/powered-by-asus/upload/scenario/20231127141252_pic0.jpg')
    center center/cover no-repeat;
}

.hero-slide-2{
    background:
    linear-gradient(
        rgba(0,0,0,.38),
        rgba(0,0,0,.38)
    ),
    url('https://media.istockphoto.com/id/1338485833/photo/exploded-view-of-a-modern-computer-hardware-components-mainboard-cpu-processor-graphic-card.jpg?s=612x612&w=0&k=20&c=hwITRJ3bAbrX8jmPdOArRf7TyvnaAde31XRFp17e77Q=')
    center center/cover no-repeat;
}

.hero-slide-3{
    background:
    linear-gradient(
        rgba(0,0,0,.32),
        rgba(0,0,0,.32)
    ),
    url('https://www.apple.com/ph/iphone-17-pro/images/overview/highlights/highlights_design_endframe__eu8gj0kqlmoi_large.jpg')
    center center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(2,8,23,.78) 0%,
        rgba(2,8,23,.45) 40%,
        rgba(2,8,23,.12) 75%,
        rgba(2,8,23,.05) 100%
    );
}

.hero-content{
    position:relative;

    z-index:2;

    max-width:680px;

    padding:70px 0;
}

.category-icon{

    width:110px;
    height:110px;

    margin:auto auto 28px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    radial-gradient(
        circle at top,
        rgba(0,229,255,.18),
        rgba(0,229,255,.08)
    );

    border:
    1px solid rgba(0,229,255,.12);

    box-shadow:
    inset 0 0 30px rgba(0,229,255,.05);

}

.category-material-icon{

    font-size:68px !important;

    color:#f4fbff;

    line-height:1;

    display:flex;
    align-items:center;
    justify-content:center;

    transform:scale(1.15);

    font-variation-settings:
    'FILL' 0,
    'wght' 200,
    'GRAD' 0,
    'opsz' 48;
}

.hero-badge{
    display:inline-block;

    background:var(--cyan);

    color:#000;

    font-weight:800;

    padding:8px 16px;

    border-radius:999px;

    margin-bottom:24px;
}

.hero-content h1{
    font-size:76px;

    line-height:1;

    font-weight:900;

    margin-bottom:24px;
}

.hero-content p{
    font-size:20px;

    color:#cbd5e1;

    margin-bottom:28px;

    max-width:560px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.hero-search{
    max-width:700px;
    width:100%;

    margin-left:auto;
    margin-right:auto;

    display:flex;
    gap:12px;
}

.hero-search input{
    flex:1;
}

/* =========================
   PC VISUALIZER
========================= */

.pc-visualizer{

    padding:28px;

    margin-top:24px;

    position:relative;
}

.pc-case{

    position:relative;

    width:100%;

    max-width:340px;

    aspect-ratio:3/4;

    margin:auto;

    border:
    2px solid rgba(255,255,255,.08);

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        rgba(8,15,30,.95),
        rgba(3,8,18,.98)
    );

    overflow:hidden;

    transition:.4s ease;
}

.pc-case.complete{

    border-color:#00ff99;

    box-shadow:
    0 0 40px rgba(0,255,153,.25);
}

.pc-part{

    position:absolute;

    background:#1a2436;

    opacity:.35;

    transition:.35s ease;
}

.pc-part.active{

    background:#00e5ff;

    opacity:1;

    box-shadow:
    0 0 18px rgba(0,229,255,.55);
}

/* motherboard */
.motherboard{

    width:58%;
    height:58%;

    left:14%;
    top:12%;

    border-radius:18px;
}

/* cpu */
.cpu{

    width:18%;
    height:18%;

    left:28%;
    top:24%;

    border-radius:10px;
}

/* gpu */
.gpu{

    width:52%;
    height:12%;

    left:22%;
    top:52%;

    border-radius:10px;
}

/* ram */
.ram{

    width:7%;
    height:24%;

    right:18%;
    top:18%;

    border-radius:8px;
}

/* cooler */
.cooler{

    width:18%;
    height:18%;

    left:48%;
    top:24%;

    border-radius:50%;
}

/* psu */
.psu{

    width:30%;
    height:16%;

    left:10%;
    bottom:8%;

    border-radius:10px;
}

/* storage */
.storage{

    width:24%;
    height:8%;

    right:12%;
    bottom:14%;

    border-radius:8px;
}

/* fans */
.fan{

    width:14%;
    aspect-ratio:1;

    border-radius:50%;

    border:
    2px solid rgba(255,255,255,.06);
}

.fan-top{

    top:6%;
    right:10%;
}

.fan-rear{

    top:34%;
    right:4%;
}

.build-status{

    margin-top:18px;

    text-align:center;

    font-weight:800;

    color:#94a3b8;
}

.build-status.ready{

    color:#00ff99;
}
/* =========================
   CART
========================= */

.cart-product-cell{
    min-width:340px;
}

.cart-product-wrap{

    display:flex;
    align-items:center;
    gap:18px;

    min-width:320px;
}

.cart-product-image{

    width:90px;
    height:90px;

    border-radius:18px;

    overflow:hidden;

    background:#07111f;

    border:
    1px solid rgba(0,229,255,.12);

    flex-shrink:0;
}

.cart-product-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.cart-product-info{
    min-width:0;
}

.cart-product-title{

    font-size:18px;

    font-weight:800;

    color:#fff;

    margin-bottom:10px;

    line-height:1.3;
}

.cart-product-price{

    display:flex;
    align-items:center;
    gap:10px;

    flex-wrap:wrap;
}

.table-dark-custom td{
    vertical-align:middle;
}

.table-dark-custom input[type=number]{

    width:80px;

    min-width:80px;

    text-align:center;
}

.old-price{

    text-decoration:line-through;

    color:#7d8ca3;

    font-size:14px;
}

@media(max-width:991px){

    .cart-product-cell{
        min-width:280px;
    }

    .cart-product-wrap{
        min-width:260px;
    }

}
/* =========================================
   CATEGORY GRID
========================================= */

.home-categories{
    padding-top:20px;
}

.category-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(190px,1fr));

    gap:24px;
}

.category-card{
    background:
    linear-gradient(
        180deg,
        #081225,
        #0d1b34
    );

    border:
    1px solid rgba(0,229,255,.12);

    border-radius:28px;

    padding:35px 20px;

    text-align:center;

    text-decoration:none;

    transition:.25s ease;

    color:#fff;
}

.category-card:hover{
    transform:translateY(-6px);

    border-color:#00e5ff;

    box-shadow:
    0 0 30px rgba(0,229,255,.12);
}

.category-icon{
    width:75px;
    height:75px;

    margin:auto auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    rgba(0,229,255,.1);

    color:#00e5ff;

    font-size:34px;
}

.category-card h5{
    font-weight:800;

    margin-bottom:8px;
}

.category-card span{
    color:#94a3b8;

    font-size:14px;
}

/* =========================================
   PRODUCT GRID
========================================= */

.product-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(280px,1fr));

    gap:28px;

    align-items:start;
}



/* =========================================
   PRODUCT CARDS
========================================= */

.product-card-wrap{
    height:100%;
    min-width:0;
}

.product-card{
    position:relative;

    display:flex;
    flex-direction:column;
	width:100%;
    height:100%;

    overflow:visible;

    border-radius:28px;

    background:
    linear-gradient(
        180deg,
        rgba(14,23,41,.92),
        rgba(15,33,54,.72)
    );

    border:
    1px solid rgba(0,229,255,.10);

    transition:.28s ease;
}

.product-card:hover{
    transform:translateY(-8px);

    border-color:
    rgba(0,229,255,.35);

    box-shadow:
    0 18px 45px rgba(0,0,0,.35),
    0 0 35px rgba(0,229,255,.06);
}

/* IMAGE */

.product-image-wrap{
    position:relative;

    display:block;

    aspect-ratio:1/1;

    background:
    radial-gradient(
        circle at top,
        rgba(0,229,255,.08),
        transparent 50%
    ),
    #07111f;

    overflow:hidden;

    padding:24px;
}

.product-image{
    width:100%;
    height:100%;

    object-fit:contain;

    transition:.35s ease;
}

.product-card:hover .product-image{
    transform:scale(1.06);
}

/* SALE */

.sale-badge{
    position:absolute;

    top:14px;
    right:14px;

    z-index:5;

    background:#ef4444;

    color:#fff;

    font-size:12px;

    font-weight:900;

    padding:7px 12px;

    border-radius:999px;

    box-shadow:
    0 10px 30px rgba(239,68,68,.35);
}

/* CONTENT */

.product-content{
    display:flex;
    flex-direction:column;

    flex:1;

    padding:22px;
}

.product-category{
    color:#00e5ff;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:.7px;

    font-weight:800;

    margin-bottom:12px;
}

.product-title{
    font-size:18px;

    line-height:1.45;

    font-weight:800;

    margin-bottom:18px;

    min-height:52px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;
}

.product-title a{
    color:#eef6ff;
    text-decoration:none;
}

.product-title a:hover{
    color:#00e5ff;
}

/* PRICE */

.product-price-wrap{
    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:18px;
}

.product-price{
    font-size:26px;

    font-weight:900;

    color:#fff;
}

.old-price{
    color:#94a3b8;

    text-decoration:line-through;

    font-weight:700;
}

/* ACTIONS */

.product-actions{
    display:flex;
    gap:12px;

    margin-top:auto;
}

.product-actions .btn{
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.product-actions form{
    margin:0;
}

/* =========================================
   SECTION HEADER
========================================= */

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:20px;
}

.section-header h2{
    margin-bottom:8px;
}

/* =========================================
   PROMO
========================================= */

.promo-strip-box{
    background:
    linear-gradient(
        90deg,
        #081225,
        #10284a
    );

    border-radius:36px;

    padding:55px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:30px;

    border:
    1px solid rgba(0,229,255,.1);
}

.promo-mini-badge{
    display:inline-block;

    background:#00e5ff;

    color:#000;

    font-weight:700;

    padding:8px 14px;

    border-radius:999px;

    margin-bottom:15px;
}

.promo-strip-box h2{
    font-weight:900;

    margin-bottom:12px;
}


.sale-badge{

    position:absolute;

    top:16px;
    right:16px;

    z-index:50;

    background:#ff3b30;

    color:#fff;

    font-size:13px;

    font-weight:900;

    padding:8px 14px;

    border-radius:999px;

    box-shadow:
    0 10px 25px rgba(255,59,48,.35);

    letter-spacing:.5px;

    line-height:1;

    pointer-events:none;
}
/* =========================================
   FEATURES
========================================= */

.features-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:24px;
}

.feature-card{
    background:
    linear-gradient(
        180deg,
        #081225,
        #0d1b34
    );

    border-radius:28px;

    padding:45px 25px;

    text-align:center;

    border:
    1px solid rgba(0,229,255,.1);
}

.feature-card i{
    font-size:42px;

    color:#00e5ff;

    margin-bottom:18px;
}

.feature-card h5{
    font-weight:800;
}

/* =========================================
   PRODUCT PAGE
========================================= */

.gallery-main{
    height:500px;

    object-fit:contain;

    background:#020617;

    border-radius:1rem;
}

.gallery-thumb{
    border:
    1px solid #1f3556;

    background:#020617;

    border-radius:.75rem;

    padding:.25rem;

    cursor:pointer;
}

.gallery-thumb.active{
    border-color:var(--cyan);
}

.gallery-thumb img{
    width:74px;
    height:58px;

    object-fit:contain;
}

/* =========================================
   TABLES
========================================= */

.table-dark-custom{
    --bs-table-bg:transparent;
    --bs-table-color:#e5f6ff;

    border-color:#1f3556;
}

/* =========================================
   ADMIN
========================================= */

.admin-sidebar a{
    display:block;

    color:#cbd5e1;

    text-decoration:none;

    padding:.85rem 1rem;

    border-radius:1rem;
}

.admin-sidebar a:hover,
.admin-sidebar a.active{
    background:#0f2740;

    color:#fff;
}

/* =========================================
   CHECKOUT
========================================= */

.order-summary{
    background:#09111f;

    border:
    1px solid #1f3556;

    border-radius:1rem;

    padding:1rem;
}

.order-summary div{
    display:flex;
    justify-content:space-between;
    gap:1rem;

    padding:.45rem 0;
}

.summary-total{
    border-top:
    1px solid #1f3556;

    margin-top:.5rem;

    padding-top:1rem !important;

    font-size:1.2rem;
}

.summary-total b{
    color:var(--lime);
}

/* =========================================
   WHATSAPP
========================================= */

.whatsapp{
    position:fixed;

    right:20px;
    bottom:20px;

    z-index:50;

    width:58px;
    height:58px;

    border-radius:50%;

    display:grid;
    place-items:center;

    background:#22c55e;

    color:white;

    text-decoration:none;

    font-size:30px;

    box-shadow:
    0 15px 45px rgba(34,197,94,.35);
}

/* =========================================
   DESKTOP
========================================= */

@media(min-width:992px){

    .container,
    .container-fluid{
        max-width:1400px;
    }

    footer .footer-grid{
        display:grid;

        grid-template-columns:
        repeat(4,1fr);

        gap:30px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:992px){

    .hero-content h1{
        font-size:54px;
    }

    .admin-sidebar{
        position:static !important;
    }

}

@media(max-width:768px){

    .hero-slide{
        min-height:520px;
    }

    .hero-content{
        padding:50px 0;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-search{
        flex-direction:column;
    }

    .promo-strip-box{
        flex-direction:column;

        text-align:center;

        padding:35px;
    }

    .section-header{
        flex-direction:column;
        align-items:start;
    }

    .product-grid{
        grid-template-columns:
        repeat(2,minmax(0,1fr));

        gap:12px;
    }

    .product-card{
        border-radius:18px;
    }

    .product-image-wrap{
        padding:12px;
    }

    .product-title{
        font-size:13px;
        min-height:38px;
        line-height:1.35;
    }

    .product-price{
        font-size:16px;
    }

    .product-old-price{
        font-size:12px;
    }

    .product-body{
        padding:12px;
    }

    .product-actions{
        flex-direction:column;
        gap:6px;
        padding:0 12px 12px;
    }

    .product-actions .btn{
        width:100%;
        font-size:13px;
        padding:8px 10px;
    }

    .sale-badge{
        font-size:11px;
        padding:5px 9px;
        top:8px;
        right:8px;
    }

    .gallery-main{
        height:280px;
    }

}

@media(max-width:520px){

    .product-grid{
        grid-template-columns:
        repeat(2,minmax(0,1fr));

        gap:10px;
    }

    .product-image-wrap{
        padding:10px;
    }

    .product-title{
        font-size:12px;
        min-height:34px;
    }

    .product-price{
        font-size:15px;
    }

    .product-actions .btn{
        font-size:12px;
        padding:7px 8px;
    }

}



/* =========================
   NEW PC BUILDER
========================= */

.builder-hero{
    max-width:900px;
}

.builder-top-summary{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    padding:22px;
}

.builder-top-summary div{
    background:#07111f;
    border:1px solid rgba(0,229,255,.10);
    border-radius:18px;
    padding:18px;
}

.builder-top-summary span{
    display:block;
    color:#94a3b8;
    font-size:14px;
    margin-bottom:8px;
}

.builder-top-summary b{
    font-size:22px;
}

.builder-section-title{
    font-size:24px;
    font-weight:900;
    margin:28px 0 16px;
}

.builder-picker{
    padding:22px;
}

.builder-picker-head{
    display:flex;
    justify-content:space-between;
    gap:18px;
    align-items:start;
    margin-bottom:18px;
}

.builder-picker-head h3{
    font-size:22px;
    font-weight:900;
    margin-bottom:4px;
}

.builder-picker-head p{
    margin:0;
    color:#94a3b8;
}

.builder-selected-pill{
    background:#00e5ff;
    color:#001018;
    font-weight:900;
    padding:7px 12px;
    border-radius:999px;
    font-size:13px;
    white-space:nowrap;
}

.builder-selected-item,
.builder-selected-list div{
    margin-top:16px;
    padding:14px;
    border-radius:16px;
    background:#07111f;
    border:1px solid rgba(0,229,255,.12);
    display:flex;
    justify-content:space-between;
    gap:14px;
}

.builder-selected-item span,
.builder-selected-list span{
    color:#bef264;
    font-weight:900;
}

.builder-alert-list p:last-child{
    margin-bottom:0 !important;
}

/* =========================
   VISUALIZER
========================= */

.pc-builder-case{

    position:relative;

    width:100%;

    max-width:360px;

    aspect-ratio:3/4;

    margin:0 auto;

    border-radius:28px;

    background:
    radial-gradient(
        circle at top,
        rgba(0,229,255,.05),
        transparent 40%
    ),
    linear-gradient(
        180deg,
        #07111f,
        #020617
    );

    border:
    2px solid rgba(255,255,255,.08);

    box-shadow:
    inset 0 0 50px rgba(0,0,0,.65);

    overflow:hidden;

    padding:18px;
}

.pc-builder-case.complete{
    border-color:#00ff99;
    box-shadow:
        inset 0 0 40px rgba(0,0,0,.55),
        0 0 45px rgba(0,255,153,.20);
}

.viz-part{
    position:absolute;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    font-weight:900;
    color:#64748b;
    background:#111827;
    border:1px solid rgba(255,255,255,.06);
    border-radius:10px;
    opacity:.45;
    transition:.25s ease;
}

.viz-part.active{
    color:#001018;
    background:#00e5ff;
    opacity:1;
    border-color:#00e5ff;
    box-shadow:
        0 0 18px rgba(0,229,255,.70),
        0 0 45px rgba(0,229,255,.20);
}

.pc-builder-case.complete .viz-part.active{
    background:#00ff99;
    border-color:#00ff99;
    box-shadow:
        0 0 18px rgba(0,255,153,.70),
        0 0 45px rgba(0,255,153,.20);
}

/* =========================
   FINAL VISUALIZER LAYOUT
========================= */

/* MOTHERBOARD */

.viz-motherboard{

    left:14%;
    top:14%;

    width:64%;
    height:54%;

    border-radius:22px;

    z-index:1;
}

/* CPU */

.viz-cpu{

    left:28%;
    top:24%;

    width:16%;
    height:12%;

    z-index:3;
}

/* COOLER */

.viz-cooler{

    left:48%;
    top:23%;

    width:16%;
    height:13%;

    border-radius:50%;

    z-index:3;
}

/* RAM */

.viz-ram{

    left:66%;
    top:20%;

    width:7%;
    height:34%;

    border-radius:999px;

    z-index:4;
}

/* GPU */

.viz-gpu{

    left:22%;
    top:54%;

    width:54%;
    height:10%;

    border-radius:12px;

    z-index:3;
}

/* STORAGE */

.viz-storage{

    left:56%;
    bottom:18%;

    width:26%;
    height:8%;

    border-radius:10px;

    z-index:3;
}

/* PSU */

.viz-psu{

    left:12%;
    bottom:12%;

    width:30%;
    height:14%;

    border-radius:12px;

    z-index:3;
}

.builder-visual-status{
    text-align:center;
    margin-top:18px;
    color:#94a3b8;
    font-weight:900;
}

.builder-visual-status.ready{
    color:#00ff99;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .builder-top-summary{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .builder-top-summary{
        grid-template-columns:1fr;
    }

    .builder-picker-head{
        flex-direction:column;
    }

}