/* =========================
   FONTS (sesuai PDF)
   ========================= */
@font-face{
  font-family: "Helvetica Now";
  src: url("../fonts/HelveticaNow.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Montaser Arabic";
  src: url("../fonts/MontaserArabic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* =========================
   PALETTE
   ========================= */
:root{
  --black:#000000;
  --dark:#191919;
  --white:#FFFFFF;
  --ice:#e5fbff;
  --lime:#B9FF06;
  --blue:#393be7;

  --bg: var(--black);
  --bg2: var(--dark);
  --muted:#bdbdbd;
  --card:#171717;
  --line:rgba(255,255,255,.08);
  --shadow:0 18px 60px rgba(0,0,0,.35);

  /* Auth palette */
  --auth-blue:#4b45ff;
  --auth-lime:#c7ff1a;
  --auth-muted:#aab1c2;
  --auth-bg:#0f1013;
  --auth-line:rgba(255,255,255,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{height:100%}

body{
  margin:0;
  font-family: "Helvetica Now", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--white);
  background:var(--bg);
  /* Page transition */
  animation: pageIn .32s ease both;
}

@keyframes pageIn{
  from{opacity:0; transform:translateY(8px)}
  to{opacity:1; transform:translateY(0)}
}

a{text-decoration:none;color:inherit}

.container{max-width:1200px;margin:0 auto;padding:0 28px}

/* =========================
   TOPBAR / NAVBAR
   ========================= */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(0,0,0,.92);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  transition: box-shadow .3s ease, background .3s ease;
}
.topbar.scrolled{
  box-shadow: 0 4px 32px rgba(0,0,0,.7);
  background:rgba(0,0,0,.96);
}
.topbar__inner{
  height:76px;
  display:flex;
  align-items:center;
  gap:20px;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:310px;
  text-decoration:none;
}
.brand__logo{
  width:auto;
  height:56px;
}
.brand__title{font-weight:800; letter-spacing:.8px; font-size:14px}
.brand__tag{
  display:inline-block;
  margin-top:3px;
  padding:4px 8px;
  font-size:10px;
  letter-spacing:.7px;
  border:1px solid var(--line);
  border-radius:999px;
  color:#000000;
  background:rgb(255, 255, 255);
}

/* Nav Links */
.nav{display:flex;flex:1;align-items:center;justify-content:space-between;}
.nav__links{display:flex;gap:22px;flex:1;justify-content:center;}
.nav__link{
  position:relative;
  color:#d8d8d8;
  text-decoration:none;
  font-size:12px;
  letter-spacing:1px;
  font-weight:700;
  text-transform:uppercase;
  opacity:.85;
  padding:6px 0;
  transition: color .2s, opacity .2s;
}
.nav__link:hover{opacity:1; color:var(--white)}
.nav__link.is-active{
  color:var(--lime);
  opacity:1;
}
.nav__link.is-active::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:-4px;
  height:2px;
  border-radius:2px;
  background:var(--lime);
  animation: slideIn .28s ease both;
}
@keyframes slideIn{
  from{transform:scaleX(0)}
  to{transform:scaleX(1)}
}

/* Auth Buttons */
.auth{display:flex;align-items:center;gap:10px;margin-left:20px;}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  text-decoration:none;
  cursor:pointer;
  border-radius:999px;
  padding:10px 16px;
  font-weight:700;
  font-size:12px;
  letter-spacing:.5px;
  border:1px solid var(--line);
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.btn:hover{transform:translateY(-1px)}
.btn--ghost{background:transparent;color:var(--white)}
.btn--ghost:hover{background:rgba(255,255,255,.06)}
.btn--white{background:var(--white);color:#111;border-color:var(--white)}
.btn--white:hover{background:#e8e8e8}
.btn--pill{padding:10px 18px}
.btn--dark{background:#0e0e0e;color:var(--white)}
.btn--blue{background:var(--blue); border-color:var(--blue); color:var(--white)}
.btn--order{background:var(--white); border-color:var(--white); color:#0a0a0a; font-weight:900; letter-spacing:.4px;}
.btn--order:hover{background:#e8e8e8; border-color:#e8e8e8; color:#000; box-shadow:0 4px 16px rgba(255,255,255,.2);}
.btn--wide{width:520px; max-width:100%; height:56px; border-radius:18px; letter-spacing:1px}
.btn--logout{
  background:rgba(255,60,60,.12);
  color:#ff6060;
  border-color:rgba(255,60,60,.22);
  font-size:12px;
  font-weight:700;
}
.btn--logout:hover{
  background:rgba(255,60,60,.22);
  color:#ff6060;
  border-color:rgba(255,60,60,.4);
}

/* Auth User Info */
.auth__user{
  display:flex;
  align-items:center;
  gap:8px;
}
.auth__name{
  font-size:13px;
  font-weight:700;
  color:var(--white);
  white-space:nowrap;
  display:flex;
  align-items:center;
  gap:6px;
}
.auth__badge--admin{
  display:inline-flex;
  align-items:center;
  padding:3px 9px;
  border-radius:999px;
  background:var(--lime);
  color:#111;
  font-size:10px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

/* Mobile hamburger */
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:4px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
  margin-left:auto;
}
.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--white);
  border-radius:2px;
  transition: transform .2s, opacity .2s;
}

/* =========================
   ALERT / FLASH
   ========================= */
.alert{
  padding:14px 20px;
  border-radius:12px;
  font-size:14px;
  font-weight:600;
  margin-bottom:20px;
  border:1px solid transparent;
  line-height:1.5;
}
.alert--success{
  background:rgba(0,200,100,.10);
  color:#00e87a;
  border-color:rgba(0,200,100,.18);
}
.alert--error{
  background:rgba(255,60,60,.10);
  color:#ff6060;
  border-color:rgba(255,60,60,.18);
}
.flash-global{
  position:fixed;
  top:90px;
  left:50%;
  transform:translateX(-50%);
  z-index:999;
  min-width:320px;
  max-width:600px;
  animation: slideDown .4s ease both, fadeOut .5s 3.5s ease forwards;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
@keyframes slideDown{
  from{opacity:0;transform:translateX(-50%) translateY(-16px)}
  to{opacity:1;transform:translateX(-50%) translateY(0)}
}
@keyframes fadeOut{
  from{opacity:1}
  to{opacity:0;pointer-events:none}
}

/* =========================
   HERO
   ========================= */
.hero{position:relative; min-height:520px; overflow:hidden}
.hero__bg{position:absolute; top:0; right:0; bottom:0; left:0}
.hero__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.15) contrast(1.05);
}
.hero__overlay{
  position:absolute;
  top:0; right:0; bottom:0; left:0;
  background:
    linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,.25)),
    linear-gradient(90deg, rgba(185,255,6,.88), rgba(185,255,6,.88));
  mix-blend-mode:normal;
}

.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:center;
  padding:64px 28px;
}

.hero__title{
  margin:12px 0;
  font-size:64px;
  line-height:.98;
  letter-spacing:-1px;
  font-weight:900;
  font-family:'Inter', system-ui, sans-serif;
  font-style:normal;
  color:#0a0a0a;
}
.hero__desc{
  margin:16px 0 22px;
  max-width:520px;
  color:#0a0a0a;
  font-weight:600;
  font-size:18px;
  line-height:1.55;
  opacity:.95;
}

.hero__right{display:flex; justify-content:flex-end}
.hero__frame{
  width:380px;
  border-radius:34px;
  padding:26px;
  background:var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}
.hero__frame img{
  width:100%;
  height:auto;
  display:block;
}

/* =========================
   SECTION: PRODUCTS
   ========================= */
.section{padding:60px 0}
.section--dark{background:linear-gradient(var(--black),var(--black))}
.section__title{
  margin:0 0 26px;
  font-size:54px;
  letter-spacing:-.6px;
}

.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
}
.p-card{
  background:transparent;
  border:none;
  border-radius:0;
  overflow:visible;
  transition:transform .2s;
}
.p-card:hover{transform:translateY(-4px);}
.p-card__img{
  height:180px;
  background:var(--black);
  border-radius:12px;
  overflow:hidden;
  margin-bottom:14px;
}
.p-card__img img{
  width:100%;height:100%;
  object-fit:cover;display:block;
}
.p-card__body{padding:0}
.p-card__title{
  font-size:12px;
  letter-spacing:1px;
  font-weight:900;
  color:#eaeaea;
  margin-bottom:6px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}
