
html,
body,
button,
input,
select,
textarea,
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
font-family:
    'Poppins',
    sans-serif;
}


body{
    background:#f4f7fc;
    color:#111827;
       -webkit-text-size-adjust:100% !important;
}


/* HEADER */

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.logo{
    color:#2563eb;
    font-size:32px;
    font-weight:700;
}

.subtitle{
    color:#94a3b8;
    font-size:14px;
}

.avatar{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#2563eb;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 20px rgba(37,99,235,.25);
}

/* TOP LOGO */
.header-logo-full{
    height:52px;
    width:auto;
    display:block;
}
.top-logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-box{
    width:52px;
    height:52px;

    border-radius:16px;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    box-shadow:
    0 6px 18px rgba(37,99,235,.15);
}

.logo-box img{
    width:100%;
    height:100%;

    object-fit:contain;

    display:block;
}
.logo-text{
    font-size:26px;
    font-weight:700;
    color:#2563eb;
}

/* SEARCH */

.search{
    width:100%;
    background:white;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:15px 18px;
    outline:none;
    font-size:14px;
    margin-top:10px;
    box-shadow:0 6px 20px rgba(0,0,0,.04);
}

/* USER BANNER */

.user-banner{
    margin-top:18px;
    background:linear-gradient(135deg,#2563eb,#4f8dfd);
    border-radius:28px;
    padding:20px;
    color:white;
    display:flex;
    flex-direction:column;
    gap:18px;
    box-shadow:0 12px 30px rgba(37,99,235,.25);
}

.banner-left{
    display:flex;
    align-items:center;
    gap:14px;
}

.user-icon{
    width:55px;
    height:55px;
    border-radius:18px;
    background:rgba(255,255,255,.15);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    backdrop-filter:blur(8px);
}

.banner-left h2{
    font-size:18px;
    margin-bottom:3px;
}

.banner-left p{
    font-size:13px;
    opacity:.9;
}

.banner-right{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    gap:25px;
}

.stat-box{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.stat-label{
    font-size:12px;
    opacity:.85;
}

.stat-box h3{
    margin-top:4px;
    font-size:18px;
}

.divider{
    width:1px;
    height:40px;
    background:rgba(255,255,255,.25);
}
/* MOBILE */

@media(max-width:768px){

    .user-banner{
        flex-direction:column;
        align-items:flex-start;
    }

    .banner-right{
    width:100%;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:14px;
}

    .banner-left h2{
        font-size:22px;
    }

    .stat-box h3{
        font-size:20px;
    }

}



.stat-box h3{
    font-size:16px;
}

.stat-icon{
    width:38px;
    min-width:38px;
    height:38px;
    min-height:38px;
}

.stat-icon i{
    width:18px;
    height:18px;
}

.divider{
    height:35px;
}


/* BANNER STATS */

.stat-item{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.stat-icon{
    width:42px;
    min-width:42px;
    height:42px;
    min-height:42px;
    border-radius:14px;
    background:rgba(255,255,255,.15);
    display:flex;
    justify-content:center;
    align-items:center;
    backdrop-filter:blur(8px);
    flex-shrink:0;
}

.stat-icon i{
    width:20px;
    height:20px;
    color:white;
}

/* SECTION */

.section-title{
    margin:28px 0 14px;
    font-size:20px;
    font-weight:700;
}

/* CATEGORY */

.category-wrap{
    display:flex;
    gap:14px;
    overflow-x:auto;
    padding-bottom:5px;
}

.category-wrap::-webkit-scrollbar{
    display:none;
}

.category{
    min-width:92px;
    height:92px;
    background:white;
    border-radius:24px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    font-size:13px;
    color:#2563eb;
    text-decoration:none;
}

/* PRODUCT */

.product-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.card{
    background:white;
    border-radius:28px;
    padding:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.card-image{
    height:110px;
    background:#edf3ff;
    border-radius:22px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:38px;
}

.card h4{
    font-size:15px;
    margin-top:12px;
}

.price{
    font-size:16px;
}

/* NAVBAR */

.bottom-nav{
    position:fixed;
    left:18px;
    right:18px;
    bottom:15px;
    background:white;
    border-radius:26px;
    padding:10px 8px;
    display:flex;
    justify-content:space-around;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    z-index:999;
}

.nav-item{
    text-decoration:none;
    color:#9ca3af;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
    font-size:12px;
    font-weight:500;
    position:relative;
    min-width:65px;
}

.nav-item i{
    width:22px;
    height:22px;
    stroke-width:2;
}

.nav-item.active{
    color:#2563eb;
}

.nav-item.active::before{
    content:'';
    position:absolute;
    top:-10px;
    width:24px;
    height:4px;
    border-radius:10px;
    background:#2563eb;
}

/* APP WIDTH */

body{
    background:#f4f7fc;
}

.container{
    width:100%;
    max-width:480px;
    margin:18px auto 0;
    padding:0 18px 120px;
}

/* DESKTOP */

@media(min-width:768px){

    .container{
        max-width:1100px;
        margin:24px auto 0;
        padding:0 26px 120px;
    }
    .user-banner{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        padding:28px 35px;
    }

    .banner-left h2{
        font-size:30px;
    }

    .banner-left p{
        font-size:15px;
    }

  .banner-right{
    display:flex;
    align-items:center;
    gap:30px;
    width:auto;
}

.stat-item{
    display:flex;
    align-items:center;
    gap:14px;
}

    .stat-box{
        min-width:130px;
    }

    .stat-box h3{
        font-size:32px;
    }

    .divider{
        height:55px;
    }

    .product-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

/* TOP HEADER */

.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    margin-bottom:24px;
}


/* CART */

.cart-btn{
    width:48px;
    height:48px;
    border-radius:18px;
    background:white;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    text-decoration:none;
    color:#2563eb;
    transition:.2s;
}

.cart-btn:hover{
    transform:translateY(-2px);
}

.cart-btn i{
    width:22px;
    height:22px;
}

.logo-box{
    box-shadow:0 10px 24px rgba(37,99,235,.18);
}

.cart-btn{
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}

/* PREMIUM HEADER */

.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}




/* HEADER ACTIONS */

.header-actions{
    display:flex;
    gap:10px;
}

.icon-btn{
    width:48px;
    height:48px;
    border-radius:18px;
    background:white;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#2563eb;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    transition:.2s;
}

.icon-btn:hover{
    transform:translateY(-2px);
}

.icon-btn i{
    width:22px;
    height:22px;
}
/* SEARCH PREMIUM */

.search-wrap{
    display:flex;
    gap:12px;
    margin-bottom:18px;
}

.search-box{
    flex:1;
    display:flex;
    align-items:center;
    gap:10px;
    background:white;
    border-radius:22px;
    padding:0 18px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.search-box i{
    width:20px;
    height:20px;
    color:#94a3b8;
}

.search{
    flex:1;
    border:none;
    background:none;
    padding:18px 0;
    outline:none;
    box-shadow:none;
    margin:0;
}

.filter-btn{
    width:56px;
    border:none;
    border-radius:22px;
    background:#2563eb;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 25px rgba(37,99,235,.25);
}

.filter-btn i{
    width:22px;
    height:22px;
}

/* FULL MOBILE AUTH */

.auth-page{

    min-height:100dvh;
    display:flex;
    justify-content:center;
    align-items:center;

    padding:
    25px
    18px
    95px;

    box-sizing:border-box;

}

@media(max-width:768px){

    .auth-page{

        min-height:100dvh;

        align-items:center;

        padding:
        20px
        18px
        90px;

    }

    .auth-card{

        margin:0;
        width:100%;
        max-width:100%;

    }

}

.modern-auth{
    width:100%;
    max-width:430px;
    background:white;
    border-radius:38px;
    padding:38px 28px;
    box-shadow:
    0 20px 45px rgba(37,99,235,.08);
    animation:cardShow .45s ease;
}


/* MOBILE FULL FIX */

@media(max-width:768px){

    .auth-page{
        min-height:100dvh;
        padding:
        20px
        18px
        90px;
        align-items:center;
    }

    .modern-auth{

        min-height:auto;
        max-width:100%;
        border-radius:32px;

        padding:
        35px
        24px;

        display:block;
        margin:0;

    }

}

/* ANIMATION */

@keyframes cardShow{

    from{
        opacity:0;
        transform:
        translateY(25px)
        scale(.98);
    }

    to{
        opacity:1;
        transform:
        translateY(0)
        scale(1);
    }
}

/* LOGO */

.auth-logo{
    text-align:center;
    margin-bottom:32px;
}

.logo-circle{
    width:78px;
    height:78px;
    margin:auto;
    border-radius:26px;
    background:
    linear-gradient(
    135deg,
    #2563eb,
    #4f8dfd
    );
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    font-weight:700;
    box-shadow:
    0 14px 30px rgba(37,99,235,.25);
    margin-bottom:18px;
    transition:.25s;
}

.logo-circle{
    transition:.35s;
}

.logo-circle:hover{
    transform:
    translateY(-6px)
    rotate(-6deg)
    scale(1.05);

    box-shadow:
    0 20px 35px rgba(37,99,235,.35);
}
/* FORM */

.modern-auth form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.input-group{
    position:relative;
    display:flex;
    align-items:center;
    gap:12px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:0 18px;
    transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease;
    overflow:hidden;
}

/* glow line */

.input-group::before{
    content:'';
    position:absolute;
    left:-100%;
    top:0;
    width:100%;
    height:100%;
    pointer-events:none;
    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(37,99,235,.08),
        transparent
    );
    transition:.45s;
}

.input-group:hover{
    transform:
    translateY(-5px)
    scale(1.02);

    background:white;

    border-color:#bfdbfe;

    box-shadow:
    0 18px 35px rgba(37,99,235,.12),
    0 0 0 3px rgba(37,99,235,.04);
}

.input-group:hover::before{
    left:100%;
}

.input-group:focus-within{
    transform:
    translateY(-4px)
    scale(1.02);

    background:white;

    border-color:#2563eb;

    box-shadow:
    0 0 0 4px rgba(37,99,235,.10),
    0 15px 35px rgba(37,99,235,.15);
}

.input-group i{
    width:20px;
    height:20px;
    color:#94a3b8;
    flex-shrink:0;
    transition:
    color .25s ease,
    transform .25s ease;
position:relative;
z-index:2;

}

.input-group:hover i{
    color:#2563eb;
    transform:
    rotate(-8deg)
    scale(1.08);
}

.input-group:focus-within i{
    color:#2563eb;
    transform:
    scale(1.12);
}

.input-group input{
    flex:1;
    width:100%;
    border:none !important;
    outline:none !important;
    background:transparent;
    box-shadow:none !important;
    padding:18px 0;
    font-size:15px;
    color:#111827;
    position:relative;
    z-index:2;
}


/* BUTTON */

.auth-btn{
    position:relative;
    overflow:hidden;
    border:none;
    border-radius:24px;
    padding:18px;
    background:
    linear-gradient(
    135deg,
    #2563eb,
    #4f8dfd
    );
    color:white;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    margin-top:10px;
    box-shadow:
    0 12px 28px rgba(37,99,235,.25);
    transition:.3s;
}

/* shine effect */

.auth-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:
    rgba(255,255,255,.25);
    transform:skewX(-25deg);
    transition:.5s;
}

.auth-btn:hover{

    transform:
    translateY(-5px)
    scale(1.02);

    box-shadow:
    0 20px 40px rgba(37,99,235,.35);

    background:
    linear-gradient(
    135deg,
    #1d4ed8,
    #3b82f6
    );
}

.auth-btn:hover::before{
    left:140%;
}

.auth-btn:active{
    transform:scale(.98);
}

/* LINK */

.auth-link{
    margin-top:26px;
    text-align:center;
    color:#94a3b8;
    font-size:14px;
}

.auth-link a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
    transition:.2s;
}

.auth-link a:hover{
    opacity:.8;
}

/* LOGIN ERROR */

/* TOAST POPUP */

.toast{
    position:fixed;
    top:25px;
    right:25px;

    display:flex;
    align-items:center;
    gap:14px;

    min-width:320px;
    padding:16px 18px;

    background:white;
    border-radius:22px;

    box-shadow:
    0 18px 45px rgba(0,0,0,.10);

    z-index:99999;

    opacity:0;
    transform:
    translateY(-20px)
    scale(.95);

    pointer-events:none;
}


.toast.show{
    animation:
    toastShow .35s cubic-bezier(.22,1,.36,1) forwards,
    toastHide .4s ease 3s forwards;
}

/* ERROR */

.toast-error{
    border-left:5px solid #ef4444;
}

.toast-icon{
    width:44px;
    height:44px;
    border-radius:14px;
    background:#fee2e2;
    color:#ef4444;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.toast-icon i{
    width:22px;
    height:22px;
}

.toast-content strong{
    display:block;
    color:#111827;
    margin-bottom:2px;
}

.toast-content p{
    color:#6b7280;
    font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

    .toast{
        left:15px;
        right:15px;
        top:15px;
        min-width:auto;
    }
}

/* ANIMATION */

@keyframes toastShow{

    from{
        opacity:0;
        transform:
        translateY(-20px)
        scale(.95);
    }

    to{
        opacity:1;
        transform:
        translateY(0)
        scale(1);
    }
}

@keyframes toastHide{

    to{
        opacity:0;
        transform:
        translateY(-15px)
        scale(.96);
    }
}


/* PROFILE */

.profile-card{
    background:white;
    border-radius:32px;
    padding:35px;
    text-align:center;
    box-shadow:
    0 12px 30px rgba(0,0,0,.06);
}

.profile-avatar{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:30px;
    background:
    linear-gradient(
    135deg,
    #2563eb,
    #4f8dfd
    );
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    font-weight:700;
    margin-bottom:18px;
}

.profile-card h2{
    margin-bottom:5px;
}

.profile-card p{
    color:#94a3b8;
    margin-bottom:25px;
}

.logout-btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:20px;
    background:#ef4444;
    color:white;
    text-decoration:none;
}

