@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700;800&family=Roboto:wght@400;500;700&family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;600;700&family=Lato:wght@400;700&family=Nunito:wght@400;700;800&family=Raleway:wght@500;700;800&family=Merriweather:wght@400;700&family=Playfair+Display:wght@600;700&family=Oswald:wght@500;700&family=Ubuntu:wght@400;700&family=Mulish:wght@400;700&family=Work+Sans:wght@400;700&family=Quicksand:wght@500;700&family=DM+Sans:wght@400;700&display=swap');

:root{
  --bg: #1a0a08;
  --bg2: #3a1610;

  --header-bg: #1d0d09;
  --header-border-color: #5d342a;
  --header-logo-bg: #23120c;

  --header-badge-font-color: #ffffff;
  --header-badge-font-size: 20px;
  --header-badge-bg1: #ff7b54;
  --header-badge-bg2: #ffb26b;

  --card: #301713;
  --text: #ffffff;
  --muted: #e5c7bc;
  --primary: #ff7b54;
  --secondary: #ffb26b;
  --accent: #ffe6a7;
  --badge: #ffd166;
  --danger: #ff5c5c;

  --footer-bg: #160908;
  --footer-card-bg: #301713;
  --footer-text: #f0d8d0;
  --footer-title: #ffffff;

  --radius: 24px;
  --shadow: 0 20px 60px rgba(0,0,0,.34);
  --blur: 18px;
  --header-h: 82px;

  --font-heading: 'Poppins', sans-serif;
  --font-heading-size: 32px;
  --font-heading-color: #ffffff;

  --font-body: 'Inter', sans-serif;
  --font-body-size: 16px;
  --font-body-color: #f0d7cf;

  --hero-title-font-family: 'Poppins', sans-serif;
  --hero-title-font-size: 48px;
  --hero-title-font-color: #ffffff;
  --hero-title-outline-color: #1b0905;
  --hero-title-outline-width: 2px;

  --hero-subtitle-font-family: 'Inter', sans-serif;
  --hero-subtitle-font-size: 18px;
  --hero-subtitle-font-color: #fff0e8;
  --hero-subtitle-outline-color: #1b0905;
  --hero-subtitle-outline-width: 1px;

  --banner-title-outline-color: #1b0905;
  --banner-title-outline-width: 2px;
  --banner-subtitle-outline-color: #1b0905;
  --banner-subtitle-outline-width: 1px;

  --marquee-bg: #1f0b08;
  --marquee-text-color: #fff9f7;
  --marquee-font-family: 'Poppins', sans-serif;
  --marquee-font-size: 18px;
  --marquee-speed: 18s;

  --promo-price-outline-color: #190905;
  --promo-price-outline-width: 2px;

  --sidebar-menu-bg1: #3c1d16;
  --sidebar-menu-bg2: #24110d;
  --sidebar-menu-text-color: #fff4ef;
  --sidebar-menu-font-size: 16px;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  background:
    radial-gradient(circle at top right, rgba(91,124,255,.22), transparent 24%),
    linear-gradient(135deg, var(--bg), var(--bg2));
  color:var(--font-body-color);
  font-family:var(--font-body);
  font-size:var(--font-body-size);
  overflow-x:hidden;
  min-height:100%;
}
body{line-height:1.5;padding-top:calc(var(--header-h) + 8px)}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}

.container{width:min(1400px, calc(100% - 32px));margin:0 auto}
.desktop-only{display:block}

