:root{
  --gold: #d4af37;
  --gold-light: #fbe39f;
  --gold-vivid: #e6b800;
  --gold-dark: #997300;
  --gold-border: rgba(212, 175, 55, 0.35);
  --gold-glow: rgba(212, 175, 55, 0.45);
  
  /* EXACT LUXURY COSMIC DARK BACKGROUND AS THANK YOU PAGE */
  --bg-main: #0f0d0b;
  --bg-card: #1a1612;
  --bg-alt: #14110e;
  --dark: #0f0d0b;
  --dark-surface: #1a1612;
  --dark-border: rgba(212, 175, 55, 0.25);
  
  --text-dark: #ffffff;
  --text-body: rgba(255, 255, 255, 0.82);
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-gold: #f5c842;
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background: var(--bg-main);
  color: var(--text-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── LIVE GOLDEN PARTICLES CANVAS (SHARP & PIN-CRISP) ── */
#pcvs{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 998;
}

/* ── CUSTOM MOUSE CURSOR ── */
.curs{position:fixed;pointer-events:none;z-index:99999;transform:translate(-50%,-50%);border-radius:50%;}
#dot{
  width:10px;height:10px;
  background: var(--gold-vivid);
  box-shadow: 0 0 12px var(--gold-glow);
  transition: width .2s, height .2s, background .2s;
}
#ring{
  width:42px;height:42px;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 15px rgba(212,175,55,0.3);
  transition: all .15s ease-out;
}
body.hovering #dot{width:18px;height:18px;background:transparent;border:2px solid var(--gold-vivid);}
body.hovering #ring{width:56px;height:56px;border-color:var(--gold-light);}

/* ── SCROLL PROGRESS BAR ── */
#prog{
  position:fixed;top:0;left:0;height:3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-vivid), #fff5cc, var(--gold));
  box-shadow: 0 0 10px var(--gold-vivid);
  z-index:9997;transform-origin:left;transform:scaleX(0);
}

/* ── STICKY NAVIGATION (DARK GLASS LUXURY) ── */
nav{
  position:fixed;top: 0;left:0;right:0;z-index:1000;
  padding:18px 60px;
  display:flex;align-items:center;justify-content:space-between;
  background: rgba(15, 13, 11, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  transition: all .35s ease;
}
nav.sc{
  top: 0;
  padding: 12px 60px;
  background: #0f0d0b;
  border-bottom: 1px solid var(--gold);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.15);
}
.logo{
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ffffff;
}
.logo em{color: var(--gold-vivid);font-style: normal;}
.nlinks{display:flex;gap:36px;list-style:none;}
.nlinks a{
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position:relative;
  padding-bottom: 4px;
  transition: color .25s;
}
.nlinks a::after{
  content:'';position:absolute;bottom:0;left:0;width:0;height:2px;
  background: var(--gold-vivid);
  transition: width .25s ease;
}
.nlinks a:hover{color: var(--gold-vivid);}
.nlinks a:hover::after{width:100%;}
.ncta{
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 34px;
  border: 1.5px solid var(--gold-light);
  border-radius: 4px;
  color: #110e0a;
  background: linear-gradient(135deg, #ffd700 0%, #e6b800 50%, #cc9900 100%);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(230, 184, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
  transition: all .3s ease;
}
.ncta:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 184, 0, 0.75), 0 0 25px rgba(255, 215, 0, 0.5);
  color: #000;
}