/* SUCCESS */

.toast-success{
    border-left:5px solid #22c55e;
}

.toast-success .toast-icon{
    background:#dcfce7;
    color:#22c55e;
}

.logout-btn{
    border:none;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 28px;
    border-radius:22px;
    background:#ef4444;
    color:white;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.25s;
    box-shadow:
    0 10px 25px rgba(239,68,68,.22);
}

.logout-btn:hover{

    transform:
    translateY(-3px);

    background:#dc2626;

    box-shadow:
    0 16px 35px rgba(239,68,68,.32);
}

.logout-btn i{
    width:18px;
    height:18px;
}

.eye-btn{
    border:none;
    background:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#94a3b8;
    transition:.25s;
    flex-shrink:0;
    padding:0;
}

.eye-btn:hover{
    color:#2563eb;
    transform:scale(1.1);
}

.eye-btn i{
    width:20px;
    height:20px;
}

.card-image{

    width:100%;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
    border-radius:18px;
    background:#f8fafc;

}

.card-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}

.promo-slider{

    margin:18px 0 22px;
    position:relative;
    overflow:hidden;

}
.promo-slider{
    margin:20px 0 28px;
    overflow:hidden;
}

.promo-track{
    display:flex;
    transition:.5s ease;
}

.promo-card{

    min-width:100%;
    height:120px;

    border-radius:28px;
    padding:24px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    box-sizing:border-box;
    color:#fff;
    position:relative;
    overflow:hidden;

}