.p-card__desc{
  font-size:12px;
  color:var(--muted);
  line-height:1.55;
}

/* =========================
   WHY
   ========================= */
.why{
  position:relative;
  padding:144px 0;
  overflow:hidden;
  background:var(--ice);
}
.why__bg{position:absolute; top:0; right:0; bottom:0; left:0}
.why__bg img{width:100%;height:100%;object-fit:cover;opacity:.25}
.why__veil{
  position:absolute;
  top:0; right:0; bottom:0; left:0;
  background:linear-gradient(90deg, rgba(229,251,255,.96), rgba(229,251,255,.78));
}
.why__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:26px;
  align-items:center;
}
.why__title{
  margin: 15px;
  font-size:84px;
  line-height:.95;
  font-weight:900;
  color:var(--blue);
  letter-spacing:0;
}
.why__outline{
  color: transparent;
  -webkit-text-stroke: 2px var(--blue);
}
.why__right{display:flex; flex-direction:column; align-items:flex-start; gap:18px}
.why__list{
  width:520px;
  max-width:100%;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(0,0,0,.06);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.why__item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 6px;
}
.why__icon{
  width:28px;height:28px;
  border-radius:999px;
  background:var(--blue);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--white);
  font-weight:900;
  flex-shrink:0;
}
.why__text{
  font-weight:800;
  font-size:12px;
  letter-spacing:1px;
  color:var(--blue);
}