.hero-new-price,
.promo-price,
.big-price .new{
  color:var(--accent);
  -webkit-text-stroke:var(--promo-price-outline-width) var(--promo-price-outline-color);
  paint-order:stroke fill;
  text-shadow:
    calc(-1 * var(--promo-price-outline-width)) 0 0 var(--promo-price-outline-color),
    var(--promo-price-outline-width) 0 0 var(--promo-price-outline-color),
    0 calc(-1 * var(--promo-price-outline-width)) 0 var(--promo-price-outline-color),
    0 var(--promo-price-outline-width) 0 var(--promo-price-outline-color),
    calc(-1 * var(--promo-price-outline-width)) calc(-1 * var(--promo-price-outline-width)) 0 var(--promo-price-outline-color),
    var(--promo-price-outline-width) calc(-1 * var(--promo-price-outline-width)) 0 var(--promo-price-outline-color),
    calc(-1 * var(--promo-price-outline-width)) var(--promo-price-outline-width) 0 var(--promo-price-outline-color),
    var(--promo-price-outline-width) var(--promo-price-outline-width) 0 var(--promo-price-outline-color),
    0 4px 12px rgba(0,0,0,.18);
}

.site-header{
  position:fixed;
  top:0; left:0; right:0;
  width:100%;
  z-index:9999;
  backdrop-filter:blur(var(--blur));
  -webkit-backdrop-filter:blur(var(--blur));
  background:color-mix(in srgb, var(--header-bg) 92%, transparent 8%);
  border-bottom:1px solid var(--header-border-color);
}

.header-wrap{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  padding:8px 0;
}

.branding{
  display:inline-flex;
  flex-direction:row;
  align-items:flex-end;
  gap:8px;
  min-width:0;
}

.brand-logo{
  width:auto;
  height:84px;
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  background:transparent;
  border:none;
  padding:0;
  margin:0;
}

.brand-logo img{
  width:auto;
  height:84px;
  object-fit:contain;
  object-position:left center;
}

.header-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  font-weight:700;
  color:var(--header-badge-font-color);
  font-size:11px;
  background:linear-gradient(135deg, var(--header-badge-bg1), var(--header-badge-bg2));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 8px 16px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.18);
  white-space:nowrap;
  line-height:1;
  margin-left:4px;
  margin-bottom:4px;
}

.brand-meta{display:none!important}

.mobile-menu-icon{
  display:none;
  width:58px;
  height:58px;
  border:none;
  border-radius:18px;
  position:relative;
  cursor:pointer;
  overflow:hidden;
  flex:0 0 auto;
  box-shadow:var(--shadow), inset 0 1px 0 rgba(255,255,255,.18);
  background:linear-gradient(135deg, rgba(0,210,255,1), rgba(91,124,255,1), rgba(122,255,193,1));
}

.mobile-menu-icon span{
  position:absolute;
  left:16px;
  right:16px;
  height:3px;
  border-radius:999px;
  background:#fff;
}
.mobile-menu-icon span:nth-child(1){top:18px}
.mobile-menu-icon span:nth-child(2){top:27px}
.mobile-menu-icon span:nth-child(3){top:36px}

.hero{padding:48px 0 26px}
.hero-banner{padding:24px 0 26px}

.hero-slider{
  position:relative;
  overflow:hidden;
  border-radius:calc(var(--radius) + 8px);
  min-height:640px;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at center, rgba(255,255,255,.05), rgba(255,255,255,.01)),
    linear-gradient(135deg, var(--bg), var(--bg2));
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:100% 100%;
  background-position:center center;
  background-repeat:no-repeat;
  opacity:0;
  visibility:hidden;
  transition:opacity .9s ease, transform .9s ease;
}
.hero-slide.is-active{opacity:1;visibility:visible;z-index:2}
.hero-slider-static .hero-slide{position:relative;opacity:1;visibility:visible}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,10,20,.30) 0%, rgba(4,10,20,.14) 42%, rgba(4,10,20,.08) 100%),
    linear-gradient(to top, rgba(0,0,0,.10), transparent 45%);
}

.hero-content{
  position:relative;
  z-index:3;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:640px;
  padding:56px 52px;
  max-width:760px;
}