.promo-card::after{

    content:'';
    position:absolute;
    width:180px;
    height:180px;

    background:rgba(
        255,
        255,
        255,
        .08
    );

    border-radius:50%;

    right:-60px;
    top:-50px;

}

.promo-text{
    position:relative;
    z-index:2;
}

.promo-badge{

    display:inline-block;

    padding:6px 12px;

    background:rgba(
        255,
        255,
        255,
        .18
    );

    border-radius:30px;
    font-size:11px;
    margin-bottom:10px;

}

.promo-card h3{
    margin:0 0 6px;
    font-size:28px;
    font-weight:700;
}

.promo-card p{
    margin:0;
    font-size:14px;
    opacity:.95;
}

.promo-icon{

    position:relative;
    z-index:2;

    width:58px;
    height:58px;

    border-radius:18px;

    background:rgba(
        255,
        255,
        255,
        .18
    );

    display:flex;
    align-items:center;
    justify-content:center;

}

.promo-icon i{
    width:30px;
    height:30px;
}

.promo-1{
    background:
    linear-gradient(
        135deg,
        #2563eb,
        #4f46e5
    );
}

.promo-2{
    background:
    linear-gradient(
        135deg,
        #f59e0b,
        #f97316
    );
}

.promo-3{
    background:
    linear-gradient(
        135deg,
        #10b981,
        #06b6d4
    );
}