/* ── BUTTONS ── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  cursor:pointer;font-family: var(--font-body);font-weight: 800;
  text-transform:uppercase;letter-spacing:2.5px;border:none;
  transition: all .3s ease;position:relative;overflow:hidden;
}
.btn::before{
  content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.35),transparent);
  transition: left .5s;
}
.btn:hover::before{left:100%;}
.btn-gold{
  padding: 18px 46px;
  background: linear-gradient(135deg, #e6b800 0%, #b8860b 100%);
  color: #110e0a;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
}
.btn-gold:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7);
  color: #000;
}
.btn-outline{
  padding: 16px 38px;
  border: 2px solid var(--gold);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 11.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.btn-outline:hover{
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-vivid);
  transform: translateY(-2px);
}
.btn-big{padding: 20px 58px;font-size: 13px;letter-spacing: 3px;}

/* ── HERO SECTION (THANK YOU PAGE COSMIC DARK BACKGROUND) ── */
#hero{
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 75% 45%, rgba(212, 175, 55, 0.14) 0%, rgba(26, 22, 18, 0.6) 45%, #0f0d0b 85%);
  padding: 130px 60px 80px;
  gap: 40px;
  z-index: 3;
}
.hbg{
  position: absolute;top: 50%;left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(100px, 17vw, 250px);
  font-weight: 900;
  color: rgba(212, 175, 55, 0.05);
  letter-spacing: 25px;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.hleft{z-index: 2;max-width: 620px;}
.anim-up{opacity: 1;transform: none;}

.hey{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-vivid);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hey::before{content:'';display:block;width:36px;height:2px;background: var(--gold-vivid);}

.htitle{
  font-family: var(--font-heading);
  font-size: clamp(40px, 4.8vw, 76px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 16px;
  color: #ffffff;
}
.htitle em{
  font-style: normal;
  background: linear-gradient(135deg, #ffd752, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hsub{
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}
.hdesc{
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 34px;
  font-weight: 400;
}

/* ── OFFER PRICE BOX (DARK LUXURY CARD) ── */
.hprice-wrap{
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
  padding: 22px 32px;
  background: #1a1612;
  border: 2px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  position: relative;
}
.hprice-wrap::before{
  content: '🔥 LIMITED TIME OFFER — SAVE ৳200';
  position: absolute;
  top: -14px;
  left: 24px;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 4px 14px;
  background: #d63031;
  color: #ffffff;
  font-weight: 900;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(214, 48, 49, 0.5);
}
.price-old{
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  text-decoration-color: #d63031;
  text-decoration-thickness: 3px;
}
.price-new{
  font-family: var(--font-heading);
  font-size: 68px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.price-new sup{
  font-size: 26px;
  vertical-align: top;
  margin-top: 12px;
  color: var(--gold-vivid);
  font-weight: 900;
}
.price-label{display: flex;flex-direction: column;gap: 4px;}
.price-label span:first-child{
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff6b6b;
  font-weight: 900;
}
.price-label span:last-child{
  font-size: 12px;
  font-weight: 700;
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.15);
  padding: 3px 8px;
  border-radius: 3px;
}

/* ── OFFER COUNTDOWN TIMER BADGE ── */
.offer-timer-box{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1a1612;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  padding: 12px 20px;
  margin-bottom: 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}
.timer-dot{
  width: 9px;height: 9px;
  border-radius: 50%;
  background: #e74c3c;
  box-shadow: 0 0 10px #e74c3c;
  animation: blink 1s ease-in-out infinite;
  flex-shrink: 0;
}
.timer-text{
  color: #ff7675;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 11px;
}
.offer-timer-box strong{
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 4px 10px;
  border-radius: 3px;
}
@keyframes blink{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.3;transform:scale(0.8);}}

.hbtns{display: flex;gap: 16px;flex-wrap: wrap;}

/* ── HERO PRODUCT SHOWCASE IMAGE ── */
.hright{
  position: relative;z-index: 2;
  display: flex;align-items: center;justify-content: center;
}
.hero-img-wrap{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
}
.hero-img{
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 14px;
  border: 2px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  object-fit: cover;
  display: block;
}
.hero-img:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 70px rgba(212, 175, 55, 0.4);
  border-color: var(--gold-vivid);
}
.hero-img-glow{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.22), transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: hGlow 4s ease-in-out infinite alternate;
}
@keyframes hGlow{
  0%{ opacity: 0.5; transform: translate(-50%, -50%) scale(0.92); }
  100%{ opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
.badge{
  position: absolute;
  background: rgba(26, 22, 18, 0.95);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 12px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0;z-index: 3;
}
.badge .bv{font-family: var(--font-heading);font-size: 26px;font-weight: 900;color: var(--gold-vivid);}
.badge .bl{font-size: 9.5px;font-weight: 800;letter-spacing: 1.5px;text-transform: uppercase;color: rgba(255, 255, 255, 0.8);}
.b1{top: -10px;right: -10px;}
.b2{bottom: -10px;left: -10px;}

/* ── MARQUEE TICKER ── */
.mqsec{
  padding: 20px 0;
  background: #0b0907;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
  position: relative;z-index: 3;
}
.mqt{display: flex;white-space: nowrap;animation: mqr 26s linear infinite;}
.mqi{
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-light);
  padding: 0 34px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;align-items: center;gap: 34px;
}
.mqd{width: 6px;height: 6px;background: var(--gold-vivid);box-shadow: 0 0 8px var(--gold-vivid);border-radius: 50%;flex-shrink: 0;}
@keyframes mqr{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}

/* ── COMMON SECTION HEADERS ── */
section{position: relative;z-index: 3;}
.sl{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-vivid);
  margin-bottom: 14px;
  display: flex;align-items: center;gap: 12px;
}
.sl::before{content:'';display:block;width:30px;height:2px;background: var(--gold-vivid);}
.sttl{
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 20px;
  color: #ffffff;
}
.sttl em{
  font-style: normal;
  background: linear-gradient(135deg, #ffd752, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── 6 REASONS / FEATURES SECTION (DARK LUXURY CARDS) ── */
#features{
  padding: 120px 60px;
  background: #110e0a;
}
.fh{text-align: center;max-width: 640px;margin: 0 auto 70px;}
.fh .sl{justify-content: center;}
.fgrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.fcard{
  background: #1a1612;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  padding: 44px 34px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: all .35s ease;
  opacity: 0;transform: translateY(40px);
}
.fcard::before{
  content:'';position: absolute;top: 0;left: 0;right: 0;height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-vivid), var(--gold-light));
  transform: scaleX(0);transition: transform .4s ease;
}
.fcard:hover::before{transform: scaleX(1);}
.fcard:hover{
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(212,175,55,0.25);
  background: #221c16;
}
.ficon{font-size: 34px;margin-bottom: 20px;display: block;}
.fcard h3{
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}
.fcard p{
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}
.fnum{
  position: absolute;bottom: 16px;right: 20px;
  font-family: var(--font-heading);
  font-size: 42px;font-weight: 900;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
}

