body {
    background: #f8fafc;
    font-family: 'Rubik', sans-serif;
    color: #0f172a;
    overflow-x: hidden;
}
.container-custom {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    padding-left: 30px;
    padding-right: 30px;
}
/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

.topbar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 18px 0;
}
.logo {
    height: 30px;
}
.header-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 6px;
}
.header-subtitle {
    font-size: 15px;
    color: #64748b;
}

.cart-badge {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background: #495294;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-left: 8px;
}

/*
|--------------------------------------------------------------------------
| COUNTDOWN
|--------------------------------------------------------------------------
*/

.countdown-wrapper{
    padding:30px 20px;
}

.countdown-box{
    background:#495294;
    border-radius:20px;
    padding:18px 48px;
    color:#fff;
}

.countdown-box .row{
    align-items:center;
    justify-content:space-between;
    margin:0;
}

.countdown-box .col-lg-3:first-child{
    padding-left:22px;
}

.countdown-box .col-lg-2:last-child{
    padding-right:22px;
}

.countdown-title{
    display:flex;
    align-items:center;
    font-size:17px;
    font-weight:600;
}

.countdown-title i{
    font-size:20px;
    margin-right:10px;
}

.countdown-mobile-grid{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:70px;
}

.countdown-col{
    min-width:110px;
}

.countdown-item{
    text-align:center;
}

.countdown-item h2{
    font-size:52px;
    font-weight:700;
    line-height:1;
    margin-bottom:2px;
    letter-spacing:-2px;
    color:#fff;
}

.countdown-item span{
    font-size:14px;
    opacity:.95;
}

.countdown-right{
    border-left:1px solid rgba(255,255,255,.22);
    padding-left:34px;
    margin-left:24px;
}

.countdown-right small{
    display:block;
    font-size:13px;
    margin-bottom:2px;
}

.countdown-right strong{
    font-size:16px;
    line-height:1.3;
}

@media(max-width:991px){

    .countdown-box{
        padding:16px 14px;
        max-width:100%;
        margin:0 auto;
    }

    .countdown-title{
        justify-content:center;
        margin-bottom:18px;
        text-align:center;
    }

    .countdown-mobile-grid{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:0;
        width:100%;
    }

    .countdown-col{
        min-width:auto;
        flex:1;
    }

    .countdown-item h2{
        font-size:28px;
        margin-bottom:2px;
    }

    .countdown-item span{
        font-size:12px;
    }

    .countdown-right{
        border-left:none;
        border-top:1px solid rgba(255,255,255,.2);
        margin-top:18px;
        padding-top:16px;
        padding-left:0;
        margin-left:0;
        text-align:center;
    }

}

/*
|--------------------------------------------------------------------------
| SECTION
|--------------------------------------------------------------------------
*/

.section {
    padding: 10px 0 40px;
    position: relative;
    z-index: 1;
}
.section-title {
    font-size: 36px;
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 800;
    margin-bottom: 10px;
}
.section-subtitle {
    font-size: 18px;
    color: #64748b;
}
.badge-info-custom {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
}
/*
|--------------------------------------------------------------------------
| PRODUCT
|--------------------------------------------------------------------------
*/

.product-row {
    margin-top: 40px;
}

.product-row{
    align-items: stretch;
}

.product-row:after{
    content: '';
    display: block;
    clear: both;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    border: 1px solid #eef2f7;
    height: 100%;
    transition: .2s;
}
.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15,23,42,.05);
}
.product-image{
    width:100%;
    height:auto;
    max-height:450px;
    object-fit:contain;
    background:#f8fafc;
    border-radius:18px;
    display:block;
    margin:auto;
    padding:10px;
}
.badge-preorder {
    display: inline-block;
    background: #495294;
    color: #fff;
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 16px;
    letter-spacing: .4px;
}
.product-title {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}
.product-meta {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 14px;
}
.size-badge{
    min-width:40px;
    height:40px;
    border-radius:12px;
    border:1px solid #dbe2ea;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 14px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

.size-badge:hover{
    border-color:#495294;
    color:#495294;
}

.size-badge.active{
    background:#495294;
    border-color:#495294;
    color:#fff;
}
.product-sizes{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}
.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #495294;
    margin: 18px 0 14px;
    letter-spacing: -1px;
}
.product-stock {
    font-size: 15px;
    font-weight: 500;
    color: #334155;
}
.product-sold {
    float: right;
    font-size: 14px;
    color: #94a3b8;
}
.progress {
    height: 8px;
    border-radius: 50px;
    background: #eef2f7;
    overflow: hidden;
    margin: 14px 0 20px;
}
.progress-bar {
    background: #495294;
}
.btn-order {
    background: #495294;
    border: none;
    border-radius: 14px;
    height: 48px;
    width: 100%;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    box-shadow: none;
}
.btn-order i {
    font-size: 16px;
    margin-right: 10px;
}
.btn-order:hover {
    background: #3f477f;
    color: #fff;
    transform: translateY(-1px);
}

.product-colors{
    display:flex;
    align-items:center;
    gap:10px;
}

.color-preview{
    width:28px;
    height:28px;
    border-radius:10px;
    cursor:pointer;
    border:2px solid #fff;
    box-shadow:0 0 0 1px #e2e8f0;
    transition:.2s;
}

.color-preview:hover{
    transform:scale(1.08);
}

.color-preview.active{
    box-shadow:0 0 0 2px #111827;
}