.promo-track{
    display:flex;
    transition:transform .28s ease;
    touch-action:pan-y;
    cursor:grab;
    will-change:transform;
}

.promo-track:active{
    cursor:grabbing;
}


.modern-card{

background:#fff;
border-radius:26px;
overflow:hidden;
padding:12px;
box-shadow:
0 12px 30px rgba(0,0,0,.05);
transition:.3s;
position:relative;

}

.modern-card:hover{

transform:translateY(-6px);
box-shadow:
0 20px 40px rgba(37,99,235,.12);

}

.card-image{

position:relative;
overflow:hidden;
border-radius:22px;
height:150px;

}

.card-image img{

width:100%;
height:100%;
object-fit:cover;
transition:.35s;

}

.modern-card:hover img{

transform:scale(1.06);

}

.cat-badge{

position:absolute;
top:12px;
left:12px;
background:
rgba(255,255,255,.95);
padding:6px 12px;
border-radius:999px;
font-size:11px;
font-weight:700;
color:#2563eb;

}

.stock-badge{

position:absolute;
top:12px;
right:12px;
background:#be00a5;
color:#fff;
padding:6px 10px;
border-radius:999px;
font-size:11px;
font-weight:700;

}

.card-body{

    padding:12px 16px 16px;

}

.card-body h4{

font-size:5px;
font-weight:700;
margin-bottom:8px;
line-height:1.3;

}