.hero-badge-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.hero-banner-title,
.hero-content h2{
  margin:0 0 12px;
  font-family:var(--hero-title-font-family);
  font-size:var(--hero-title-font-size);
  color:var(--hero-title-font-color);
  font-weight:800;
  line-height:1.03;
  -webkit-text-stroke:var(--hero-title-outline-width) var(--hero-title-outline-color);
  paint-order:stroke fill;
  text-shadow:
    calc(-1 * var(--hero-title-outline-width)) 0 0 var(--hero-title-outline-color),
    var(--hero-title-outline-width) 0 0 var(--hero-title-outline-color),
    0 calc(-1 * var(--hero-title-outline-width)) 0 var(--hero-title-outline-color),
    0 var(--hero-title-outline-width) 0 var(--hero-title-outline-color),
    calc(-1 * var(--hero-title-outline-width)) calc(-1 * var(--hero-title-outline-width)) 0 var(--hero-title-outline-color),
    var(--hero-title-outline-width) calc(-1 * var(--hero-title-outline-width)) 0 var(--hero-title-outline-color),
    calc(-1 * var(--hero-title-outline-width)) var(--hero-title-outline-width) 0 var(--hero-title-outline-color),
    var(--hero-title-outline-width) var(--hero-title-outline-width) 0 var(--hero-title-outline-color),
    0 6px 18px rgba(0,0,0,.22);
}

.hero-banner-subtitle,
.hero-content p{
  margin:0;
  color:var(--hero-subtitle-font-color);
  font-family:var(--hero-subtitle-font-family);
  font-size:var(--hero-subtitle-font-size);
  line-height:1.7;
  max-width:640px;
  -webkit-text-stroke:var(--hero-subtitle-outline-width) var(--hero-subtitle-outline-color);
  paint-order:stroke fill;
  text-shadow:
    calc(-1 * var(--hero-subtitle-outline-width)) 0 0 var(--hero-subtitle-outline-color),
    var(--hero-subtitle-outline-width) 0 0 var(--hero-subtitle-outline-color),
    0 calc(-1 * var(--hero-subtitle-outline-width)) 0 var(--hero-subtitle-outline-color),
    0 var(--hero-subtitle-outline-width) 0 var(--hero-subtitle-outline-color),
    calc(-1 * var(--hero-subtitle-outline-width)) calc(-1 * var(--hero-subtitle-outline-width)) 0 var(--hero-subtitle-outline-color),
    var(--hero-subtitle-outline-width) calc(-1 * var(--hero-subtitle-outline-width)) 0 var(--hero-subtitle-outline-color),
    calc(-1 * var(--hero-subtitle-outline-width)) var(--hero-subtitle-outline-width) 0 var(--hero-subtitle-outline-color),
    var(--hero-subtitle-outline-width) var(--hero-subtitle-outline-width) 0 var(--hero-subtitle-outline-color),
    0 4px 12px rgba(0,0,0,.18);
}