/*
|--------------------------------------------------------------------------
| INFO
|--------------------------------------------------------------------------
*/

.info-box{
    background:#fff;
    border-radius:24px;
    padding:30px 34px;
    margin-top:50px;
    border:1px solid #eef2f7;
    position:relative;
    z-index:2;
}

.info-item{
    display:flex;
    align-items:center;
    gap:16px;
    min-height:72px;
    position:relative;
}

.info-item:after{
    content:'';
    width:1px;
    height:46px;
    background:#e5e7eb;
    position:absolute;
    right:-15px;
    top:50%;
    transform:translateY(-50%);
}

.info-box .col-lg-3:last-child .info-item:after{
    display:none;
}

.info-item i{
    font-size:34px;
    color:#495294;
    flex:none;
}

.info-title{
    font-size:15px;
    line-height:1.35;
    font-weight:700;
    color:#111827;
    margin-bottom:2px;
}

.info-text{
    font-size:15px;
    line-height:1.45;
    color:#64748b;
}

@media(max-width:991px){

.info-box{
    padding:26px;
}

.info-item{
    min-height:auto;
}

.info-item:after{
    display:none;
}

}

/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/

.footer{
    background:#f8fafc;
    border-top:1px solid #e5e7eb;
    padding:34px 0;
    margin-top:30px;
    position:relative;
    z-index:1;
    clear:both;
    left: 0;
}

.footer .row{
    align-items:center;
    margin:0;
}

.footer-brand{
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.footer-logo{
    height:30px;
    width:auto;
}

.footer-divider{
    width:1px;
    height:70px;
    background:#d1d5db;
    margin:auto;
}

.footer-heading{
    font-size:18px;
    font-weight:700;
    color:#111827;
    margin-bottom:4px;
}

.footer-text{
    font-size:15px;
    color:#64748b;
    margin-bottom:4px;
}

.footer-copy{
    font-size:13px;
    color:#94a3b8;
}

.footer-social{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#495294;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:20px;
}

.info-box{
    position:relative;
    z-index:2;
    overflow:hidden;
}

@media(max-width:991px){

.footer{
    text-align:center;
}

.footer-brand{
    justify-content:center;
    margin-bottom:20px;
}

.footer-divider{
    display:none;
}

.footer-social{
    justify-content:center;
    margin-top:20px;
}

}

/*
|--------------------------------------------------------------------------
| HEADER MENU
|--------------------------------------------------------------------------
*/
.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}
.header-menu a {
    display: flex;
    align-items: center;
    color: #111827;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 0 22px;
    position: relative;
}
.header-menu a i {
    margin-right: 10px;
    font-size: 18px;
    color: #4b5563;
}
.header-menu a:not(:last-child):after {
    content: '';
    width: 1px;
    height: 22px;
    background: #d1d5db;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/*
|--------------------------------------------------------------------------
| MOBILE HEADER
|--------------------------------------------------------------------------
*/

@media(max-width:991px){

    .header{
        padding:14px 0;
    }

    .header .row{
        display:flex;
        align-items:center;
        justify-content:space-between;
        flex-wrap:nowrap;
    }

    .header-logo{
        height:42px;
        width:auto;
    }

    .header-menu{
        display:flex;
        align-items:center;
        justify-content:flex-end;
        gap:10px;
        flex-wrap:nowrap;
        height:auto;
    }

    .header-menu a{
        display:flex;
        align-items:center;
        gap:5px;
        padding:0;
        font-size:11px;
        font-weight:500;
        white-space:nowrap;
    }

    .header-menu a i{
        margin-right:0;
        font-size:14px;
    }

    .header-menu a:not(:last-child):after{
        display:none;
    }

    .cart-badge{
        width:18px;
        height:18px;
        font-size:10px;
        margin-left:5px;
    }

}

.header-divider-mobile{
    display:none;
}

@media(max-width:991px){

    .header-divider-mobile{
        display:block;
        width:1px;
        height:46px;
        background:#d1d5db;
        margin-left:10px;
    }

}

@media(max-width:991px){

    .header .col-5{
        border-right:1px solid #d1d5db;
        padding-right:12px;
    }

    .header .col-7{
        padding-left:12px;
    }

}

@media(max-width:991px){

    .mobile-logo{
        width:100%;
        max-width:140px;
        height:auto;
    }

    .header .col-4{
        border-right:1px solid #d1d5db;
        padding-right:10px;
    }

    .header .col-8{
        padding-left:10px;
    }

    .header-menu{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:8px;
    }

    .header-menu a{
        display:flex;
        align-items:center;
        gap:4px;
        font-size:11px;
        padding:0;
        white-space:nowrap;
    }

    .header-menu a i{
        font-size:13px;
        margin-right:0;
    }

    .header-menu a:after{
        display:none !important;
    }

}

@media(max-width:991px){

    .section-badge-mobile{
        margin-top:24px;
    }

}

@media(max-width:991px){

    .section-title{
        font-size:30px;
        line-height:0.95;
        letter-spacing:-2px;
        margin-bottom:5px;
    }

    .section-subtitle{
        font-size:14px;
        margin-top:0px;
    }

    .badge-info-custom{
        font-size:11px;
        padding:10px 14px;
        border-radius:50px;
        margin-top:12px;
    }

    .badge-info-custom i{
        margin-right:5px !important;
        font-size:13px;
    }
    
    .section .row{
        text-align:center;
    }

    .section-badge-mobile{
        text-align:center !important;
    }

}