.card-meta{

margin-bottom:12px;

}

.promo-mini{

display:flex;
align-items:center;
justify-content:center;

height:28px;

padding:0 10px;

background:#fef3c7;
color:#d97706;

border-radius:999px;

font-size:11px;
font-weight:600;

line-height:1;

}

.price-row{

display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:14px;

}

.price{

font-size:22px;
font-weight:800;
color:#2563eb;

}

.card-actions{

display:flex;
gap:10px;

}

.cart-btn{

width:48px;
height:48px;
border:none;
border-radius:16px;
background:#eff6ff;
color:#2563eb;
cursor:pointer;
transition:.25s;

}

.cart-btn:hover{

background:#2563eb;
color:#fff;

}

.buy-btn{

flex:1;
border:none;
border-radius:16px;
background:
linear-gradient(
90deg,
#2563eb,
#4f8cff
);
color:white;
font-weight:700;
font-size:14px;
display:flex;
align-items:center;
justify-content:center;
gap:8px;
cursor:pointer;
transition:.25s;

}

.buy-btn:hover{

transform:scale(1.03);

}

.card-meta{

display:flex;
gap:8px;
flex-wrap:wrap;
margin-bottom:12px;

}

.duration-badge{

display:flex;
align-items:center;
gap:5px;
background:#eef2ff;
color:#4338ca;
padding:5px 10px;
border-radius:999px;
font-size:11px;
font-weight:700;

}

.product-category,
.promo-mini,
.duration-badge{

  display:inline-block;
    margin:0 0 8px;

    padding:5px 10px;
    border-radius:12px;

    background:#eef4ff;
    color:#2563eb;

    font-size:12px;
    font-weight:600;

}

/* Voucher */

.product-category{

background:#eff6ff;
color:#2563eb;

}

/* Promo */

.promo-mini{

background:#fef3c7;
color:#d97706;

}

/* Durasi */

.duration-badge{

background:#eef2ff;
color:#4338ca;

}

/* Semua icon sama */

.product-category svg,
.duration-badge svg,
.promo-mini svg{

width:14px;
height:14px;
min-width:14px;

}


.product-price{
  font-variant-numeric:
    tabular-nums;
font-size:24px;
font-weight:800;
color:#2563eb;

margin-top:10px;
margin-bottom:14px;

}

.modern-card{

    background:#fff;
    border-radius:24px;
    overflow:hidden;

    padding:0;

    border:1px solid #eef2ff;

    box-shadow:
    0 8px 25px rgba(0,0,0,.05);

    transition:.25s;

}

.modern-card:hover{

    transform:translateY(-5px);

    box-shadow:
    0 18px 35px rgba(37,99,235,.10);

}

.card-body{

    padding:16px;

}

.card-body h4,
.product-title{

    font-size:18px;
    font-weight:700;
    line-height:1.3;

    margin:0 0 6px;
}


.product-price{

    font-size:18px;
    font-weight:800;

    color:#2563eb;

    margin:10px 0 12px;

}

.cart-btn{

    width:42px;
    height:42px;

    border-radius:12px;

}

.buy-btn{

    height:42px;

    border-radius:12px;

    font-size:13px;

}

.modern-card{
    border-radius:20px;
}

.card-image{
    height:110px;
}

.product-price{
    font-size:20px;
}

.product-category,
.promo-mini,
.duration-badge{
    height:26px;
    font-size:11px;
}

.buy-btn{
    height:40px;
}

.cart-btn{
    width:40px;
    height:40px;
}