.hero-price-row{display:flex;flex-direction:column;gap:4px;margin-top:18px;margin-bottom:18px}
.hero-old-price{color:#e3e9f3;text-decoration:line-through;font-size:1rem}
.hero-new-price{font:800 clamp(1.7rem,2.4vw,2.5rem) var(--font-heading)}

.hero-dots{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:5;
}
.hero-dot{
  width:12px;height:12px;border:none;border-radius:999px;
  background:rgba(255,255,255,.35);cursor:pointer;
}
.hero-dot.is-active{
  width:34px;
  background:linear-gradient(135deg, var(--primary), var(--secondary));
}

.site-marquee-wrap{padding:0 0 20px}
.site-marquee{
  overflow:hidden;
  border-radius:20px;
  background:var(--marquee-bg);
  color:var(--marquee-text-color);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  font-family:var(--marquee-font-family);
  font-size:var(--marquee-font-size);
  white-space:nowrap;
}
.site-marquee-track{
  display:inline-flex;
  align-items:center;
  gap:48px;
  padding:14px 0 14px 100%;
  will-change:transform;
}
.site-marquee.dir-left .site-marquee-track{animation:siteMarqueeLeft var(--marquee-speed) linear infinite}
.site-marquee.dir-right .site-marquee-track{animation:siteMarqueeRight var(--marquee-speed) linear infinite}
@keyframes siteMarqueeLeft{0%{transform:translateX(0)}100%{transform:translateX(-100%)}}
@keyframes siteMarqueeRight{0%{transform:translateX(-100%)}100%{transform:translateX(0)}}

.catalog-shell{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:22px;
  align-items:start;
  padding-bottom:48px;
}
.catalog-sidebar{position:sticky;top:calc(var(--header-h) + 22px)}
.sidebar-card{
  border-radius:28px;
  padding:20px;
  background:linear-gradient(180deg, var(--sidebar-menu-bg1), var(--sidebar-menu-bg2));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow), inset 0 1px 0 rgba(255,255,255,.15);
  color:var(--sidebar-menu-text-color);
}
.sidebar-title{
  margin:0 0 6px;
  font:800 calc(var(--sidebar-menu-font-size) + 8px) var(--font-heading);
  color:var(--sidebar-menu-text-color);
}
.sidebar-subtitle{
  color:var(--sidebar-menu-text-color);
  opacity:.88;
  font-size:var(--sidebar-menu-font-size);
  margin-bottom:16px;
}
.catalog-filter-form{display:flex;flex-direction:column;gap:14px}
.filter-box{display:flex;flex-direction:column;gap:8px}
.filter-label{
  font-size:var(--sidebar-menu-font-size);
  color:var(--sidebar-menu-text-color);
  font-weight:700;
}
.catalog-filter-form input,
.catalog-filter-form select{
  width:100%;
  height:52px;
  padding:0 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.08);
  color:var(--sidebar-menu-text-color);
  outline:none;
  font-size:var(--sidebar-menu-font-size);
}
.catalog-filter-form select option{color:#111}

.catalog-main{min-width:0}
.catalog-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.product-card{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)), var(--card);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  transition:transform .25s ease;
}
.product-card:hover{transform:translateY(-6px)}

.product-thumb{
  aspect-ratio:4/3;
  background:#0f1626;
  overflow:hidden;
  position:relative;
}
.product-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.badge-row{
  position:absolute;
  top:14px;left:14px;right:14px;
  display:flex;justify-content:space-between;gap:8px;z-index:7;
}
.badge-chip{
  padding:8px 12px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}