/* ── STORY SECTION ── */
#story{
  padding: 130px 60px;
  background: #0f0d0b;
  color: #ffffff;
  overflow: hidden;
  position: relative;
}
.stinner{
  max-width: 1200px;margin: 0 auto;
  display: grid;grid-template-columns: 1fr 1fr;gap: 80px;align-items: center;
}
.simgwrap{position: relative;height: 540px;}
.simg1{
  position: absolute;right: 0;top: 0;
  width: 330px;height: 420px;object-fit: cover;
  border: 2px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  opacity: 0;transform: translateX(40px);
}
.simg2{
  position: absolute;left: 0;bottom: 0;
  width: 250px;height: 310px;object-fit: cover;
  border: 2px solid var(--gold-vivid);
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  opacity: 0;transform: translateX(-40px);
}
.sgdot{
  position: absolute;width: 140px;height: 140px;border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.4), transparent);
  animation: gpulse 3s ease-in-out infinite;top: 35%;left: 35%;
}
@keyframes gpulse{0%,100%{transform:scale(1);opacity:.4;}50%{transform:scale(1.5);opacity:1;}}
.scont .sttl{color: #ffffff;}
.scont .sttl em{
  background: linear-gradient(135deg, #ffd752, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stxt{
  font-size: 15px;line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;margin-bottom: 24px;
  opacity: 0;transform: translateY(20px);
}
.sstats{display: flex;gap: 48px;margin-top: 40px;opacity: 0;transform: translateY(20px);}
.ssv{font-family: var(--font-heading);font-size: 50px;font-weight: 900;color: var(--gold-vivid);line-height: 1;}
.sslb{font-size: 11px;font-weight: 700;letter-spacing: 3px;text-transform: uppercase;color: rgba(255, 255, 255, 0.6);margin-top: 6px;}

/* ── SCROLL PANELS (DARK COSMIC PANELS) ── */
#scrollstory{background: #0f0d0b;}
.spanel{
  min-height: 90vh;
  display: flex;align-items: center;justify-content: center;
  padding: 80px 60px;
  background: #0f0d0b;
}
.spanel:nth-child(even){background: #14100c;}
.spgrid{
  max-width: 1150px;width: 100%;
  display: grid;grid-template-columns: 1fr 1fr;gap: 80px;align-items: center;
}
.spanel:nth-child(even) .spgrid{direction: rtl;}
.spanel:nth-child(even) .spgrid > *{direction: ltr;}
.spimg{position: relative;opacity: 0;}
.spimg img{
  width: 100%;height: 440px;object-fit: cover;
  border: 2px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.spimg::after{
  content:'';position: absolute;inset: 12px -12px -12px 12px;
  border: 2px solid var(--gold-vivid);border-radius: 4px;z-index: -1;
  transition: all .4s ease;
}
.spimg:hover::after{inset: 18px -18px -18px 18px;}
.sptxt{opacity: 0;transform: translateX(40px);}
.spanel:nth-child(even) .sptxt{transform: translateX(-40px);}
.spnum{
  font-family: var(--font-heading);
  font-size: 90px;font-weight: 900;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;margin-bottom: -16px;display: block;
}
.sptxt h2{
  font-family: var(--font-heading);
  font-size: 40px;font-weight: 900;
  margin-bottom: 18px;line-height: 1.2;
  color: #ffffff;
}
.sptxt h2 em{color: var(--gold-vivid);font-style: normal;}
.sptxt p{
  font-size: 15px;line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;margin-bottom: 24px;
}
.tagrow{display: flex;flex-wrap: wrap;gap: 10px;}
.tag{
  font-size: 10px;font-weight: 800;letter-spacing: 2px;
  text-transform: uppercase;padding: 7px 16px;
  border: 1.5px solid var(--gold);
  background: #1a1612;color: var(--gold-light);
  border-radius: 3px;
}

/* ── LIGHT MODES DEMO ── */
#glowdemo{
  padding: 130px 60px;
  background: #0f0d0b;
  text-align: center;
  position: relative;overflow: hidden;
  color: #fff;
}
.gdtxt{
  font-family: var(--font-heading);
  font-size: clamp(60px, 9vw, 130px);
  font-weight: 900;
  color: rgba(212, 175, 55, 0.04);
  letter-spacing: 12px;
  text-transform: uppercase;
  position: absolute;top: 50%;left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;pointer-events: none;
}
.gdcont{position: relative;z-index: 2;}
.gdcont .sl{justify-content: center;}
.lamps{
  display: flex;align-items: center;justify-content: center;
  gap: 70px;flex-wrap: wrap;margin-top: 60px;
}
.lamp{display: flex;flex-direction: column;align-items: center;gap: 16px;opacity: 0;transform: translateY(30px);}
@keyframes lampPulse{
  0%, 100%{transform: scale(1);}
  50%{transform: scale(1.04);}
}
.lampimg{
  width: 170px;height: 170px;border-radius: 50%;
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: pointer;
  animation: lampPulse 3.5s ease-in-out infinite;
}
.lamp:hover .lampimg{transform: scale(1.08);}
.lampwarm .lampimg{
  background: radial-gradient(circle, #fffbe6 15%, #ffd752 45%, #cc8800 80%);
  box-shadow: 0 0 50px 22px rgba(255, 215, 82, 0.55), 0 0 90px 45px rgba(204, 136, 0, 0.25);
}
.lamplbl{
  font-family: var(--font-heading);
  font-size: 20px;font-weight: 800;
  color: var(--gold-light);letter-spacing: 2px;
}
.lampsub{font-size: 11px;font-weight: 700;letter-spacing: 2px;text-transform: uppercase;color: rgba(255, 255, 255, 0.55);}

/* ── SPECS & MASTER ORDER CARD ── */
#specs{padding: 120px 60px;background: #110e0a;color: #ffffff;}
.specgrid{
  max-width: 1150px;margin: 0 auto;
  display: grid;grid-template-columns: 1fr 1fr;gap: 80px;align-items: center;
}
.specrow{
  display: flex;align-items: center;justify-content: space-between;
  padding: 18px 0;border-bottom: 1.5px solid rgba(212, 175, 55, 0.18);
  opacity: 0;transform: translateX(-20px);
}
.specn{font-size: 12px;font-weight: 800;letter-spacing: 2px;text-transform: uppercase;color: rgba(255, 255, 255, 0.55);}
.specv{font-family: var(--font-heading);font-size: 20px;font-weight: 800;color: #ffffff;}

/* ── MASTER PRICE SHOWCASE CARD ── */
.pcard{
  text-align: center;
  padding: 60px 48px;
  background: #1a1612;
  border: 2px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  position: relative;overflow: hidden;
  opacity: 0;transform: translateY(40px);
  color: #fff;
}
.pcard::before{
  content:'';position: absolute;top: -50%;left: -50%;width: 200%;height: 200%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15), transparent 60%);
  pointer-events: none;
}
.pc-offer{
  position: relative;display: inline-block;
  margin-bottom: 14px;
}
.pc-old{
  font-family: var(--font-heading);
  font-size: 40px;font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  text-decoration-color: #e74c3c;
  text-decoration-thickness: 3px;
}
.pc-save-badge{
  background: #d63031;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 14px;
  box-shadow: 0 4px 15px rgba(214, 48, 49, 0.4);
}
.pc-price{
  font-family: var(--font-heading);
  font-size: 88px;font-weight: 900;
  color: var(--gold-light);
  line-height: 1;margin-bottom: 6px;
}
.pc-price sup{font-size: 32px;vertical-align: top;margin-top: 18px;color: var(--gold-vivid);}
.pc-cur{
  font-size: 12px;font-weight: 700;letter-spacing: 3px;
  text-transform: uppercase;color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}
.pc-delivery{
  display: flex;justify-content: center;gap: 16px;
  margin-bottom: 28px;flex-wrap: wrap;
}
.pc-del{
  flex: 1;min-width: 140px;
  font-size: 11px;font-weight: 700;letter-spacing: 1.5px;
  text-transform: uppercase;padding: 12px;
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}
.pc-del strong{
  display: block;font-size: 18px;font-family: var(--font-heading);
  color: var(--gold-vivid);margin-top: 4px;font-weight: 800;
}
.pc-badges{
  display: flex;justify-content: center;gap: 10px;
  flex-wrap: wrap;margin-bottom: 32px;
}
.pc-badge{
  font-size: 10px;font-weight: 700;letter-spacing: 2px;text-transform: uppercase;
  padding: 7px 14px;border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;color: rgba(255, 255, 255, 0.7);
}
.btn-order{
  display: block;width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #e6b800 0%, #b8860b 100%);
  color: #110e0a;
  border: none;cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;font-weight: 900;
  letter-spacing: 4px;text-transform: uppercase;
  border-radius: 4px;
  transition: all .3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
}
.btn-order:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 45px rgba(212, 175, 55, 0.65);
  color: #000;
}

/* ── REVIEWS / TESTIMONIALS (DARK LUXURY CARDS) ── */
#testimonials{
  padding: 120px 60px;
  background: #0f0d0b;
  text-align: center;
}
.tgrid{
  display: grid;grid-template-columns: repeat(3, 1fr);gap: 24px;
  max-width: 1200px;margin: 0 auto;
}
.tcard{
  background: #1a1612;
  border: 1.5px solid rgba(212, 175, 55, 0.22);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all .35s ease;
  opacity: 0;transform: translateY(30px);
}
.tcard:hover{
  border-color: var(--gold);
  box-shadow: 0 16px 45px rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
}
.stars{color: #ffd700;font-size: 16px;letter-spacing: 3px;margin-bottom: 18px;}
.qtext{
  font-size: 16px;line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);font-weight: 500;
  margin-bottom: 24px;font-style: italic;
}
.qauth{display: flex;align-items: center;gap: 12px;}
.qavt{
  width: 42px;height: 42px;border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-vivid), var(--gold-dark));
  display: flex;align-items: center;justify-content: center;
  font-family: var(--font-heading);font-size: 16px;font-weight: 800;
  color: #110e0a;
}
.qname{font-size: 13px;font-weight: 800;letter-spacing: 1.5px;text-transform: uppercase;color: #ffffff;}
.qtitle{font-size: 11px;font-weight: 600;color: rgba(255, 255, 255, 0.55);}

/* ── FINAL CALL TO ACTION ── */
#finalcta{
  padding: 160px 60px;
  background: #0b0907;
  text-align: center;
  position: relative;overflow: hidden;
  color: #fff;
}
.fcmoon{
  position: absolute;top: 50%;left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;height: 520px;border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
  animation: fcg 5s ease-in-out infinite;
}
@keyframes fcg{0%,100%{transform:translate(-50%,-50%) scale(1);}50%{transform:translate(-50%,-50%) scale(1.15);}}
.fcont{position: relative;z-index: 2;}
.fey{
  font-size: 12px;font-weight: 900;letter-spacing: 6px;text-transform: uppercase;
  color: var(--gold-vivid);margin-bottom: 20px;opacity: 0;
}
.ftit{
  font-family: var(--font-heading);
  font-size: clamp(44px, 6.8vw, 92px);
  font-weight: 900;line-height: 1.12;
  margin-bottom: 20px;opacity: 0;transform: translateY(28px);
}
.ftit em{
  background: linear-gradient(135deg, #ffd752, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fsb{
  font-size: 20px;font-weight: 600;color: rgba(255, 255, 255, 0.7);
  margin-bottom: 34px;opacity: 0;
}
.f-price-row{
  display: flex;align-items: center;justify-content: center;
  gap: 24px;margin-bottom: 12px;opacity: 0;
}
.f-old{
  font-family: var(--font-heading);
  font-size: 46px;font-weight: 800;color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;text-decoration-color: #e74c3c;
}
.f-new{
  font-family: var(--font-heading);
  font-size: clamp(70px, 9vw, 115px);
  font-weight: 900;color: var(--gold-light);line-height: 1;
}
.f-new sup{font-size: 38px;vertical-align: top;margin-top: 20px;color: var(--gold-vivid);}
.f-cur{
  font-size: 12px;font-weight: 800;letter-spacing: 4px;text-transform: uppercase;
  color: var(--gold-vivid);margin-bottom: 44px;opacity: 0;
}
.fbtnrow{display: flex;justify-content: center;gap: 16px;flex-wrap: wrap;opacity: 0;transform: translateY(20px);}

/* ── ON-PAGE ORDER MODAL (POPUP FORM) ── */
#order-overlay{
  position: fixed;inset: 0;
  background: rgba(10, 8, 6, 0.96);
  z-index: 100000;
  display: none;align-items: center;justify-content: center;
  padding: 20px;
  animation: fadeIn .3s ease;
}
#order-overlay.show{display: flex;}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.order-box{
  background: #1a1612;
  max-width: 520px;width: 100%;
  max-height: 92vh;overflow-y: auto;
  padding: 44px 40px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 35px 90px rgba(0,0,0,0.8);
  position: relative;
  color: #fff;
}
.order-close{
  position: absolute;top: 18px;right: 20px;
  background: none;border: none;
  font-size: 26px;color: rgba(255, 255, 255, 0.6);
  cursor: pointer;transition: color .2s;line-height: 1;
}
.order-close:hover{color: #d63031;}
.order-box h2{
  font-family: var(--font-heading);
  font-size: 32px;font-weight: 900;text-align: center;
  margin-bottom: 6px;color: #ffffff;
}
.order-box h2 em{color: var(--gold-vivid);font-style: normal;}
.order-tagline{
  text-align: center;font-size: 11px;font-weight: 800;
  letter-spacing: 3px;text-transform: uppercase;color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}
.order-price-row{
  display: flex;align-items: center;justify-content: center;
  gap: 16px;margin-bottom: 4px;
}
.order-price-row .op-old{
  font-family: var(--font-heading);font-size: 28px;font-weight: 700;
  color: rgba(255, 255, 255, 0.35);text-decoration: line-through;text-decoration-color: #d63031;
}
.order-price-row .op-new{
  font-family: var(--font-heading);font-size: 52px;font-weight: 900;
  color: #ffffff;
}
.order-price-row .op-new sup{font-size: 20px;color: var(--gold-vivid);vertical-align: top;margin-top: 10px;}
.order-save{
  text-align: center;font-size: 11px;font-weight: 900;letter-spacing: 2px;
  text-transform: uppercase;color: #ff7675;margin-bottom: 24px;
}
.form-group{margin-bottom: 18px;}
.form-group label{
  display: block;font-size: 11px;font-weight: 800;letter-spacing: 1.5px;
  text-transform: uppercase;color: rgba(255, 255, 255, 0.85);margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea{
  width: 100%;padding: 14px 18px;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 4px;
  background: #110e0a;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;font-weight: 600;
  outline: none;transition: all .25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  border-color: var(--gold-vivid);
  background: #16120e;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}
.form-group textarea{resize: vertical;min-height: 75px;}
.form-group select{
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e6b800' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  appearance: none;-webkit-appearance: none;
}
.delivery-info{display: flex;gap: 12px;margin-bottom: 20px;}
.del-badge{
  flex: 1;text-align: center;padding: 12px;
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;background: rgba(255, 255, 255, 0.04);
  font-size: 10px;font-weight: 700;letter-spacing: 1px;
  text-transform: uppercase;color: rgba(255, 255, 255, 0.75);
}
.del-badge strong{
  display: block;font-size: 16px;color: var(--gold-vivid);
  font-family: var(--font-heading);font-weight: 800;margin-top: 4px;
}
.order-total{
  display: flex;align-items: center;justify-content: space-between;
  padding: 18px 0;
  border-top: 1.5px dashed rgba(212, 175, 55, 0.25);
  border-bottom: 1.5px dashed rgba(212, 175, 55, 0.25);
  margin-bottom: 26px;
}
.order-total span:first-child{font-size: 12px;font-weight: 800;letter-spacing: 2px;text-transform: uppercase;color: rgba(255, 255, 255, 0.75);}
.order-total span:last-child{font-family: var(--font-heading);font-size: 36px;font-weight: 900;color: var(--gold-light);}

.btn-submit{
  width: 100%;padding: 18px;
  background: linear-gradient(135deg, #e6b800 0%, #b8860b 100%);
  color: #110e0a;
  border: none;cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;font-weight: 900;
  letter-spacing: 3px;text-transform: uppercase;
  border-radius: 4px;
  transition: all .3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
}
.btn-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7);
  color: #000;
}

/* ── FOOTER ── */
footer{
  padding: 60px;
  background: #070605;
  border-top: 2px solid var(--gold);
  color: #fff;
  position: relative;z-index: 3;
}
.footin{
  max-width: 1200px;margin: 0 auto;
  display: flex;align-items: center;justify-content: space-between;
  flex-wrap: wrap;gap: 20px;
}
.flogo{
  font-family: var(--font-heading);
  font-size: 28px;font-weight: 900;letter-spacing: 6px;
  color: var(--gold-light);text-transform: uppercase;
}
.ftagline{font-size: 11px;font-weight: 700;letter-spacing: 3px;text-transform: uppercase;color: rgba(255, 255, 255, 0.4);margin-top: 4px;}
.fcopy{font-size: 11px;font-weight: 600;letter-spacing: 2px;text-transform: uppercase;color: rgba(255, 255, 255, 0.35);}

.reveal{opacity: 0;transform: translateY(35px);transition: opacity .85s ease, transform .85s ease;}
.reveal.on{opacity: 1;transform: translateY(0);}

/* ═══════════════════════════════════════
   FULL 100% RESPONSIVE DESIGN (MOBILE, TABLET, DESKTOP)
═══════════════════════════════════════ */

/* Touch screens: Disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  .curs, #dot, #ring {
    display: none !important;
  }
  body, button, a, input, select, textarea {
    cursor: auto !important;
  }
}

/* Tablet & Smaller Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  nav { padding: 14px 30px; }
  nav.sc { padding: 10px 30px; }
  .nlinks { gap: 20px; }
  #hero { padding: 140px 30px 60px; gap: 30px; }
  .htitle { font-size: clamp(34px, 4vw, 54px); }
  .stinner, .spgrid, .specgrid { gap: 40px; }
  #features, #story, #glowdemo, #specs, #testimonials, #finalcta { padding: 90px 30px !important; }
}

/* Tablets & Mobile (max-width: 868px) */
@media (max-width: 868px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  
  nav { top: 0; padding: 12px 14px; }
  nav.sc { top: 0; padding: 10px 14px; }
  nav .logo {
    font-size: 23px;
    letter-spacing: 2px;
    font-weight: 900;
  }
  nav .ncta {
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 1.5px solid #fff2a8;
    background: linear-gradient(135deg, #ffd700 0%, #e6b800 60%, #cc9900 100%);
    color: #0b0907;
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.55), 0 3px 10px rgba(0,0,0,0.5);
  }
  .nlinks { display: none; }
  
  .hbg { display: none !important; }
  
  #hero {
    display: flex;
    flex-direction: column;
    padding: 95px 16px 36px;
    gap: 0;
    text-align: center;
    min-height: auto;
  }
  .hleft {
    display: contents;
  }
  .hey {
    order: 1;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    line-height: 1.4;
  }
  .hey::before { display: none; }
  
  .htitle {
    order: 2;
    font-size: clamp(28px, 7vw, 44px) !important;
    line-height: 1.18 !important;
    margin-bottom: 12px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hsub {
    order: 3;
    font-size: clamp(14px, 3.8vw, 18px);
    margin-bottom: 14px;
    line-height: 1.4;
  }
  .hdesc {
    order: 4;
    font-size: 13.5px;
    line-height: 1.65;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    max-width: 100%;
    word-break: break-word;
  }

  /* Product Image on Mobile - Placed directly above Limited Time Offer & Price */
  .hright {
    order: 5;
    margin: 8px auto 20px;
    width: 100%;
  }
  .hero-img-wrap { max-width: 320px; margin: 0 auto; }
  .hero-img { max-width: 100%; border-radius: 12px; }
  .badge { display: none !important; }
  
  /* Hero Price Box on Mobile */
  .hprice-wrap {
    order: 6;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 16px;
    padding: 24px 16px 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .hprice-wrap::before {
    position: static;
    display: inline-block;
    font-size: 9px;
    letter-spacing: 1px;
    padding: 4px 10px;
    margin-bottom: 2px;
  }
  .price-old { font-size: 26px; }
  .price-new { font-size: 50px; line-height: 1; }
  .price-new sup { font-size: 20px; }
  .price-label {
    align-items: center;
    text-align: center;
  }
  .price-label span:first-child { font-size: 11px; letter-spacing: 1px; }
  .price-label span:last-child { font-size: 11px; }
  
  /* Offer Countdown Badge on Mobile */
  .offer-timer-box {
    order: 7;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 14px;
    gap: 8px;
    text-align: center;
    font-size: 11px;
  }
  .timer-text { font-size: 10px; }
  .offer-timer-box strong { font-size: 14.5px; }
  
  .hbtns {
    order: 8;
    justify-content: center;
    gap: 12px;
  }
  .hbtns .btn { width: 100%; max-width: 320px; padding: 15px 20px; font-size: 11px; }
  
  /* Sections common title sizing */
  .sttl {
    font-size: clamp(24px, 5.5vw, 36px) !important;
    line-height: 1.22 !important;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .sl {
    font-size: 11px;
    letter-spacing: 3px;
    justify-content: center;
  }
  
  #features, #story, #glowdemo, #specs, #testimonials, #finalcta {
    padding: 70px 16px !important;
  }
  
  .fgrid { grid-template-columns: 1fr; gap: 16px; }
  .fcard { padding: 28px 18px; }
  .fcard h3 { font-size: 18px; line-height: 1.3; }
  .fcard p { font-size: 13.5px; line-height: 1.65; }
  .fnum { font-size: 32px; }
  
  /* Story section on mobile */
  .stinner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .simgwrap {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .simg1, .simg2 {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    width: 100%;
    max-width: 320px;
    height: 240px;
  }
  .stxt { font-size: 13.5px; line-height: 1.75; }
  .sstats { justify-content: center; gap: 24px; }
  .ssv { font-size: 34px; }
  .sslb { font-size: 9.5px; letter-spacing: 1.5px; }
  
  /* Scroll story panels */
  .spanel { min-height: auto; padding: 50px 16px; }
  .spgrid { grid-template-columns: 1fr; gap: 24px; }
  .spanel:nth-child(even) .spgrid { direction: ltr; }
  .spimg img { height: 240px; }
  .sptxt { transform: none !important; opacity: 1 !important; text-align: center; }
  .sptxt h2 { font-size: clamp(22px, 5.5vw, 30px) !important; line-height: 1.25 !important; }
  .sptxt p { font-size: 13.5px; line-height: 1.7; }
  .tagrow { justify-content: center; gap: 6px; }
  .tag { font-size: 9px; letter-spacing: 1px; padding: 5px 10px; }
  
  /* Lamps */
  .lamps { gap: 24px; margin-top: 30px; }
  .lampimg { width: 130px; height: 130px; }
  .lamplbl { font-size: 18px; }
  
  /* Specs & Master Price card (NO TEXT CUT OFF!) */
  .specgrid { grid-template-columns: 1fr; gap: 30px; }
  .specrow {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18) !important;
  }
  .specn {
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    color: rgba(255, 255, 255, 0.6) !important;
  }
  .specv {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-align: left !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    line-height: 1.35 !important;
  }
  
  .pcard { padding: 34px 16px; }
  .pc-old { font-size: 28px; }
  .pc-price { font-size: clamp(52px, 12vw, 68px) !important; line-height: 1; }
  .pc-price sup { font-size: 22px; }
  .pc-cur { font-size: 11px; letter-spacing: 1.5px; line-height: 1.5; margin-bottom: 20px; }
  .pc-delivery { flex-direction: column; gap: 8px; }
  .pc-del { width: 100%; min-width: 100%; }
  .btn-order { padding: 16px 20px; font-size: 12px; letter-spacing: 2px; }
  
  /* Testimonials */
  .tgrid { grid-template-columns: 1fr; gap: 16px; }
  .tcard { padding: 24px 16px; }
  .qtext { font-size: 13.5px; line-height: 1.65; }
  
  /* Final CTA */
  #finalcta { padding: 70px 16px; }
  .ftit {
    font-size: clamp(26px, 6.5vw, 40px) !important;
    line-height: 1.2 !important;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .fey { font-size: 10px; letter-spacing: 2px; }
  .fsb { font-size: 14px; line-height: 1.5; margin-bottom: 24px; }
  .f-price-row { gap: 12px; align-items: baseline; }
  .f-old { font-size: 26px; }
  .f-new { font-size: clamp(48px, 11vw, 64px) !important; }
  .f-new sup { font-size: 22px; }
  .f-cur {
    font-size: 10px;
    letter-spacing: 1.5px;
    line-height: 1.5;
    padding: 0 8px;
    word-break: break-word;
    margin-bottom: 30px;
  }
  .fbtnrow .btn { width: 100%; max-width: 320px; padding: 16px 20px; font-size: 11px; }
  
  /* Order Modal on Mobile */
  .order-box {
    padding: 24px 16px;
    width: 95%;
    max-width: 440px;
    max-height: 92vh;
  }
  .order-box h2 { font-size: 22px; word-break: break-word; }
  .order-price-row .op-old { font-size: 22px; }
  .order-price-row .op-new { font-size: 38px; }
  .order-price-row .op-new sup { font-size: 16px; }
  .form-group input, .form-group select, .form-group textarea {
    font-size: 16px !important; /* Prevents auto-zoom on iOS Safari */
  }
  
  /* Footer */
  footer { padding: 36px 16px 80px; }
  .footin { flex-direction: column; text-align: center; gap: 12px; }
  .flogo { font-size: 22px; letter-spacing: 3px; }
  .ftagline, .fcopy { font-size: 10px; letter-spacing: 1px; }
  body { padding-bottom: 60px; }
}

/* Extra Small Screens (max-width: 380px) */
@media (max-width: 380px) {
  nav .logo { font-size: 17px; letter-spacing: 1px; }
  nav .ncta { padding: 7px 10px; font-size: 8.5px; letter-spacing: 0.5px; }
  .htitle { font-size: 25px !important; }
  .price-new { font-size: 42px; }
  .pc-price { font-size: 48px !important; }
  .f-new { font-size: 44px !important; }
}

/* ── FLOATING MOBILE QUICK ORDER BAR ── */
.mob-order-bar{
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  background: rgba(15, 13, 11, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1.5px solid var(--gold);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  transition: bottom 0.35s ease;
  box-shadow: 0 -8px 25px rgba(0,0,0,0.7);
}
.mob-order-bar.show{
  bottom: 0;
}
.mob-order-info{
  display: flex;
  flex-direction: column;
}
.mob-lamp-name{
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}
.mob-lamp-price{
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  color: var(--gold-vivid);
  line-height: 1.1;
}
.mob-lamp-price del{
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 4px;
  font-weight: 600;
}
.mob-order-btn{
  padding: 10px 20px;
  background: linear-gradient(135deg, #e6b800, #b8860b);
  color: #110e0a;
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  cursor: pointer;
}
@media (min-width: 869px){
  .mob-order-bar{ display: none !important; }
}
