* { margin:0; padding:0; box-sizing:border-box; }

:root{
  --bg: #f5f7fb;          /* light page background */
  --text: #0f172a;        /* dark text */
  --muted: #475569;       /* muted text */
  --card: #ffffff;        /* card background */
  --border: #e2e8f0;      /* borders */
  --brand: #1d4ed8;       /* blue */
  --brand2:#0ea5e9;       /* teal-blue */
  --heroOverlay: rgba(0,0,0,0.35);
}

body{
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a{ text-decoration:none; color:inherit; }
img{ display:block; max-width:100%; }

.container{ max-width:1200px; margin:0 auto; padding: 0 18px; }

/* NAV */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner{
  max-width:1200px;
  margin:0 auto;
  padding: 12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.brand{
  font-weight: 900;
  letter-spacing: .2px;
}
.links{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  justify-content:flex-end;
}
.links a{
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text);
  border: 1px solid transparent;
}
.links a:hover{
  border-color: var(--border);
  background: rgba(29,78,216,0.06);
}

/* HERO (keeps your image visible + readable text) */
.hero{
  background-image:url("../images/hero-laser.jpg");
  min-height: 88vh;
  /* background-image: url("../images/hero-laser.jpg");
RELATIVE to html page */
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 40px 18px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--heroOverlay);
}
.hero-content{
  position:relative;
  z-index:2;
  max-width: 900px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.hero h1{
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: 1px;
  line-height: 1.05;
}
.hero p{
  margin: 14px 0 22px;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  opacity: 0.98;
}

/* BUTTONS */
.btn{
  display:inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.15s;
}
.btn-primary{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color:#fff;
}
.btn-primary:hover{ filter: brightness(1.05); transform: translateY(-1px); }
.btn-ghost{
  background: rgba(255,255,255,0.18);
  color:#fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.28); }

/* PAGE HEADERS */
.page-head{ padding: 22px 0 10px; }
.page-title{ font-size: 2rem; margin-bottom: 6px; }
.page-sub{ color: var(--muted); }

/* GRID + CARDS */




/* Footer */
footer{
  border-top: 1px solid var(--border);
  padding: 22px 18px;
  text-align:center;
  color: var(--muted);
  margin-top: 40px;
}
/* ===== ORDER PAGE ONLY (keeps hero + other pages untouched) ===== */
body.page-order{
  background:#000 !important;
  color:#eee;
}

body.page-order .page-title,
body.page-order .page-sub{
  color:#eee;
}

body.page-order .page-sub{ opacity:.85; }

/* make the form look like a real form again */
body.page-order .form{
  max-width: 700px;
  margin: 18px auto 40px;
  padding: 18px;
  background: rgba(15,15,15,0.92);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
}

body.page-order .form label{
  display:block;
  margin-top: 14px;
  font-weight: 800;
}

body.page-order .form input,
body.page-order .form select,
body.page-order .form textarea{
  display:block;
  width:100%;
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.55);
  color:#eee;
  font-size: 16px;
  outline: none;
}

body.page-order .form textarea{ min-height: 110px; resize: vertical; }

body.page-order .form input:focus,
body.page-order .form select:focus,
body.page-order .form textarea:focus{
  border-color: rgba(0, 180, 255, 0.7);
}

body.page-order .form .btn{
  margin-top: 16px;
}

.desc {
  overflow: visible;
}

.desc .more {
  display: none;
}

.desc.open .more {
  display: inline;
}
.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.actions {
  margin-top: auto;
}




/* =========================
   ORDER PAGE ONLY (DARK)
   ========================= */
.page-order{
  background:#0a0a0a;
  color:#eee;
}

.page-order .topbar{
  background: rgba(0,0,0,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.page-order .links a{ color:#fff; opacity:0.9; }
.page-order .links a:hover{ opacity:1; }

.page-order .page-sub{ color: rgba(255,255,255,0.75); }

.page-order .form{
  background:#111;
  border:1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

.page-order label{
  color:#fff;
}

.page-order input,
.page-order select,
.page-order textarea{
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,0.18);
  color:#fff;
}

.page-order input::placeholder,
.page-order textarea::placeholder{
  color: rgba(255,255,255,0.6);
}

.page-order .btn.btn-primary{
  background: var(--brand);
  color:#fff;
  border: 1px solid rgba(255,255,255,0.12);
}

.page-order .btn.btn-primary:hover{
  filter: brightness(1.08);
}

.page-order footer{
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.12);
}
/* =========================
   PAGE HEADERS
   ========================= */
.page-head{
  padding: 22px 0 10px;
}

.page-title{
  font-size: 2rem;
  margin-bottom: 6px;
}

.page-sub{
  color: var(--muted);
}


/* =========================
   GRID
   ========================= */
.grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 18px 0 36px;
  align-items: stretch;
}


/* =========================
   CARD
   ========================= */
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(2,6,23,0.06);
}


/* =========================
   MAIN PRODUCT IMAGE
   ========================= */
.card .main-img{
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: #f1f5f9;
  padding: 8px;
  cursor: pointer;
}


/* =========================
   THUMBNAILS
   ========================= */
.thumbs{
  display: flex;
  gap: 6px;
  padding: 6px;
  overflow-x: auto;
}

.thumbs img{
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #e2e8f0;
}

.thumbs img.active{
  outline: 2px solid var(--brand);
}


/* =========================
   CARD BODY
   ========================= */
.card-body{
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card h3{
  font-size: 1.05rem;
}

.meta{
  color: var(--muted);
  font-size: 0.95rem;
}

.price{
  color: #0f766e;
  font-weight: 900;
  font-size: 1.1rem;
}

/* =========================
   ACTION BUTTONS
   ========================= */
.actions{
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


/* =========================
   LIGHTBOX
   ========================= */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.show{
  display: flex;
}

.lightbox img{
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}


/* =========================
   FOOTER
   ========================= */
footer{
  border-top: 1px solid var(--border);
  padding: 22px 18px;
  text-align: center;
  color: var(--muted);
  margin-top: 40px;
}


/* =========================
   ORDER PAGE (DARK ONLY)
   ========================= */
body.page-order{
  background: #0a0a0a;
  color: #eee;
}

body.page-order .page-title,
body.page-order .page-sub{
  color: #eee;
}

body.page-order .page-sub{
  opacity: 0.85;
}

body.page-order .form{
  max-width: 700px;
  margin: 18px auto 40px;
  padding: 18px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
}

body.page-order label{
  display: block;
  margin-top: 14px;
  font-weight: 800;
}

body.page-order input,
body.page-order select,
body.page-order textarea{
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: #0b0b0b;
  color: #eee;
}

body.page-order textarea{
  min-height: 110px;
  resize: vertical;
}

body.page-order .btn-primary{
  background: var(--brand);
  color: #fff;
}

body.page-order footer{
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ===============================
   LIGHTBOX IMAGE — FINAL LOCK
   =============================== */

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.lightbox.show{
  display: flex;
}

.lightbox img{
  max-width: 90vw;     /* never wider than screen */
  max-height: 90vh;    /* never taller than screen */
  width: auto;
  height: auto;
  object-fit: contain; /* KEEP FULL IMAGE */
  border-radius: 14px;
  background: #111;
}

/* ===============================
   MAIN CARD IMAGE — FINAL LOCK
   =============================== */

.card .main-img{
  width: 100%;
  height: 240px;
  max-height: 240px;
  object-fit: contain;
  background: #f1f5f9;
  padding: 8px;
  margin: 0;
  display: block;
}

/* Kill ALL generic image rules inside cards */
.card img:not(.main-img){
  height: auto;
  max-height: none;
  object-fit: cover;
}

/* Thumbnails NEVER affect layout */
.thumbs{
  display: flex;
  gap: 6px;
  padding: 6px;
  overflow-x: auto;
}

.thumbs img{
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: cover;
}

.page-order {
  background: #000;
  color: #ddd;
}

.order-info {
  max-width: 800px;
  margin: 40px auto;
}

.order-info h2 {
  margin-top: 40px;
  margin-bottom: 10px;
}

.order-info p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.order-action {
  margin: 50px 0;
  text-align: center;
}

.site-footer {
  background: #111;
  color: #aaa;
  padding: 20px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-links a {
  color: #3b5998;
  text-decoration: none;
  margin-left: 15px;
}

.footer-links a:hover {
  text-decoration: underline;
}
.site-footer {
  background: #111;
  color: #ccc;
  padding: 20px;
  margin-top: 40px;
  font-size: 14px;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.fb-link {
  color: #3b5998;
  text-decoration: none;
  font-weight: 600;
}

.fb-link:hover {
  text-decoration: underline;
}

.site-footer {
  background: #0d0d0d;
  color: #ccc;
  margin-top: 80px;
}

.footer-content {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-brand h3 {
  margin: 0 0 5px;
  color: #fff;
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  color: #aaa;
}

.footer-actions {
  display: flex;
  gap: 15px;
}

.footer-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
 perceived
}

.footer-btn.fb {
  background: #1877f2;
  color: #fff;
}

.footer-btn.email {
  background: #333;
  color: #fff;
}

.footer-btn:hover {
  opacity: 0.85;
}

.footer-btn img {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #777;
}
.container {
  padding-bottom: 60px;
}

.page-head {
  margin-bottom: 40px;
}
img { user-select: none; -webkit-user-drag: none; }