/* =========================
   CTA
   ========================= */
.cta{padding:76px 0; background:var(--black)}
.cta__inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
  align-items:center;
}
.cta__title{
  margin:0;
  font-size:72px;
  line-height:.95;
  font-weight:900;
  letter-spacing:-1px;
}
.chatbox{
  margin-top:18px;
  background:var(--lime);
  border-radius:16px;
  width:330px;
  max-width:100%;
  padding:16px;
  color:#0b0b0b;
  box-shadow: var(--shadow);
  position:relative;
}
.chatbox__icon{
  position:absolute;
  top:14px;left:14px;
  width:34px;height:34px;
  border-radius:10px;
  background:rgba(0,0,0,.15);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
}
.chatbox__text{
  padding-left:54px;
  font-weight:800;
  font-size:12px;
  line-height:1.5;
}

.contact-card{
  background:var(--white);
  color:#111;
  border-radius:20px;
  padding:24px;
  display:grid;
  grid-template-columns: 1fr 160px;
  gap:18px;
  box-shadow: var(--shadow);
}
.cc__group{margin-bottom:14px}
.cc__label{color:var(--blue); font-weight:900; margin-bottom:6px}
.cc__value{font-size:12px; color:var(--blue); line-height:1.45}
.cc__social{display:flex;gap:10px;margin-top:6px}
.cc__social a{
  width:32px;
  height:32px;
  border-radius:8px;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  transition: transform .2s, opacity .2s;
}
.cc__social a:hover{transform:translateY(-2px); opacity:.8}
.cc__social a img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
.contact-card__qr{display:flex;align-items:flex-end;justify-content:flex-end}
.contact-card__qr img{width:120px;height:120px;object-fit:contain}

/* =========================
   FOOTER
   ========================= */
.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  color:var(--muted);
  font-size:12px;
}
.copyright{
  font-family: "Montaser Arabic", "Helvetica Now", sans-serif;
  letter-spacing:.4px;
}

/* =========================
   CATALOG PAGE
   ========================= */