.badge-chip.status{
  background:linear-gradient(135deg, var(--badge), color-mix(in srgb, var(--badge) 68%, #000 32%));
  color:#111;
}
.badge-chip.brand{
  background:linear-gradient(135deg, var(--primary), var(--secondary));
  color:#fff;
}
.badge-chip.danger{
  background:linear-gradient(135deg, var(--danger), color-mix(in srgb, var(--danger) 70%, #000 30%));
  color:#fff;
}

.card-body{padding:18px}
.card-title{
  margin:0 0 8px;
  font:800 1.15rem var(--font-heading);
  line-height:1.3;
}
.card-spec{color:var(--font-body-color);min-height:50px}
.price-wrap{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-top:14px}
.old-price{color:#c7d0de;text-decoration:line-through;font-size:.92rem}
.promo-price{font:800 1.32rem var(--font-heading)}

.btn-row{display:flex;gap:10px;margin-top:16px;flex-wrap:wrap}
.btn{
  border:none;
  border-radius:16px;
  padding:12px 16px;
  font-weight:700;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.btn-primary{
  background:linear-gradient(135deg, var(--primary), var(--secondary));
  color:#fff;
  flex:1;
  box-shadow:var(--shadow);
}
.btn-secondary{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  flex:1;
}
.btn-whatsapp{
  background:linear-gradient(135deg, #ff8a00, #ff6a00);
  color:#fff;
  border:1px solid rgba(255,255,255,.10);
  flex:1;
}

.watermark-terjual{position:absolute;z-index:20;pointer-events:none;user-select:none;opacity:.96}
.hero-watermark{width:min(250px, 30%);top:50%;right:5%;transform:translateY(-50%) rotate(-7deg)}
.card-watermark{width:18%;top:42%;left:50%;transform:translate(-50%, -50%) rotate(-2deg)}

.offcanvas-backdrop{
  position:fixed;inset:0;background:rgba(3,8,18,.58);
  opacity:0;visibility:hidden;transition:.25s ease;z-index:1400;
}
.offcanvas-filter{
  position:fixed;top:0;left:0;width:min(88vw, 380px);height:100vh;
  background:linear-gradient(180deg, var(--sidebar-menu-bg1), var(--sidebar-menu-bg2));
  box-shadow:24px 0 60px rgba(0,0,0,.45);
  transform:translateX(-100%);
  transition:.3s ease;
  z-index:1500;
  border-right:1px solid rgba(255,255,255,.08);
  display:flex;flex-direction:column;color:var(--sidebar-menu-text-color);
}
.offcanvas-filter.is-open{transform:translateX(0)}
.offcanvas-backdrop.is-open{opacity:1;visibility:visible}
.offcanvas-header{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:18px 16px;border-bottom:1px solid rgba(255,255,255,.08);
}
.offcanvas-close{
  width:42px;height:42px;border:none;border-radius:14px;
  background:rgba(255,255,255,.08);color:#fff;font-size:1.5rem;cursor:pointer;
}
.offcanvas-body{padding:16px;overflow:auto}

.site-footer{
  background:var(--footer-bg);
  color:var(--footer-text);
  padding:42px 0 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start}
.footer-card{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)), var(--footer-card-bg);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow);
  color:var(--footer-text);
}
.footer-title{
  color:var(--footer-title);
  font:800 1.1rem var(--font-heading);
  margin:0 0 12px;
}
.footer-bottom{
  text-align:center;
  padding:18px 0;
  color:color-mix(in srgb, var(--footer-text) 82%, #ffffff 18%);
  margin-top:18px;
  border-top:1px solid rgba(255,255,255,.06);
}
.empty-box{
  padding:36px;
  text-align:center;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)), var(--card);
  border:1px dashed color-mix(in srgb, var(--danger) 50%, rgba(255,255,255,.15) 50%);
  color:var(--muted);
  box-shadow:var(--shadow);
}

@media (max-width:1280px){
  .catalog-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:980px){
  .desktop-only{display:none}
  .catalog-shell{grid-template-columns:1fr;gap:0}
  .mobile-menu-icon{display:inline-flex;align-items:center;justify-content:center}
  .hero-slider,.hero-content{min-height:500px}
  .hero-content{padding:32px 24px;max-width:100%}
  .brand-logo img{max-width:240px;height:58px}
  .header-badge{min-height:28px;padding:0 10px;font-size:10px}
}
@media (max-width:640px){
  body{padding-top:calc(var(--header-h) + 6px)}
  .container{width:100%;padding:0}
  .site-header .container,.hero .container,.site-footer .container{padding:0}
  .header-wrap,.footer-card,.product-card{border-radius:0}
  .header-wrap{padding:10px 14px;gap:10px}
  .branding{width:100%;flex:1 1 auto;gap:6px}
  .brand-logo{flex:1 1 auto;min-width:0;height:64px}
  .brand-logo img{width:100%;height:100%;object-fit:contain;object-position:left center;max-width:100%}
  .header-badge{min-height:26px;padding:0 10px;font-size:10px;margin-left:auto}
  .hero-banner{padding:0 0 18px}
  .hero-slider{border-radius:0;min-height:420px}
  .hero-content{min-height:420px;padding:22px 16px;max-width:100%}
  .catalog-grid{grid-template-columns:1fr;gap:12px;padding:0 0 28px}
  .card-body,.footer-card{padding:16px}
  .site-footer{padding-top:0}
  .footer-bottom{padding:18px 12px}
  .offcanvas-filter{width:100vw}
  .site-marquee{border-radius:0}
}