.product-info-row{
     display:flex;
    gap:12px;
    margin:0 0 8px;
    font-size:14px;
}

.rating{

    font-size:13px;
    font-weight:700;

    color:#f59e0b;

}

.sold{

    font-size:12px;
    font-weight:600;

    color:#64748b;

}

.duration-row{
 margin-top:4px;
    font-size:14px;
    color:#6b7280;
}

.product-price{
    font-size:24px;
    font-weight:800;
    color:#2563eb;
    margin:10px 0;
}

.buy-btn-full{
    width:100%;
    height:42px;
    border:none;
    border-radius:12px;
    background:linear-gradient(
        135deg,
        #2563eb,
        #4f8dfd
    );
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    cursor:pointer;
}
.buy-btn-full i{
    flex-shrink:0;
}
.buy-btn-full:hover{
    opacity:.9;
}


.stock-row{

   margin:0 0 10px;
    font-size:14px;

}

.stock-row strong{

    color:#16a34a;
    font-weight:700;

}

.stock-row svg{

    width:14px;
    height:14px;

}

.card-image{

    height:140px;
    overflow:hidden;

    border-radius:20px 20px 0 0;

}

.card-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

}

.no-image{

    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f1f5f9;

}

.physical-info{

display:flex;
gap:8px;
flex-wrap:wrap;

margin-bottom:8px;

}

.physical-info span{

background:#f1f5f9;

padding:5px 10px;

border-radius:999px;

font-size:12px;

font-weight:600;

}


.card-image{
    height:180px;
    overflow:hidden;
    background:#fff;
}

.card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.physical-image{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
}

.physical-image img{
    object-fit:contain !important;
    width:100%;
    height:100%;
}

.product-price{

  margin:0;
    font-size:24px;
    font-weight:800;
    color:#2563eb;

}

.product-price .currency{

    font-size:14px;
    font-weight:700;

    color:#2563eb;

    margin-bottom:5px;

}

.product-price .amount{

    font-size:30px;
    font-weight:900;

    color:#2563eb;

    text-shadow:
    0 2px 8px rgba(
        37,
        99,
        235,
        .15
    );

}

.product-price{

    display:flex;
    align-items:baseline;

    gap:4px;

    margin:14px 0;
}

.product-price .currency{

    font-size:18px;
    font-weight:700;

    color:#2563eb;
}

.product-price .amount{

    font-size:42px;
    font-weight:900;

    line-height:1;

    color:#2563eb;

    font-variant-numeric:
    tabular-nums;
}

.product-price .currency{

    font-size:13px;

}

.product-title-wrap{
    margin-bottom:10px;
}



.product-mini-info{

  display:inline-block;
     margin:0 0 6px;
}

.product-title{
    font-size:15px;
    font-weight:700;
    line-height:1.35;
    margin:0 0 4px;
}

.product-action-bar{

    position:fixed;
    bottom:0;
    left:0;
    right:0;

    background:#fff;

    padding:12px;

    display:flex;
    gap:10px;

    box-shadow:
    0 -5px 20px rgba(0,0,0,.08);

    z-index:9999;
}

.wishlist-btn{

    width:55px;
    height:55px;

    border:none;
    border-radius:16px;

    background:#f8fafc;
}

.cart-btn-detail{

    width:150px;
    height:55px;

    border:none;

    border-radius:16px;

    background:#eff6ff;

    color:#2563eb;

    font-weight:700;
}

.buy-btn-detail{

    flex:1;
    height:55px;

    border:none;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #4f8dfd
    );

    color:white;

    font-weight:700;
}


.product-detail{

    max-width:900px;
    margin:auto;

    padding:20px;
}

.product-detail-image{

    width:100%;

    border-radius:20px;
}

.product-price-big{

    font-size:36px;

    font-weight:800;

    color:#2563eb;

    margin:15px 0;
}

.product-meta{

    display:flex;

    gap:20px;

    margin:15px 0;

    color:#64748b;
}

.product-action-bar{

    position:fixed;

    bottom:0;
    left:0;
    right:0;

    background:#fff;

    padding:15px;

    display:flex;

    gap:10px;

    box-shadow:0 -5px 20px rgba(0,0,0,.08);

    z-index:9999;
}

.wishlist-btn{

    width:55px;
}

.cart-btn{

    width:180px;
}

.buy-btn{

    flex:1;
}

@media (max-width:768px){

.product-grid{
    grid-template-columns:
    repeat(2,minmax(170px,1fr));
}

}

