:root{
  --bg:#0c1118;              /* lighter dark base */
  --card:#121826;
  --card2:#0f1522;
  --text:#f3f5f7;
  --muted:#a7b0bf;
  --line:rgba(255,255,255,.12);

  /* 2GK neon vibe */
  --accent:#d6ff2b;
  --accent2:#ffe85a;
  --accentGlow: rgba(214,255,43,.25);

  --shadow: 0 22px 80px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(900px 600px at 18% 0%, rgba(214,255,43,.14), transparent 62%),
    radial-gradient(900px 600px at 85% 15%, rgba(255,232,90,.10), transparent 60%),
    radial-gradient(700px 500px at 50% 110%, rgba(214,255,43,.08), transparent 65%),
    linear-gradient(180deg, #0e1420 0%, #0c1118 100%);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{width:min(1100px,92%);margin:0 auto}

/* ================= HEADER ================= */
.header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(14px);
  background: rgba(12,17,24,.75);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

/* ================= BRAND ================= */
.brand{display:flex;align-items:center;gap:12px}

.brandLink{
  display:flex;
  align-items:center;
  gap:12px;
  max-height:56px;
}

.brandLogo{
  width:75px;
  height:75px;
  max-width:75px;
  max-height:75px;
  object-fit:contain;
  display:block;
  flex:0 0 46px;

  padding:5px;
  border-radius:14px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border:1px solid rgba(214,255,43,.25);
  box-shadow:
    0 0 0 2px rgba(214,255,43,.10),
    0 14px 40px rgba(0,0,0,.45);
}

.brandName{
  font-weight:950;
  font-size:15px;
  letter-spacing:.2px;
}

.brandTag{
  color:var(--muted);
  font-size:12px;
  margin-top:2px;
}

/* ================= NAV ================= */
.links{
  display:flex;
  gap:12px;
  align-items:center;
}

.links a{
  padding:10px 14px;
  border-radius:14px;
  color:var(--muted);
  border:1px solid transparent;
  transition:all .18s ease;
}

.links a:hover,
.links a.active{
  color:var(--text);
  background: rgba(255,255,255,.08);
  border-color: rgba(214,255,43,.20);
  box-shadow: 0 0 0 3px rgba(214,255,43,.08);
}

/* ================= HERO ================= */
.hero{
  margin:28px 0 20px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
}

.hero h1{
  margin:0 0 10px;
  font-size:40px;
  letter-spacing:-.8px;
}

.hero p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.heroBadges{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.badge{
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(214,255,43,.20);
  font-size:12px;
}

/* ================= HERO CARD ================= */
.heroCard{
  position:relative;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
  box-shadow: var(--shadow);
}

.heroCardTitle{
  font-weight:950;
  margin-bottom:10px;
}

.controls{display:grid;gap:10px}

.input,.select{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  background: rgba(18,24,38,.85);
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
  outline:none;
  transition:box-shadow .18s ease, border-color .18s ease;
}

.input::placeholder{color:rgba(167,176,191,.8)}

.input:focus,.select:focus{
  border-color: rgba(214,255,43,.40);
  box-shadow: 0 0 0 4px rgba(214,255,43,.14);
}

.smallNote{
  margin-top:10px;
  color:var(--muted);
  font-size:12px;
  line-height:1.4;
}

/* ================= SECTION ================= */
.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin:18px 0 10px;
}

.sectionHead h2{margin:0;font-size:18px}
.muted{color:var(--muted)}

/* ================= GRID ================= */
.grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  padding-bottom:18px;
}

/* ================= PRODUCT CARD ================= */
.card{
  position:relative;
  text-align:left;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  cursor:pointer;
  box-shadow: 0 12px 36px rgba(0,0,0,.40);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover{
  transform: translateY(-4px);
  border-color: rgba(214,255,43,.35);
  box-shadow:
    0 0 0 3px rgba(214,255,43,.12),
    0 24px 80px rgba(0,0,0,.55);
}

.thumb{
  height:180px;
  background: rgba(0,0,0,.20);
}

.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.cardBody{padding:14px}

.cardTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
  gap:10px;
}

.pill{
  padding:6px 12px;
  border-radius:999px;
  background: rgba(214,255,43,.12);
  border:1px solid rgba(214,255,43,.28);
  font-size:12px;
}

.priceSmall{font-weight:950}
.title{font-weight:950;font-size:15px;margin:2px 0 6px}

/* ================= CONTACT ================= */
.contact{margin:12px 0 30px}

.contactCard{
  margin-top:16px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
  box-shadow: var(--shadow);
}

.contactRow{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:12px 0;
}

.contactItem .label{font-size:12px;color:var(--muted)}
.contactItem .value{font-weight:950;margin-top:4px}

.contactActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ================= BUTTONS (WHITE TEXT) ================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(214,255,43,.45);
  background: linear-gradient(135deg, rgba(214,255,43,.30), rgba(255,232,90,.22));
  color:#ffffff; /* white text */
  font-weight:950;
  box-shadow: 0 12px 36px rgba(0,0,0,.40);
  transition:filter .18s ease, box-shadow .18s ease, transform .18s ease;
}

