
body{ font-family:Poppins; background:#f2f3f7; margin:0; }

header{

background:linear-gradient(135deg,#ff3b00,#ff7a00);

padding:14px 18px;

display:flex;
align-items:center;
justify-content:space-between;

position:sticky;
top:0;

z-index:100;

box-shadow:0 8px 20px rgba(0,0,0,.15);

}
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-img {
    height: 38px;
  }
}


.header-icons{

display:flex;

gap:18px;

font-size:18px;

color:white;

opacity:.9;

}

.header-icons i{

cursor:pointer;

transition:.2s;

}

.header-icons i:hover{

transform:scale(1.15);

opacity:1;

}
/* HERO */

.hero{

padding:20px 18px;

}

.hero-title{

margin-bottom:12px;

font-size:20px;

font-weight:700;

}

/* GRID */

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:14px;

}

/* CARD */

.hero-card{

border-radius:16px;

padding:18px;

color:white;

box-shadow:0 10px 25px rgba(0,0,0,.15);

}

/* RUNNING */

.hero-card.running{

background:linear-gradient(135deg,#ff3b00,#ff7a00);

}

/* UPCOMING */

.hero-card.upcoming{

background:linear-gradient(135deg,#6366f1,#8b5cf6);

}

/* STATS */

.hero-stats{

font-size:13px;

margin:6px 0;

opacity:.9;

}

/* COUNTDOWN */

.hero .countdown{

font-size:22px;

font-weight:700;

margin-top:6px;

letter-spacing:2px;

}

/* BUTTON */

.hero-btn{

display:inline-block;

margin-top:10px;

background:white;

color:#ff3b00;

padding:8px 12px;

border-radius:8px;

font-size:12px;

font-weight:600;

text-decoration:none;

}

.hero-btn.outline{

background:transparent;

border:1px solid white;

color:white;

}

/* MOBILE */

@media(max-width:768px){

.hero-grid{

grid-template-columns:1fr;

}

}

.countdown{ background:rgba(0,0,0,0.25); display:inline-flex; gap:10px; padding:10px 15px; border-radius:8px; margin-top:15px; font-weight:600; }


html{
scroll-behavior:smooth;
}


/* TAB MENU */

.tabs{

display:flex;

background:white;

border-bottom:1px solid #eee;

}

.tab{

flex:1;

text-align:center;

padding:12px;

cursor:pointer;

font-weight:500;

}

.tab.active{

color:#ff3b00;

border-bottom:3px solid #ff3b00;

}

/* CONTENT */

.tab-content{

display:none;

}

.tab-content.active{

display:block;

}

/* PRODUK */

.section-title{ padding:18px; font-weight:600; display:flex; justify-content:space-between; align-items:center; }

.products{ padding:0 12px 90px; display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }

.card{ background:white; border-radius:14px; overflow:hidden; box-shadow:0 6px 15px rgba(0,0,0,.06); position:relative; }

.badge{ position:absolute; top:10px; left:10px; background:#ff3b00; color:white; font-size:12px; padding:4px 8px; border-radius:6px; font-weight:600; }

.card img{ width:100%; height:150px; object-fit:cover; background:#eee; }

.card-body{ padding:12px; }

.card-body h4{ font-size:14px; margin:0 0 6px; height:36px; overflow:hidden; }

.old{ text-decoration:line-through; color:#999; font-size:12px; }

.sale{ color:#ff3b00; font-weight:700; font-size:16px; }

.progress{ height:6px; background:#eee; border-radius:10px; margin-top:6px; overflow:hidden; }

.bar{ height:100%; background:#ff3b00; }

.stock{ font-size:12px; margin-top:5px; color:#666; }

.buy-btn{ margin-top:8px; background:#ff3b00; border:none; width:100%; padding:8px; color:white; border-radius:6px; cursor:pointer; font-size:13px; }

/* STORE LIST */

.store-list{

padding:20px;

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

}
.store-card{

background:white;

border-radius:18px;

overflow:hidden;

box-shadow:
0 15px 40px rgba(0,0,0,.08),
0 4px 12px rgba(0,0,0,.05);

text-decoration:none;
color:#333;

transition:all .25s ease;

}

.store-card:hover{

transform:translateY(-4px) scale(1.01);

box-shadow:
0 20px 50px rgba(0,0,0,.12);

}

.store-card:hover{

transform:translateY(-3px);

box-shadow:
0 15px 30px rgba(0,0,0,.12);

}

/* banner */

.store-banner{

height:120px;

background:#eee;

position:relative;

overflow:hidden;

}

.store-banner img{

width:100%;
height:100%;
object-fit:cover;

}


/* VERIFIED BADGE */

.store-verified-badge{

position:absolute;

top:10px;
right:10px;

background:linear-gradient(135deg,#2ecc71,#27ae60);

color:white;

font-size:11px;

padding:4px 8px;

border-radius:20px;

display:flex;

align-items:center;

gap:4px;

font-weight:600;

box-shadow:0 4px 10px rgba(0,0,0,.2);

}


/* avatar */

.store-avatar{

position:absolute;

bottom:-18px;
left:15px;

width:34px;
height:34px;

border-radius:50%;

border:3px solid white;

object-fit:cover;

background:white;

}

.store-verified-label{

display:inline-flex;
align-items:center;
gap:4px;

font-size:11px;

color:white;

background:#2ecc71;

padding:2px 6px;

border-radius:6px;

margin-left:6px;

font-weight:500;

}

/* body */

.store-body{

padding:26px 15px 15px;

}

.store-name{

font-weight:600;
font-size:14px;

display:flex;
align-items:center;

gap:6px;

}



.store-verified{

color:#2ecc71;

font-size:13px;

}

.store-desc{

font-size:12px;

color:#777;

margin-top:4px;

height:32px;

overflow:hidden;

line-height:1.3;

}

.store-stats{

margin-top:8px;

font-size:12px;

color:#ff3b00;

font-weight:600;

}


/* =========================
   PREMIUM BOTTOM NAV
========================= */

.bottom-nav{

position:fixed;
bottom:12px;
left:50%;
transform:translateX(-50%);

width:92%;
max-width:500px;

background:white;

border-radius:18px;

display:flex;
justify-content:space-around;
align-items:center;

padding:8px 6px;

box-shadow:
0 10px 25px rgba(0,0,0,0.12),
0 3px 8px rgba(0,0,0,0.08);

z-index:999;

}

/* ITEM */

.nav-item{

flex:1;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

font-size:11px;
color:#777;

text-decoration:none;

padding:6px 0;

transition:all .2s;

}

/* ICON */

.nav-item i{

font-size:20px;
margin-bottom:3px;

}

/* ACTIVE */

.nav-item.active{

color:#ff3b00;
font-weight:600;

}

/* HOVER */

.nav-item:hover{

color:#ff3b00;

}

/* CENTER BUTTON FLASH SALE */

.nav-center{

background:linear-gradient(135deg,#ff3b00,#ff7a00);

color:white;

border-radius:12px;

padding:8px 10px;

margin-top:-18px;

box-shadow:0 6px 14px rgba(255,60,0,0.35);

}

.nav-center i{

font-size:20px;

}

.nav-center span{

font-size:10px;

}

/* TAP EFFECT */

.nav-item:active{

transform:scale(.92);

}

/* agar konten tidak tertutup bottom nav */

body{

padding-bottom:70px;

}
/* =========================
   PREMIUM LOGIN MODAL
========================= */

.login-modal{

position:fixed;
top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.45);

display:none;

align-items:flex-end;
justify-content:center;

z-index:2000;

backdrop-filter:blur(6px);

}

.login-modal.show{

display:flex;

}

/* BOX */

.login-box{

background:white;

width:100%;
max-width:420px;

border-radius:20px 20px 0 0;

padding:30px 24px;

text-align:center;

position:relative;

animation:bubbleUp .35s cubic-bezier(.22,.61,.36,1);

box-shadow:0 -10px 40px rgba(0,0,0,0.15);

}

/* ICON */

.login-icon{

width:70px;
height:70px;

background:linear-gradient(135deg,#ff3b00,#ff7a00);

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

margin:0 auto 15px;

color:white;
font-size:28px;

box-shadow:0 6px 18px rgba(255,60,0,0.35);

}

/* TITLE */

.login-box h3{

margin:0;
font-size:18px;

}

/* DESC */

.login-desc{

font-size:13px;
color:#777;

margin:10px 0 20px;

line-height:1.4;

}

/* LOGIN BUTTON */

.btn-login-seller{

width:100%;

padding:12px;

border:none;

border-radius:12px;

background:linear-gradient(135deg,#ff3b00,#ff7a00);

color:white;

font-size:14px;

font-weight:600;

cursor:pointer;

display:flex;
align-items:center;
justify-content:center;

gap:8px;

transition:.2s;

}

.btn-login-seller:hover{

opacity:.9;

}

/* CLOSE BUTTON */

.modal-close{

position:absolute;

top:12px;
right:12px;

background:#f2f2f2;

border:none;

width:32px;
height:32px;

border-radius:50%;

cursor:pointer;

font-size:16px;

display:flex;
align-items:center;
justify-content:center;

color:#666;

}

/* ANIMATION */

@keyframes bubbleUp{

from{

transform:translateY(80px) scale(.9);
opacity:0;

}

to{

transform:translateY(0) scale(1);
opacity:1;

}

}


/* =========================
   ORDER MODAL PREMIUM
========================= */

.order-modal{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.55);

display:none;

align-items:center;
justify-content:center;

z-index:3000;

}

.order-modal.show{
display:flex;
}

/* BOX */

.order-box{

background:white;

width:360px;
max-width:92%;

border-radius:16px;

padding:25px;

box-shadow:0 15px 40px rgba(0,0,0,.2);

animation:modalPop .25s ease;

}

/* HEADER */

.order-header{

display:flex;
align-items:center;
justify-content:space-between;

margin-bottom:15px;

}

.order-header h3{

margin:0;
font-size:18px;

display:flex;
align-items:center;

gap:8px;

color:#333;

}

.order-header i{

color:#ff3b00;

}

.close-order{

background:none;
border:none;

font-size:18px;

cursor:pointer;

color:#999;

}

/* FORM */

.form-group{

margin-bottom:14px;

}

.form-group label{

font-size:13px;

font-weight:500;

color:#444;

display:block;

margin-bottom:5px;

}

/* INPUT */

.input-box{

display:flex;

align-items:center;

background:#f6f6f6;

border-radius:8px;

padding:8px 10px;

gap:8px;

}

.input-box i{

color:#888;
font-size:14px;

}

.input-box input{

border:none;
background:none;

outline:none;

flex:1;

font-family:Poppins;

font-size:14px;

}

/* SUBMIT */

.order-submit{

margin-top:12px;

width:100%;

padding:11px;

border:none;

border-radius:10px;

background:linear-gradient(135deg,#ff3b00,#ff7a00);

color:white;

font-size:14px;

font-weight:600;

cursor:pointer;

transition:.2s;

}

.order-submit:hover{

opacity:.9;

}

/* ANIMATION */

@keyframes modalPop{

from{

transform:scale(.9);
opacity:0;

}

to{

transform:scale(1);
opacity:1;

}

}
.buy-btn.waiting{

background:#ff7a00;

animation:pulse 1.2s infinite;

}
@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.05);
}

100%{
transform:scale(1);
}

}

.countdown-product{

font-size:12px;

font-weight:600;

color:#ff3b00;

margin-top:6px;

}

/* =========================
   FOOTER
========================= */

.site-footer{

background:#fff;

border-top:1px solid #eee;

margin-top:40px;

padding:25px 20px 90px;

text-align:center;

font-size:13px;

color:#777;

}

/* LINK */

.footer-links{

display:flex;
justify-content:center;
align-items:center;
gap:10px;

flex-wrap:wrap;

margin-bottom:10px;

}

.footer-links a{

text-decoration:none;

color:#666;

font-weight:500;

transition:.2s;

}

.footer-links a:hover{

color:#ff3b00;

}

/* COPYRIGHT */

.footer-copy{

font-size:12px;

color:#999;

}


.legal-modal{

position:fixed;
top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.5);

display:none;

align-items:center;
justify-content:center;

z-index:5000;

}

.legal-box{

background:white;

width:90%;
max-width:520px;

border-radius:16px;

padding:25px;

max-height:80vh;

overflow:auto;

animation:modalFade .25s ease;

position:relative;

}

.legal-close{

position:absolute;
top:12px;
right:12px;

border:none;
background:#f1f1f1;

width:34px;
height:34px;

border-radius:50%;

cursor:pointer;

}

.legal-content h2{
margin-top:0;
}

.legal-content p{
font-size:14px;
color:#555;
line-height:1.6;
}

@keyframes modalFade{

from{
transform:scale(.9);
opacity:0;
}

to{
transform:scale(1);
opacity:1;
}

}

.legal-agreement{

margin-top:12px;
margin-bottom:10px;

font-size:13px;
color:#555;

}

.check-legal{

display:flex;
align-items:flex-start;

gap:8px;
cursor:pointer;

}

.check-legal input{

margin-top:3px;

}

.check-legal a{

color:#ff3b00;
text-decoration:none;
font-weight:500;

}

.check-legal a:hover{

text-decoration:underline;

}
/* =========================
   PREMIUM FLASHSALE CARD
========================= */

.flashsale-card{

background:white;

border-radius:16px;

overflow:hidden;

box-shadow:
0 10px 25px rgba(0,0,0,.08),
0 3px 8px rgba(0,0,0,.05);

margin-bottom:16px;

transition:.2s;

}

.flashsale-card:hover{

transform:translateY(-3px);

box-shadow:
0 15px 30px rgba(0,0,0,.12);

}

.flashsale-card-link{

text-decoration:none;
color:inherit;
display:block;

}

/* TITLE PROMO */

.flashsale-title{

font-size:16px;

font-weight:700;

color:#ff3b00;

margin-bottom:4px;

display:flex;

align-items:center;

gap:6px;

}

/* META */

.flashsale-meta{

font-size:12px;

color:#777;

display:flex;

gap:10px;

margin-top:4px;

}

/* TIME */

.flashsale-time{

font-size:12px;

color:#999;

margin-top:4px;

}

/* TERMS LINK */

.flashsale-terms{

font-size:12px;

margin-top:6px;

color:#ff3b00;

cursor:pointer;

font-weight:600;

}

.flashsale-terms:hover{

text-decoration:underline;

}

.carousel{

position:relative;

height:180px;

overflow:hidden;

}

.carousel-track{

display:flex;

height:100%;

transition:transform .5s ease;

}

.slide{

min-width:100%;

}

.slide img{

width:100%;
height:180px;

object-fit:cover;

}

/* ARROW */

.carousel-btn{

position:absolute;

top:50%;

transform:translateY(-50%);

background:rgba(0,0,0,.45);

color:white;

border:none;

width:34px;
height:34px;

border-radius:50%;

cursor:pointer;

display:flex;
align-items:center;
justify-content:center;

z-index:10;

}

.carousel-btn.prev{
left:10px;
}

.carousel-btn.next{
right:10px;
}

.carousel-btn:hover{
background:#ff3b00;
}

/* DOT */

.carousel-dots{

position:absolute;

bottom:10px;

left:50%;

transform:translateX(-50%);

display:flex;

gap:6px;

}

.carousel-dots span{

width:8px;
height:8px;

border-radius:50%;

background:rgba(255,255,255,.5);

cursor:pointer;

}

.carousel-dots span.active{

background:white;

}

/* INFO */

.flashsale-info{

display:block;

padding:12px;

text-decoration:none;

color:#333;

}

.flashsale-store{

display:flex;

align-items:center;

gap:8px;

margin-bottom:6px;

}

.flashsale-store img{

width:26px;
height:26px;

border-radius:50%;

}

.flashsale-meta{

font-size:12px;

color:#777;

display:flex;

gap:10px;

}


/* =========================
   TERMS MODAL PREMIUM
========================= */

.terms-modal{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.55);

display:none;

align-items:center;
justify-content:center;

z-index:4000;

backdrop-filter:blur(4px);

}

.terms-modal.show{

display:flex;

}

.terms-box{

background:white;

width:90%;
max-width:420px;

border-radius:16px;

padding:22px;

max-height:70vh;

overflow:auto;

animation:popupScale .25s ease;

box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.terms-box h3{

margin-top:0;

display:flex;

align-items:center;

gap:6px;

color:#333;

}

.terms-close{

position:absolute;

right:20px;

top:20px;

border:none;

background:#f2f2f2;

width:32px;
height:32px;

border-radius:50%;

cursor:pointer;

}

#termsContent{

font-size:14px;

color:#555;

line-height:1.6;

margin-top:10px;

}

/* animation */

@keyframes popupScale{

from{

transform:scale(.85);
opacity:0;

}

to{

transform:scale(1);
opacity:1;

}

}


.join-flashsale-btn{

width:100%;
margin-top:12px;

padding:10px;

border:none;

border-radius:10px;

background:linear-gradient(135deg,#ff3b00,#ff7a00);

color:white;

font-weight:600;

font-size:13px;

cursor:pointer;

display:flex;

align-items:center;
justify-content:center;

gap:6px;

transition:.2s;

box-shadow:0 6px 14px rgba(255,60,0,.25);

}

.join-flashsale-btn:hover{

transform:translateY(-1px);

box-shadow:0 8px 18px rgba(255,60,0,.35);

}

.flashsale-status{

font-size:12px;
color:#ff3b00;

font-weight:600;

margin-top:4px;

}


/* =========================
   SHARE BUTTON
========================= */

.share-buttons{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-top:10px;
}

.share-btn{

display:inline-flex;
align-items:center;
gap:6px;

padding:6px 10px;

border-radius:8px;

font-size:13px;

text-decoration:none;

color:white;

font-weight:500;

transition:.2s;

border:none;

cursor:pointer;

}

.share-btn i{
font-size:14px;
}

/* BRAND COLORS */

.share-btn.wa{
background:#25D366;
}

.share-btn.fb{
background:#1877F2;
}

.share-btn.tw{
background:#111;
}

.share-btn.tg{
background:#229ED9;
}

.share-btn.copy{
background:#ff3b00;
}

.share-btn.share{
background:#555;
}

/* HOVER EFFECT */

.share-btn:hover{
transform:translateY(-1px);
box-shadow:0 4px 10px rgba(0,0,0,.15);
}



.empty-state{

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

padding:80px 20px;
text-align:center;

animation:fadeIn .3s ease;

}

.empty-icon{

width:90px;
height:90px;

border-radius:50%;

background:linear-gradient(135deg,#ff3b00,#ff7a00);

display:flex;
align-items:center;
justify-content:center;

color:white;
font-size:34px;

box-shadow:0 10px 30px rgba(0,0,0,.15);

margin-bottom:20px;

}

.empty-state h3{

font-size:20px;
margin:0;
color:#111827;

}

.empty-state p{

font-size:14px;
color:#6b7280;

max-width:320px;
margin-top:10px;
line-height:1.6;

}

.empty-actions{

display:flex;
gap:10px;
margin-top:20px;
flex-wrap:wrap;
justify-content:center;

}

.btn-primary{

background:linear-gradient(135deg,#ff3b00,#ff7a00);
color:white;

padding:10px 16px;
border-radius:10px;

text-decoration:none;
font-size:13px;
font-weight:600;

box-shadow:0 6px 18px rgba(255,60,0,.3);

}

.btn-secondary{

background:#f3f4f6;
color:#111;

padding:10px 16px;
border-radius:10px;

border:none;
cursor:pointer;

font-size:13px;
font-weight:500;

}

.btn-secondary:hover{

background:#e5e7eb;

}

@keyframes fadeIn{

from{
opacity:0;
transform:translateY(10px);
}

to{
opacity:1;
transform:translateY(0);
}

}