.buy-btn-full{

    width:100%;

    height:52px;

    display:flex;

    align-items:center;
    justify-content:center;

    gap:8px;

    white-space:nowrap;

    font-size:15px;
    font-weight:700;

    text-decoration:none;
}

@media (max-width:768px){

.card-body{
    padding:14px;
}

.card-image{
    height:200px;
}

.buy-btn-full{
    margin-top:12px;
}

}

/* MOBILE */

@media (max-width:768px){

.voucher-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:12px;
}

.physical-grid{

    display:grid;

    grid-template-columns:
    1fr;

    gap:16px;
}

.physical-grid .modern-card{

    width:100%;
}

.physical-grid .card-image{

    height:260px;
}

.physical-grid .product-title{

    font-size:20px;
    line-height:1.3;
}

}

.product-option{
    margin:18px 0;
}

.option-title{
    display:block;
    font-size:15px;
    font-weight:600;
    margin-bottom:10px;
}

.duration-list{

    display:flex;

    flex-wrap:wrap;

    gap:10px;
}

.duration-item{

    border:none;

    background:#f1f5f9;

    color:#475569;

    padding:10px 16px;

    border-radius:12px;

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    transition:.2s;
}

.duration-item.active{

    background:linear-gradient(
        135deg,
        #2563eb,
        #4f86ff
    );

    color:#fff;

    box-shadow:
    0 4px 12px rgba(37,99,235,.25);
}

.guest-banner{

    background:linear-gradient(
        135deg,
        #2563eb,
        #4f86ff
    );

    border-radius:24px;

    padding:25px;

    color:#fff;

    margin-bottom:20px;

    box-shadow:
    0 10px 25px rgba(37,99,235,.25);
}

.guest-banner h2{

    margin:0 0 8px;

    font-size:28px;

    font-weight:800;
}

.guest-banner p{

    margin:0 0 20px;

    opacity:.9;

    font-size:15px;
}

.guest-banner .buy-btn-full{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    color:#2563eb;

    padding:12px 24px;

    border-radius:14px;

    font-weight:700;

    text-decoration:none;

    transition:.2s;
}

.guest-banner .buy-btn-full:hover{

    transform:translateY(-2px);
}

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:35px 0 20px;
}

.section-badge{

    display:inline-block;

    padding:6px 12px;

    background:#dbeafe;

    color:#2563eb;

    border-radius:999px;

    font-size:11px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:8px;
}

.section-title{

    margin:0;

    font-size:28px;

    font-weight:800;

    color:#111827;

    position:relative;
}

.section-title::after{

    content:'';

    display:block;

    width:60px;

    height:4px;

    margin-top:8px;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        #2563eb,
        #60a5fa
    );
}

.section-link{

    color:#2563eb;

    font-size:14px;

    font-weight:700;

    text-decoration:none;
}

.cart-icon{
    position:relative;
}

.cart-badge{

    position:absolute;

    top:-5px;
    right:-5px;

    width:20px;
    height:20px;

    border-radius:50%;

    background:#ef4444;

    color:#fff;

    font-size:11px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.product-stats{

    display:flex;
    flex-wrap:wrap;

    gap:8px;

    margin:12px 0 15px;
}

.stat-chip{

    display:flex;
    align-items:center;
    gap:6px;

    background:#f8fafc;

    border:1px solid #e5e7eb;

    padding:8px 12px;

    border-radius:999px;

    font-size:13px;
    font-weight:600;

    color:#475569;
}

.stat-chip svg{

    width:15px;
    height:15px;

    color:#2563eb;
}

.stat-chip{

    background:linear-gradient(
        180deg,
        #ffffff,
        #f8fafc
    );

    box-shadow:
    0 2px 10px rgba(0,0,0,.04);
}


.card-image{
    position:relative;
    overflow:hidden;
}

.product-category-badge{

    position:absolute;

    top:10px;
    left:10px;

    z-index:2;

    background:rgba(37,99,235,.95);

    color:#fff;

    padding:6px 12px;

    border-radius:999px;

    font-size:11px;
    font-weight:700;

    backdrop-filter:blur(10px);

    box-shadow:
    0 4px 12px rgba(37,99,235,.25);
}

.badge-digital{
    background:#2563eb;
}

.badge-physical{
    background:#8f0043;
}

.header-logo{
    width:60px;
    height:60px;
    object-fit:contain;
    display:block;
}