.catalog{
  position: relative;
  padding: 44px 0 70px;
  background: #08090d;
  overflow: hidden;
}
.catalog__bg{
  position:absolute;
  top:-120px; right:-120px; bottom:-120px; left:-120px;
  background:
    radial-gradient(900px circle at 10% 20%, rgba(99,102,241,0.28), transparent 55%),
    radial-gradient(700px circle at 80% 15%, rgba(236,72,153,0.18), transparent 50%),
    radial-gradient(1100px circle at 90% 80%, rgba(6,182,212,0.22), transparent 55%);
  background-color: #08090d;
  pointer-events:none;
  filter: blur(40px);
  z-index: 0;
}
.catalog .container{ position: relative; z-index: 1; }
.catalog__header{ padding: 18px 0 26px; }
.catalog__title{
  margin:0;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.6px;
  color: var(--white);
}
.catalog__subtitle{
  margin: 10px 0 0;
  color: rgba(229,251,255,.85);
  font-size: 14px;
  line-height: 1.5;
  max-width: 560px;
}
.catalog__grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.c-card{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(20,20,25,.90);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform .2s, border-color .2s;
}
.c-card:hover{transform:translateY(-4px); border-color:rgba(139,92,246,.35)}
.c-card__img{
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Classic aspect-ratio 1:1 fallback */
  background: rgba(0,0,0,.25);
  overflow: hidden;
}
.c-card__img img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Khusus produk customize - latar putih & gambar pas dalam frame */
.c-card__img--white{
  background: #ffffff;
}
.c-card__img--white img{
  top: 14px;
  left: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: contain;
}
.c-card__body{ padding: 18px 18px 20px; }
.c-card__name{
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.2px;
  margin: 2px 0 4px;
  color: var(--white);
}
.c-card__cat{
  font-size: 13px;
  color: rgba(229,251,255,.75);
  margin-bottom: 12px;
}
.c-card__price{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  font-size: 12px;
  border-radius: 999px;
  border: 1px solid rgba(139,92,246,.25);
  background: rgba(139,92,246,.12);
  color: #c4b5fd;
  font-weight: 800;
  letter-spacing: .2px;
  margin-bottom: 12px;
}
.c-card__desc{
  color: rgba(229,251,255,.85);
  font-size: 11px;
  line-height: 1.45;
  min-height: 32px;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-card__actions{display:flex; gap: 8px; flex-direction: column;}
.c-btn{padding: 10px 14px; border-radius: 999px; font-size: 11px; text-align: center; justify-content: center; border: 1px solid transparent; transition: all 0.25s ease;}

/* Catalog – "Pesan" button: cyan-to-indigo outline style */
.c-card__actions .btn--order {
  background: #0d0f15;
  border: 1.5px solid #06b6d4;
  border-radius: 999px;
  color: #67e8f9;
  position: relative;
  overflow: hidden;
}
.c-card__actions .btn--order:hover {
  background: rgba(6,182,212,0.18);
  border-color: #22d3ee;
  transform: translateY(-2px);
  color: #a5f3fc;
  box-shadow: 0 4px 18px rgba(6,182,212,0.25), 0 2px 8px rgba(139,92,246,0.15);
}

/* Catalog – "Customize" button: lime-to-teal filled style */
.c-card__actions .btn--blue {
  background: linear-gradient(135deg, #B9FF06, #06b6d4);
  border-color: transparent;
  color: #0a0a0a;
  font-weight: 900;
}
.c-card__actions .btn--blue:hover {
  background: linear-gradient(135deg, #c8ff3e, #22d3ee);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(185,255,6,0.3), 0 2px 8px rgba(6,182,212,0.2);
}

/* =========================
   GALLERY PAGE
   ========================= */
.gallery-section{
  position: relative;
  padding: 80px 0 100px;
  background: #08090d;
  overflow: hidden;
}
.gallery-section::before{
  content: "";
  position:absolute;
  top:-120px; right:-120px; bottom:-120px; left:-120px;
  background:
    radial-gradient(900px circle at 85% 20%, rgba(236,72,153,0.22), transparent 55%),
    radial-gradient(800px circle at 10% 70%, rgba(6,182,212,0.24), transparent 55%);
  background-color: #08090d;
  pointer-events:none;
  filter: blur(40px);
  z-index: 0;
}
.gallery-section > .container { position: relative; z-index: 1; }
.gallery-head{
  margin-bottom: 40px;
}
.gallery-title{
  margin: 0 0 12px;
  font-size: 48px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .95;
  letter-spacing: -.04em;
  font-weight: 900;
}
.gallery-sub{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 540px;
  line-height: 1.65;
}
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.gallery-card{
  background: rgba(20,20,25,.90);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.gallery-card:hover{
  transform: translateY(-5px);
  border-color: rgba(6,182,212,.3);
  box-shadow: 0 18px 44px rgba(6,182,212,.1), 0 8px 20px rgba(0,0,0,.22);
}
.gallery-photo{
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Classic aspect-ratio 1:1 fallback */
  overflow: hidden;
  background: #151720;
}
.gallery-photo img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-card:hover .gallery-photo img{transform:scale(1.04)}
.gallery-body{ padding: 16px; }
.gallery-cat{
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(6,182,212,.12);
  color: #67e8f9;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.gallery-card-title{
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 900;
}
.gallery-card-text{
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

/* =========================
   CONTACT PAGE
   ========================= */
.contact-hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.contact-hero::before{
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  filter: saturate(1.15) contrast(1.05);
  z-index: 0;
}
.contact-hero::after{
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,.25)),
    linear-gradient(90deg, rgba(185,255,6,.88), rgba(185,255,6,.88));
  mix-blend-mode: normal;
  z-index: 0;
}
.contact-hero__inner{
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 64px 28px;
}
.contact-eyebrow{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.08);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.contact-hero__title{
  margin: 0 0 16px;
  font-size: 52px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 900;
}
.contact-hero__desc{
  margin: 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(0,0,0,.76);
}
.contact-section{
  padding: 80px 0 110px;
  background: linear-gradient(180deg, #0e0f12 0%, #0d0f13 100%);
}
.contact-section__title{
  margin: 0 0 36px;
  font-size: 48px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 900;
}
.contact-grid{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
  align-items: start;
}
.info-card{
  background: rgba(255,255,255,.94);
  color: var(--blue);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}
.info-card__head{
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.info-item + .info-item{ margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(57,59,231,.12); }
.info-item strong{ display: block; margin-bottom: 8px; font-size: 13px; color: #2a2da0; }
.info-item p, .info-item a{
  margin: 0;
  line-height: 1.75;
  font-size: 15px;
  color: #4d48ff;
}
.socials{display:flex;flex-wrap:wrap;gap:10px;margin-top:8px}
.socials a{
  display:inline-flex;align-items:center;justify-content:center;
  width:42px;height:42px;
  border-radius:12px;
  background:rgba(57,59,231,.1);
  overflow:hidden;
  transition: transform .2s, background .2s;
}
.socials a:hover{
  transform:translateY(-2px);
  background:rgba(57,59,231,.18);
}
.socials a img{
  width:24px;height:24px;
  object-fit:contain;
  display:block;
}
.form-card{
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,248,255,.94));
  color: #171717;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}
.form-card h3{
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #141414;
  font-weight:900;
}
.form-card p{ margin: 0 0 24px; color: #666; line-height: 1.7; font-size:15px; }
.field-row--2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field{ margin-bottom: 18px; }
.field label{
  display:block;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 700;
  color: #222;
  letter-spacing:.02em;
}
.field input,
.field select,
.field textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.1);
  outline: none;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  font-size:14px;
  color: #111;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: var(--auth-blue);
  box-shadow: 0 0 0 4px rgba(75,69,255,.1);
}
.field textarea{ min-height: 150px; resize: vertical; }
.btn-primary-contact{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 22px;
  border: 0;
  border-radius: 16px;
  background: var(--lime);
  color: #0e0e0e;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 14px 36px rgba(179,255,0,.22);
}
.btn-primary-contact:hover{ transform:translateY(-2px); box-shadow: 0 18px 42px rgba(179,255,0,.3); }
.form-note{ margin-top: 12px; font-size: 12px; color: #888; line-height:1.5; }

/* =========================
   ORDER PAGE
   ========================= */
.order-page{
  position: relative;
  padding: 44px 0 80px;
  background: #08090d;
  overflow: hidden;
  min-height: calc(100vh - 76px);
}
.order-page__bg{
  position:absolute;
  top:-120px; right:-120px; bottom:-120px; left:-120px;
  background:
    radial-gradient(900px circle at 15% 25%, rgba(139,92,246,0.22), transparent 55%),
    radial-gradient(700px circle at 80% 20%, rgba(6,182,212,0.18), transparent 50%),
    radial-gradient(1000px circle at 85% 85%, rgba(99,102,241,0.18), transparent 55%);
  background-color: #08090d;
  pointer-events:none;
  filter: blur(40px);
  z-index: 0;
}
.order-breadcrumb{
  margin-bottom: 24px;
}
.order-breadcrumb a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:#d1d5db;
  font-size:13px;
  font-weight:700;
  transition: all .2s;
}
.order-breadcrumb a:hover{
  background:rgba(255,255,255,.12);
  color:#fff;
}
.order-page__title{
  margin:0 0 8px;
  font-size: 38px;
  font-size: clamp(34px, 4vw, 48px);
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.04em;
}
.order-page__subtitle{
  margin:0 0 32px;
  color:rgba(229,251,255,.7);
  font-size:15px;
  line-height:1.6;
}
.order-layout{
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  gap:28px;
  align-items:start;
}
/* Product card in sidebar */
.order-product-card{
  background:rgba(20,20,25,.90);
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  overflow:hidden;
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  margin-bottom:20px;
}
.order-product-card__img{
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 aspect ratio fallback */
  background:rgba(0,0,0,.25);
  overflow:hidden;
}
.order-product-card__img img{
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.order-product-card__img--white{
  background: #ffffff !important;
}
.order-product-card__body{
  padding:20px;
}
.order-product-card__name{
  font-size:18px;font-weight:900;letter-spacing:-.02em;color:#fff;margin-bottom:4px;
}
.order-product-card__cat{
  font-size:13px;color:rgba(229,251,255,.65);margin-bottom:12px;
}
.order-product-card__price{
  display:inline-flex;align-items:center;padding:6px 14px;border-radius:999px;
  border:1px solid rgba(139,92,246,.25);background:rgba(139,92,246,.12);
  color:#c4b5fd;font-size:14px;font-weight:800;margin-bottom:12px;
}
.order-product-card__desc{
  font-size:12px;color:rgba(229,251,255,.7);line-height:1.5;
}
/* Total card */
.order-total-card{
  background:linear-gradient(135deg, rgba(139,92,246,.12), rgba(6,182,212,.08));
  border:1px solid rgba(139,92,246,.2);
  border-radius:18px;
  padding:22px;
  margin-bottom:20px;
}
.order-total-card__label{
  font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:rgba(229,251,255,.5);margin-bottom:8px;
}
.order-total-card__amount{
  font-size:28px;font-weight:900;color:#c4b5fd;letter-spacing:-.02em;margin-bottom:14px;
}
.order-total-card__detail{
  display:flex;justify-content:space-between;font-size:13px;color:rgba(229,251,255,.6);padding:4px 0;
}
/* Bank card */
.order-bank-card{
  background:rgba(20,20,25,.90);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:22px;
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
}
.order-bank-card__title{
  font-size:16px;font-weight:800;margin-bottom:8px;color:#fff;
}
.order-bank-card__desc{
  font-size:12px;color:rgba(229,251,255,.55);line-height:1.6;margin-bottom:16px;
}
.order-bank-item{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  border-radius:12px;
  padding:14px 16px;
  margin-bottom:8px;
}
.order-bank-item:last-child{margin-bottom:0;}
.order-bank-item__bank{
  font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:#67e8f9;margin-bottom:4px;
}
.order-bank-item__no{
  font-size:16px;font-weight:900;color:#fff;letter-spacing:.5px;margin-bottom:2px;
}
.order-bank-item__name{
  font-size:12px;color:rgba(229,251,255,.5);
}
/* Form card */
.order-form-card{
  background:rgba(15,16,20,.90);
  border:1px solid rgba(255,255,255,.08);
  border-radius:26px;
  padding:32px;
  color:#fff;
  box-shadow:0 24px 80px rgba(0,0,0,.4);
  -webkit-backdrop-filter:blur(24px);
  backdrop-filter:blur(24px);
}
.order-form-card__title{
  margin:0 0 24px;font-size:26px;font-weight:900;letter-spacing:-.04em;color:#fff;
}
.order-form-card .field label{color:#aab1c2; font-weight:800; letter-spacing:0.5px; margin-bottom:8px;}
.order-form-card .field input,
.order-form-card .field select,
.order-form-card .field textarea{
  width:100%;border:1px solid rgba(255,255,255,.12);outline:none;border-radius:14px;
  padding:14px 16px;font:inherit;font-size:14px;color:#fff;background:rgba(0,0,0,.3);
  transition:border-color .25s, box-shadow .25s, background .25s;
}
.order-form-card .field input:focus,
.order-form-card .field select:focus,
.order-form-card .field textarea:focus{
  background:rgba(0,0,0,.5);
  border-color:var(--lime);
  box-shadow:0 0 0 4px rgba(185,255,6,.15);
}
.order-form-card .field textarea{min-height:80px;resize:vertical;}
.order-form-card .req{color:#ef4444;font-weight:700;}
.order-form-card .opt{color:rgba(255,255,255,.4);font-size:12px;font-weight:600;}
.order-form-card .file-input{
  padding:12px;background:rgba(0,0,0,.2);border:2px dashed rgba(255,255,255,.15);
  border-radius:14px;cursor:pointer; color: #d1d5db; transition: all 0.2s;
}
.order-form-card .file-input:hover{border-color:var(--lime); color: #fff; background: rgba(185,255,6,.05);}
.order-form-card .field-hint{
  margin-top:6px;font-size:11px;color:rgba(255,255,255,.4);line-height:1.5; font-weight: 500;
}
.btn-submit-order{
  display:inline-flex;align-items:center;justify-content:center;width:100%;
  padding:18px 24px;border:0;border-radius:16px;
  background:linear-gradient(135deg, var(--lime), #c8ff3e);
  color:#000;font-family:inherit;font-weight:900;font-size:15px;
  text-transform:uppercase;letter-spacing:.08em;cursor:pointer;
  box-shadow:0 16px 38px rgba(185,255,6,.24);
  transition:transform .25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top:12px;
}
.btn-submit-order:hover{transform:translateY(-3px);box-shadow:0 20px 44px rgba(185,255,6,.4);}

/* =========================
   ORDER SUCCESS PAGE
   ========================= */
.order-success-wrap{
  max-width:640px;margin:0 auto;text-align:center;padding:40px 0 20px;
}
.order-success-icon{
  font-size:56px;margin-bottom:16px;
  animation:successPop .5s cubic-bezier(.2,1,.3,1) both;
}
@keyframes successPop{
  0%{opacity:0;transform:scale(.5)}
  70%{transform:scale(1.15)}
  100%{opacity:1;transform:scale(1)}
}
.order-success-title{
  margin:0 0 12px;font-size:32px;font-size:clamp(28px,4vw,42px);font-weight:900;letter-spacing:-.04em;color:#fff;
}
.order-success-desc{
  margin:0 0 32px;color:rgba(229,251,255,.65);font-size:15px;line-height:1.7;max-width:480px;margin-left:auto;margin-right:auto;
}
.order-summary-card{
  background:rgba(20,20,25,.90);border:1px solid rgba(255,255,255,.10);
  border-radius:22px;padding:28px;text-align:left;
  -webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  margin-bottom:32px;
}
.order-summary-header{
  display:flex;justify-content:space-between;align-items:center;
  padding-bottom:16px;border-bottom:1px solid rgba(255,255,255,.08);margin-bottom:20px;
}
.order-summary-code{
  font-size:18px;font-weight:900;color:var(--lime);letter-spacing:.3px;
}
.order-summary-date{
  font-size:12px;color:rgba(229,251,255,.45);font-weight:600;
}
.order-summary-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:16px;
}
.order-summary-item{}
.order-summary-label{
  font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;
  color:rgba(229,251,255,.4);margin-bottom:4px;
}
.order-summary-value{
  font-size:14px;color:#d1d5db;font-weight:600;
}
.order-badge{
  display:inline-flex;padding:4px 10px;border-radius:6px;font-size:11px;font-weight:800;text-transform:uppercase;
}
.badge--success{background:rgba(0,200,100,.15);color:#00e87a;}
.badge--warning{background:rgba(255,180,0,.15);color:#ffb400;}
.badge--danger{background:rgba(255,60,60,.15);color:#ff6060;}
.badge--info{background:rgba(57,59,231,.15);color:#8285ff;}
.badge--default{background:rgba(255,255,255,.1);color:#aaa;}

.order-success-actions{
  display:flex;flex-direction:column;gap:12px;align-items:center;
}
.btn-wa-order{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  width:100%;max-width:400px;padding:16px 24px;border-radius:16px;
  background:#25d366;color:#fff;font-weight:800;font-size:15px;letter-spacing:.04em;
  text-decoration:none;transition:transform .18s,box-shadow .18s;
  box-shadow:0 14px 36px rgba(37,211,102,.25);
}
.btn-wa-order:hover{transform:translateY(-2px);box-shadow:0 18px 42px rgba(37,211,102,.35);}
.btn-back-catalog{
  display:inline-flex;align-items:center;justify-content:center;gap:6px;
  padding:14px 24px;border-radius:14px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);
  color:#d1d5db;font-weight:700;font-size:14px;text-decoration:none;
  transition:all .2s;
}
.btn-back-catalog:hover{background:rgba(255,255,255,.12);color:#fff;}

/* Order page responsive */
@media(max-width:980px){
  .order-layout{grid-template-columns:1fr;}
  .order-sidebar{order:2;}
  .order-form-card{order:1;}
}
@media(max-width:640px){
  .order-form-card{padding:22px;border-radius:22px;}
  .order-form-card__title{font-size:22px;}
  .order-summary-grid{grid-template-columns:1fr;}
  .order-success-wrap{padding:20px 0;}
}

/* =========================
   AUTH PAGES (login/register)
   ========================= */
.auth-hero{
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(199,255,26,.95), rgba(199,255,26,.82));
  color: #111;
}
.auth-hero__inner{
  position: relative;
  z-index: 1;
  min-height: 320px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 36px;
  padding: 60px 28px;
}
.auth-eyebrow{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.08);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom:14px;
}
.auth-hero__title{
  margin: 0 0 14px;
  font-size: 48px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight:900;
}
.text-lime{ color:var(--blue); }
.auth-hero__desc{
  margin: 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(0,0,0,.72);
}
.auth-hero__badge{
  justify-self: end;
  width: 100%;
  max-width: 380px;
  background: rgba(255,255,255,.90);
  border-radius: 28px;
  padding: 26px 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.auth-hero__badge h3{
  margin: 0 0 10px;
  color: #111;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight:800;
}
.auth-hero__badge p{
  color: rgba(0,0,0,.66);
  font-size: 14px;
  line-height: 1.65;
  margin:0 0 14px;
}
.auth-hero__chip{
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.auth-section{
  position: relative;
  padding: 80px 0 100px;
  background: var(--black);
  min-height: calc(100vh - 76px - 60px); /* Adjust for header/footer approx */
  display: flex;
  align-items: center;
  overflow: hidden;
}
.auth-section::before{
  content: "";
  position:absolute;
  top:0; right:0; bottom:0; left:0;
  background:
    radial-gradient(1100px circle at 85% 10%, rgba(179,255,0,.35), transparent 75%),
    radial-gradient(1000px circle at 10% 50%, rgba(57,59,231,.45), transparent 70%);
  pointer-events:none;
  filter: blur(40px);
  z-index: 0;
}
.auth-section > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.auth-section__head{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 40px;
}
.auth-section__title{
  margin: 0;
  font-size: 48px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight:900;
  color:var(--white);
}
.auth-section__desc{
  max-width: 500px;
  margin: 0;
  color: var(--auth-muted);
  font-size: 15px;
  line-height: 1.7;
}
.auth-card{
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(245,246,252,.95));
  border-radius: 28px;
  padding: 40px;
  color: #111;
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
.auth-card--wide{ width: 100%; max-width: 760px; }
.auth-card__label{
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(75,69,255,.08);
  color: var(--auth-blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.auth-card__title{
  margin: 0 0 8px;
  font-size: 34px;
  line-height: .98;
  letter-spacing: -.05em;
  font-weight:900;
}
.auth-card__sub{
  margin: 0 0 22px;
  color: #666;
  line-height: 1.7;
  font-size: 14px;
}
.input-wrap{
  position: relative;
}
.input-wrap input{
  padding-right: 46px;
}
.toggle-pass{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  padding: 4px;
  display:flex;
  transition: color .2s;
}
.toggle-pass:hover, .toggle-pass.active{ color: var(--auth-blue); }
.auth-actions-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 6px 0 20px;
  font-size: 14px;
  color: #666;
}
.remember{ display: inline-flex; align-items: center; gap: 10px; font-size:14px; }
.remember input[type=checkbox]{ width:16px; height:16px; }
.link-accent{ color: var(--auth-blue); font-weight: 700; }
.link-accent:hover{ text-decoration:underline; }
.btn-primary-form{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 17px 22px;
  border: 0;
  border-radius: 16px;
  background: var(--auth-lime);
  color: #111;
  font-family: inherit;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(199,255,26,.24);
  transition: transform .18s, box-shadow .18s;
}
.btn-primary-form:hover{ transform:translateY(-2px); box-shadow: 0 20px 44px rgba(199,255,26,.3); }
.alt-text{
  margin-top: 16px;
  text-align: center;
  color: #6d6d6d;
  font-size: 14px;
}
.alt-text a{ color: var(--auth-blue); font-weight: 700; }

/* Auth uses .field label too */
.auth-card .field label{ color:#202020; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px){
  .nav{display:none}
  .nav.nav--open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:76px;left:0;right:0;
    background:rgba(0,0,0,.97);
    padding:20px 28px 28px;
    gap:16px;
    border-bottom:1px solid var(--line);
    z-index:49;
  }
  .nav__links { display:flex; flex-direction:column; gap:16px; text-align: left; }
  .nav.nav--open .auth {
    flex-direction:column;
    align-items:stretch;
    margin-left:0;
    margin-top:10px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
  }
  .nav.nav--open .auth__user { justify-content: center; margin-bottom: 12px; }
  .nav.nav--open .auth .btn { width: 100%; justify-content: center; }
  .nav-toggle{display:flex}
  .topbar__inner{position:relative;flex-wrap:nowrap;justify-content:space-between;align-items:center}
  .brand{min-width:unset}

  .hero__inner{grid-template-columns:1fr; padding:44px 28px}
  .hero__right{justify-content:flex-start}
  .hero__title{font-size:52px}
  .section__title{font-size:42px}
  .product-grid{grid-template-columns:1fr 1fr}
  .why__inner{grid-template-columns:1fr}
  .why__title{font-size:52px}
  .cta__inner{grid-template-columns:1fr}
  .cta__title{font-size:56px}

  .catalog__grid{ grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .catalog__title{ font-size: 38px; }

  .gallery-grid{ grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .auth-hero__inner{grid-template-columns:1fr}
  .auth-hero__badge{justify-self:start; width:100%}
  .auth-section__head{flex-direction:column; align-items:flex-start}

  .contact-hero { min-height: auto; }
  .contact-hero__inner{min-height:400px; padding-top: 100px; padding-bottom: 60px;}
  .contact-grid{grid-template-columns:1fr}
  .field-row--2{grid-template-columns:1fr}
}

@media (max-width: 640px){
  .container{padding:0 16px}
  .product-grid{grid-template-columns:1fr}
  .hero__frame{width:100%}
  .catalog{ padding: 34px 0 60px; }
  .catalog__grid{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .c-card__img{ padding-bottom: 100%; }
  .auth-card{ padding: 22px; border-radius: 22px; }
  .auth-card__title{ font-size: 28px; }
  .auth-section{ padding: 60px 0 80px; }
  .auth-actions-row{flex-direction:column;align-items:flex-start}
  .field-row--2{grid-template-columns:1fr}
}