.btn:hover{
  filter:brightness(1.08);
  box-shadow:
    0 0 0 4px rgba(214,255,43,.16),
    0 18px 60px rgba(0,0,0,.55);
  transform: translateY(-1px);
}

.btn:active{transform: translateY(0)}

.btnSoft{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20);
  color:#ffffff; /* white text */
}

/* ================= FOOTER ================= */
.footer{
  padding:18px 0 30px;
  border-top:1px solid var(--line);
}

/* ================= MODAL (MOBILE-FRIENDLY) ================= */
.modalOverlay{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.55);
  padding:12px;
  z-index:50;

  /* allow overlay to scroll if needed */
  overflow-y:auto;
  -webkit-overflow-scrolling: touch;
}

.modalOverlay.show{
  display:flex;
  animation:fadeIn .18s ease;
}

@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}

.modal{
  width:100%;
  max-width:980px;
  max-height:92vh;              /* key */
  background: rgba(18,24,38,.97);
  border-radius:26px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  overflow:hidden;

  display:flex;
  flex-direction:column;

  animation:modalIn .20s ease forwards;
  transform: translateY(10px) scale(.985);
}

@keyframes modalIn{
  to{transform: translateY(0) scale(1)}
}

/* Sticky close button (always reachable on phone) */
.iconBtn{
  position:sticky;
  top:0;
  align-self:flex-end;
  margin:10px;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.55);
  color:var(--text);
  cursor:pointer;
  z-index:10;
  transition: box-shadow .16s ease, border-color .16s ease, transform .16s ease;
}

.iconBtn:hover{
  border-color: rgba(214,255,43,.28);
  box-shadow: 0 0 0 4px rgba(214,255,43,.12);
  transform: rotate(1deg);
}

/* Modal content scrolls (not the page) */
.modalBody{
  display:grid;
  grid-template-columns:1fr 1fr;
  overflow-y:auto;
  -webkit-overflow-scrolling: touch;
}

.modalMedia{
  background: rgba(0,0,0,.25);
  min-height:280px;
}

.modalMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

.modalMedia:hover img{
  transform:scale(1.04);
}

.modalInfo{padding:18px}

.modalInfo h3{
  margin:10px 0 8px;
  font-size:22px;
}

.price{
  font-weight:1000;
  font-size:18px;
  margin-bottom:8px;
}

.meta{
  color:var(--muted);
  margin-bottom:10px;
}

.desc{
  white-space:pre-line;
  line-height:1.6;
  margin:0 0 12px;
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:10px 0 6px;
}

/* ================= RESPONSIVE ================= */
@media (max-width:900px){
  .hero{grid-template-columns:1fr}
  .grid{grid-template-columns:repeat(2,1fr)}
  .modalBody{grid-template-columns:1fr}
  .modal{max-height:96vh;border-radius:18px}
  .modalMedia{min-height:220px}
  .contactRow{grid-template-columns:1fr}
}

@media (max-width:560px){
  .grid{grid-template-columns:1fr}
  .hero h1{font-size:30px}
}
