/* =========================================================
   Maurya Battery Works — shared stylesheet
   Palette is built around battery terminals: black body,
   red terminal glow, brass/gold accents.
   ========================================================= */

:root{
  --black:#0b0b0d;
  --charcoal:#17171a;
  --charcoal-2:#201f22;
  --red-deep:#5a0000;
  --red-mid:#b30000;
  --red-bright:#ff2b2b;
  --gold:#f5c451;
  --white:#f4f1ea;
  --text-dim:#cac6c0;
  --radius:10px;
  --font-display:'Playfair Display', serif;
  --font-body:'Poppins', sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
img{
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  user-select:none;
  -webkit-user-drag:none;
  user-drag:none;
}
body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:var(--font-body);
  font-style:italic;
  line-height:1.55;
  padding-top:8px;
  padding-bottom:8px;
}
a{ color:inherit; text-decoration:none; }
button, input, select, textarea{ font-family:var(--font-body); font-style:italic; }
.hidden{ display:none !important; }

/* ---------- shining red bars (top & bottom of screen) ---------- */
.shine-bar{
  position:fixed; left:0; right:0; height:7px; z-index:80;
  background:linear-gradient(90deg,var(--red-deep),var(--red-bright) 45%,var(--gold) 50%,var(--red-bright) 55%,var(--red-deep));
  background-size:250% 100%;
  animation:shineSlide 3.2s linear infinite;
  box-shadow:0 0 14px 2px rgba(255,40,40,.65);
}
.shine-bar-top{ top:0; }
.shine-bar-bottom{ bottom:0; }
@keyframes shineSlide{
  0%{ background-position:0% 0; }
  100%{ background-position:250% 0; }
}

/* ---------- hero shop banner ---------- */
.shop-banner{
  position:relative; overflow:hidden;
  margin-top:7px;
  padding:52px 20px 46px;
  text-align:center;
  background:linear-gradient(150deg,var(--red-deep),var(--red-mid) 45%,var(--red-bright) 60%,var(--red-deep));
  background-size:220% 220%;
  animation:bannerShift 6s ease-in-out infinite;
  border-bottom:2px solid var(--gold);
}
@keyframes bannerShift{
  0%,100%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
}
.banner-glow{
  position:absolute; top:0; left:-60%; width:45%; height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.32),transparent);
  animation:sweep 3.6s linear infinite;
  pointer-events:none;
}
@keyframes sweep{
  0%{ left:-60%; }
  100%{ left:130%; }
}
.shop-banner h1{
  position:relative;
  font-family:var(--font-display);
  font-style:italic;
  font-weight:900;
  font-size:clamp(2.1rem,6.5vw,4.2rem);
  margin:0;
  color:var(--white);
  text-shadow:0 0 12px rgba(0,0,0,.5), 0 0 26px rgba(245,196,81,.55);
  letter-spacing:.5px;
}
.shop-banner .tagline{
  position:relative;
  margin:12px 0 0;
  color:var(--white);
  opacity:.92;
  font-size:1rem;
}

/* ---------- search ---------- */
.search-section{ display:flex; justify-content:center; padding:22px 16px 0; }
#searchForm{
  display:flex; width:100%; max-width:520px;
  border:1.5px solid var(--red-mid); border-radius:999px;
  background:var(--charcoal); overflow:hidden;
  transition:box-shadow .25s ease;
}
#searchForm:focus-within{ box-shadow:0 0 0 3px rgba(255,43,43,.35); }
#searchInput{
  flex:1; border:none; background:transparent; color:var(--white);
  padding:12px 18px; font-size:.95rem; outline:none;
}
#searchForm button{
  border:none; background:var(--red-mid); color:var(--white);
  padding:0 20px; cursor:pointer; font-size:1.05rem;
}
#searchForm button:hover{ background:var(--red-bright); }

/* ---------- hero slider (smooth crossfade, no hard cut) ---------- */
.hero-slider-section{ padding:26px 16px 6px; display:flex; justify-content:center; }
.hero-slider{
  position:relative; width:100%; max-width:1080px; height:320px;
  border-radius:16px; overflow:hidden;
  border:2px solid var(--red-mid);
  box-shadow:0 0 26px rgba(255,40,40,.28), 0 10px 30px rgba(0,0,0,.55);
  background:var(--charcoal);
}
.hero-slide{
  position:absolute; inset:0; opacity:0; transition:opacity 1.4s ease-in-out;
  background-size:cover; background-position:center; background-color:var(--charcoal);
  overflow:hidden;
}
.hero-slide::before{
  content:""; position:absolute; inset:-20px;
  background:inherit; background-size:cover; background-position:center;
  filter:blur(24px) brightness(.5);
}
.hero-slide img{
  position:relative; z-index:1; width:100%; height:100%; object-fit:contain;
}
.hero-slide.active{ opacity:1; }
.slider-placeholder{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  color:var(--text-dim);
}
@media (max-width:640px){ .hero-slider{ height:210px; } }

/* ---------- categories ---------- */
.category-section{ padding:22px 16px 0; }
.category-chips{
  display:flex; gap:10px; overflow-x:auto; padding-bottom:6px;
  max-width:1080px; margin:0 auto;
}
.category-chips::-webkit-scrollbar{ height:5px; }
.chip{
  flex:0 0 auto; padding:9px 18px; border-radius:999px;
  border:1.5px solid var(--red-mid); background:transparent; color:var(--white);
  cursor:pointer; font-size:.9rem; white-space:nowrap; transition:background .2s,color .2s;
}
.chip.active, .chip:hover{ background:var(--red-mid); color:var(--white); }

/* ---------- hero intro copy (admin-editable) ---------- */
.hero-intro{ max-width:1080px; margin:0 auto; padding:28px 16px 4px; }
.hero-intro .eyebrow{ display:block; color:var(--gold); font-size:.82rem; letter-spacing:.4px; margin-bottom:8px; }
.hero-intro h2{
  font-family:var(--font-display); font-style:italic; font-weight:700;
  font-size:clamp(1.5rem,4.5vw,2.3rem); color:var(--white); margin:0 0 12px; line-height:1.3;
}
.hero-intro p{ color:var(--text-dim); max-width:640px; margin:0; }

/* ---------- products ---------- */
.products-section{ padding:30px 16px; max-width:1080px; margin:0 auto; }
.section-title{
  font-family:var(--font-display); font-style:italic; font-weight:700;
  font-size:1.5rem; color:var(--gold); margin:0 0 18px; border-left:4px solid var(--red-bright); padding-left:12px;
}
.product-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(130px,1fr)); gap:18px;
}
.product-card{
  background:var(--charcoal); border:1.5px solid var(--red-mid); border-radius:var(--radius);
  overflow:hidden; cursor:pointer; transition:border-color .2s, box-shadow .2s;
  display:flex; flex-direction:column;
  box-shadow:0 0 10px rgba(255,43,43,.15);
}
.product-card:hover, .product-card:active{ border-color:var(--red-bright); box-shadow:0 0 16px rgba(255,43,43,.3); }
.product-img-wrap{
  position:relative; width:100%; height:150px; overflow:hidden; background-color:#000;
  background-size:cover; background-position:center;
}
.product-img-wrap::before{
  content:""; position:absolute; inset:-10px;
  background:inherit; background-size:cover; background-position:center;
  filter:blur(16px) brightness(.5);
}
.product-img-wrap img{
  position:relative; z-index:1; width:100%; height:100%; object-fit:contain; display:block;
}
.product-info{ display:flex; flex-direction:column; border-top:1px solid rgba(255,43,43,.18); }
.product-card h3{ font-size:.98rem; margin:10px 12px 4px; font-family:var(--font-body); font-weight:600; }
.product-card .price{ margin:0 12px 12px; color:var(--gold); font-weight:600; }
.product-card .out-tag{ margin:0 12px 10px; color:#ff8080; font-size:.82rem; }
.product-card .in-stock-tag{ margin:0 12px 10px; color:#5fd97a; font-size:.82rem; }
.empty-msg{ color:var(--text-dim); }

/* ---------- contact ---------- */
.contact-section{ text-align:center; padding:10px 16px 40px; }
.contact-buttons{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:14px; }
.contact-btn{
  display:inline-block; padding:12px 24px; border-radius:999px;
  background:linear-gradient(120deg,var(--red-deep),var(--red-bright));
  color:var(--white); font-weight:600; box-shadow:0 0 14px rgba(255,43,43,.35);
  transition:transform .15s ease;
}
.contact-btn:hover{ transform:translateY(-2px); }
.contact-btn.whatsapp{ background:linear-gradient(120deg,#0d5c2e,#1fbf59); box-shadow:0 0 14px rgba(31,191,89,.35); }

/* ---------- product modal ---------- */
.modal-overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.82); z-index:200;
  display:flex; align-items:center; justify-content:center; padding:18px;
}
.modal-box{
  background:var(--charcoal); border:1.5px solid var(--red-mid); border-radius:14px;
  max-width:760px; width:100%; max-height:88vh; overflow-y:auto; position:relative;
  padding:20px; display:grid; grid-template-columns:1fr 1fr; gap:20px;
}
@media (max-width:680px){ .modal-box{ grid-template-columns:1fr; } }
.modal-close{
  position:absolute; top:10px; right:12px; background:none; border:none; color:var(--white);
  font-size:1.3rem; cursor:pointer; z-index:2;
}
.modal-img-wrap{
  position:relative; width:100%; height:260px; border-radius:10px; overflow:hidden; background:#000;
  background-size:cover; background-position:center;
}
.modal-img-wrap::before{
  content:""; position:absolute; inset:-14px;
  background:inherit; background-size:cover; background-position:center;
  filter:blur(20px) brightness(.5);
}
.modal-img-wrap img#modalMainImage{
  position:relative; z-index:1; width:100%; height:100%; object-fit:contain; display:block;
}
.modal-thumbs{ display:flex; gap:8px; margin-top:8px; flex-wrap:wrap; }
.modal-thumbs img{ width:54px; height:54px; object-fit:cover; border-radius:6px; cursor:pointer; border:2px solid transparent; }
.modal-thumbs img.active-thumb{ border-color:var(--red-bright); }
.modal-video-wrap{ margin-top:10px; }
.modal-video-wrap video{ width:100%; border-radius:10px; }
.modal-info h3{ font-family:var(--font-display); color:var(--gold); font-size:1.4rem; margin:0 0 6px; }
.modal-info .price{ color:var(--gold); font-weight:600; }

/* ---------- footer ---------- */
.site-footer{
  position:relative; overflow:hidden; margin-top:10px;
  padding:44px 20px 26px; text-align:center;
  background:linear-gradient(150deg,var(--red-deep),var(--red-mid) 50%,var(--red-deep));
  border-top:2px solid var(--gold);
}
.site-footer h3{
  font-family:var(--font-display); font-style:italic; font-weight:800; font-size:1.7rem;
  color:var(--white); margin:0 0 6px; text-shadow:0 0 14px rgba(245,196,81,.5);
}
.site-footer .footer-tagline{ color:var(--white); opacity:.92; margin:0 0 10px; }
.site-footer .footer-seo-line{ color:var(--white); opacity:.8; font-size:.82rem; margin:0 0 10px; max-width:480px; margin-left:auto; margin-right:auto; }
.site-footer .footer-address{ color:var(--white); opacity:.85; font-size:.88rem; margin:0 0 20px; }
.social-links{ display:flex; justify-content:center; gap:18px; flex-wrap:wrap; margin-bottom:22px; }
.social-links a{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  color:var(--white); text-decoration:none; transition:transform .15s ease;
}
.social-links a:hover{ transform:translateY(-2px); }
.social-icon-circle{
  width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,.35); border:1.5px solid var(--gold);
}
.social-links svg{ width:20px; height:20px; }
.social-label{ font-size:.72rem; color:var(--text-dim); max-width:80px; text-align:center; line-height:1.15; }
.site-footer .copyright{
  color:var(--white); opacity:.75; font-size:.8rem; margin:0; padding-top:16px;
  border-top:1px solid rgba(255,255,255,.25);
}

/* =========================================================
   ADMIN PANEL
   ========================================================= */
.admin-body{ background:var(--black); position:relative; overflow-x:hidden; }
.admin-blob{
  position:fixed; border-radius:50%; filter:blur(70px); opacity:.35; z-index:0; pointer-events:none;
}
.blob1{ width:340px; height:340px; background:var(--red-mid); top:-100px; left:-100px; }
.blob2{ width:300px; height:300px; background:var(--gold); bottom:-100px; right:-100px; opacity:.2; }

.admin-login-wrap{
  min-height:100vh; display:flex; align-items:center; justify-content:center; padding:20px; position:relative;
}
.login-card{
  position:relative; z-index:1; width:100%; max-width:380px;
  background:var(--charcoal); border:1.5px solid var(--red-mid); border-radius:16px;
  padding:32px 28px; box-shadow:0 0 30px rgba(255,43,43,.2);
}
.login-title{
  font-family:var(--font-display); font-size:2rem; text-align:center; margin:0 0 6px; color:var(--white);
}
.login-title span{ color:var(--red-bright); }
.login-sub{ text-align:center; color:var(--text-dim); font-size:.85rem; margin:0 0 22px; }
#loginForm label{ display:block; font-size:.85rem; color:var(--text-dim); margin:14px 0 6px; }
#loginForm input{
  width:100%; padding:11px 14px; border-radius:8px; border:1px solid #3a393c;
  background:var(--charcoal-2); color:var(--white); outline:none;
}
#loginForm input:focus{ border-color:var(--red-bright); }
#loginForm button{
  width:100%; margin-top:20px; padding:12px; border:none; border-radius:8px; cursor:pointer;
  background:linear-gradient(120deg,var(--red-deep),var(--red-bright)); color:var(--white); font-weight:600;
}
.login-error{ color:#ff7373; min-height:20px; margin-top:10px; font-size:.85rem; text-align:center; }

/* dashboard layout */
.dashboard{ display:flex; min-height:100vh; position:relative; z-index:1; }
.dashboard-sidebar{
  width:220px; flex:0 0 220px; background:var(--charcoal); border-right:1.5px solid var(--red-deep);
  padding:22px 16px; display:flex; flex-direction:column; gap:6px;
}
.dash-logo{ font-family:var(--font-display); font-size:1.3rem; margin:0 0 18px; }
.dash-logo span{ color:var(--red-bright); }
.tab-btn{
  text-align:left; background:none; border:none; color:var(--text-dim); padding:11px 12px;
  border-radius:8px; cursor:pointer; font-size:.92rem;
}
.tab-btn.active, .tab-btn:hover{ background:var(--red-deep); color:var(--white); }
.logout-btn{
  margin-top:auto; padding:10px; border:1px solid var(--red-mid); background:none; color:var(--white);
  border-radius:8px; cursor:pointer;
}
.dashboard-content{ flex:1; padding:28px; padding-bottom:56px; overflow-y:auto; max-height:100vh; }
.tab-panel{ display:none; }
.tab-panel.active{ display:block; }
.hint-text{ color:var(--text-dim); font-size:.85rem; margin:-6px 0 16px; }

/* forms shared in admin */
.admin-form{ background:var(--charcoal); border:1px solid #2c2b2e; border-radius:12px; padding:20px; max-width:520px; margin-bottom:26px; }
.admin-form label{ display:block; font-size:.85rem; color:var(--text-dim); margin:12px 0 6px; }
.admin-form input[type=text], .admin-form input[type=number], .admin-form input[type=password],
.admin-form select, .admin-form textarea{
  width:100%; padding:10px 12px; border-radius:8px; border:1px solid #3a393c; background:var(--charcoal-2); color:var(--white);
}
.admin-form input[type=file]{ width:100%; color:var(--text-dim); margin-top:4px; }
.edit-thumbs{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:8px; }
.edit-thumbs .thumb-wrap{ position:relative; width:56px; height:56px; }
.edit-thumbs .thumb-wrap img{ width:100%; height:100%; object-fit:cover; border-radius:6px; }
.edit-thumbs .thumb-wrap button{
  position:absolute; top:-6px; right:-6px; width:20px; height:20px; border-radius:50%;
  background:#ff3b3b; color:#fff; border:none; font-size:.7rem; cursor:pointer; line-height:1;
}
.stock-check{ display:flex; align-items:center; gap:8px; margin-top:14px; }
.stock-check input{ width:auto; }
.form-btn-row{ display:flex; gap:10px; margin-top:16px; flex-wrap:wrap; }
.admin-form button, .secondary-btn{
  padding:11px 20px; border-radius:8px; border:none; cursor:pointer; font-weight:600;
}
.admin-form button[type=submit]{ background:linear-gradient(120deg,var(--red-deep),var(--red-bright)); color:var(--white); }
.secondary-btn{ background:none; border:1px solid var(--red-mid); color:var(--white); }
.upload-status{ min-height:18px; color:var(--gold); font-size:.83rem; }

/* admin lists */
.admin-list{ display:flex; flex-direction:column; gap:10px; max-width:760px; }
.admin-item{
  background:var(--charcoal); border:1px solid #2c2b2e; border-radius:10px; padding:14px 16px;
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
}
.admin-item img{ width:52px; height:52px; object-fit:cover; border-radius:6px; }
.admin-item .item-main{ flex:1; min-width:140px; }
.admin-item .item-main strong{ display:block; }
.admin-item .item-main small{ color:var(--text-dim); }
.admin-item .item-actions{ display:flex; gap:8px; }
.admin-item .item-actions button{
  padding:7px 14px; border-radius:6px; border:1px solid var(--red-mid); background:none; color:var(--white); cursor:pointer; font-size:.8rem;
}
.admin-item .item-actions button.danger{ border-color:#ff4444; color:#ff8080; }
.admin-item.blocked-item{ border-color:var(--red-bright); }
.this-device-badge{
  display:inline-block; margin:4px 0; padding:3px 10px; border-radius:20px;
  background:rgba(95,217,122,.15); border:1px solid #5fd97a; color:#5fd97a; font-size:.72rem;
}
.trusted-device-actions{ flex-wrap:wrap; }
.trusted-device-actions .label-input{
  padding:7px 10px; border-radius:6px; border:1px solid #2c2b2e; background:#0f0e10; color:var(--white);
  font-size:.8rem; min-width:160px;
}

/* ---------- admin entry video (plays once after login) ---------- */
.entry-video-overlay{
  position:fixed; inset:0; background:#000; z-index:500;
  display:flex; align-items:center; justify-content:center;
}
.entry-video-overlay video{ max-width:100%; max-height:100%; }
.entry-video-overlay .skip-btn{
  position:absolute; top:18px; right:18px; padding:8px 18px; border-radius:6px;
  background:rgba(255,255,255,.15); color:#fff; border:1px solid rgba(255,255,255,.4);
  cursor:pointer; font-size:.8rem;
}

/* ---------- persistent developer credit (admin panel only) ---------- */
.dev-credit{
  position:fixed; left:0; right:0; bottom:7px; z-index:60;
  text-align:center; padding:5px 10px; font-size:.72rem;
  color:var(--text-dim); background:rgba(0,0,0,.55);
}

/* =========================================================
   SECURITY ALERT — full-screen scare screen
   ========================================================= */
.security-alert{
  position:fixed; inset:0; z-index:999;
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  padding:20px;
  background:#8a0000; /* static fallback — guarantees a fully opaque screen even if the pulse animation can't run */
  animation:alertPulse .55s infinite alternate;
  box-shadow:inset 0 0 120px rgba(255,20,20,.6);
}
@keyframes alertPulse{
  from{ background:#5a0000; }
  to{ background:#c81c1c; }
}
.security-alert .skull{ font-size:7rem; animation:skullPulse .7s infinite alternate; filter:drop-shadow(0 0 34px #ff2222); }
@keyframes skullPulse{
  from{ transform:scale(1); }
  to{ transform:scale(1.14); }
}
.security-alert .alert-title{
  color:#fff; font-family:var(--font-display); font-size:2.2rem; margin:18px 0 6px;
  text-shadow:0 0 18px #ff0000, 0 0 34px #ff0000;
}
.security-alert .alert-sub{ color:#ffdede; font-weight:600; letter-spacing:.5px; margin:0; font-size:1.1rem; }
.security-alert .alert-sub2{ color:#ffbdbd; margin:6px 0 0; font-size:.9rem; }
.security-alert.owner-alert{ z-index:1200; } /* always on top, even over the visitor-facing alert */
.alert-dismiss-btn{
  margin-top:24px; padding:12px 26px; border-radius:8px; cursor:pointer; font-weight:600;
  background:var(--white); color:#6a0000; border:none;
}

/* Blocked Logins tab — live alert opt-in box */
.alert-opt-in{
  background:var(--charcoal); border:1px solid #2c2b2e; border-radius:12px;
  padding:16px; max-width:520px; margin-bottom:20px;
}
.alert-opt-in .hint-text{ margin:10px 0 0; }

/* =========================================================
   RATE US PAGE
   ========================================================= */
.rateus-section{ padding:16px 16px 6px; max-width:560px; margin:0 auto; text-align:center; }
.rateus-back{ display:inline-block; margin-bottom:14px; color:var(--gold); font-weight:600; }
.rateus-total{ margin-bottom:20px !important; }
.rateus-form{ text-align:left; margin:0 auto 30px; }

.star-picker{ display:flex; gap:8px; font-size:2.6rem; cursor:pointer; margin:4px 0 4px; justify-content:center; }
.star-picker span{ color:#3d3d40; transition:color .15s, transform .12s; }
.star-picker span.selected{ color:var(--gold); text-shadow:0 0 14px rgba(245,196,81,.6); }
.star-picker span:hover{ transform:scale(1.18); }

.rateus-notice{
  background:var(--charcoal); border:1px solid var(--red-mid); border-radius:var(--radius);
  padding:22px 18px; text-align:center; color:var(--white); font-weight:600; max-width:520px; margin:0 auto 30px;
}

.rateus-list-section{ padding:10px 16px 60px; max-width:640px; margin:0 auto; }
.review-card{
  background:var(--charcoal); border:1px solid #2c2b2e; border-radius:var(--radius);
  padding:18px; margin-bottom:14px; text-align:left;
}
.review-card .review-stars{ color:var(--gold); font-size:1.15rem; letter-spacing:2px; display:block; }
.review-card .review-name{ font-family:var(--font-display); font-weight:700; font-size:1.05rem; margin:6px 0 2px; font-style:normal; }
.review-card .review-desc{ color:var(--text-dim); font-size:.93rem; margin:4px 0 0; }
.review-card .review-date{ color:#8a8680; font-size:.76rem; margin-top:10px; }
.review-card .owner-reply{
  margin-top:12px; padding:10px 12px; background:rgba(245,196,81,.08);
  border-left:3px solid var(--gold); border-radius:0 6px 6px 0; font-size:.85rem;
}
.review-card .owner-reply strong{ color:var(--gold); }

/* ---- Celebration screen (4-5 star thank-you) ---- */
.rateus-celebrate{
  position:fixed; inset:0; z-index:999; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  background:radial-gradient(circle at center, #201f22 0%, #0b0b0d 100%);
}
.rateus-celebrate-card{
  position:relative; z-index:2; text-align:center; padding:44px 28px;
  background:linear-gradient(160deg, #201f22, #17171a);
  border:2px solid var(--gold); border-radius:16px;
  box-shadow:0 0 46px rgba(245,196,81,.35);
  max-width:420px; margin:0 20px;
}
.rateus-celebrate-card p{
  font-family:var(--font-display); font-size:1.5rem; color:var(--gold); font-style:normal;
  text-shadow:0 0 16px rgba(245,196,81,.5); margin:0; line-height:1.4;
}
.rateus-fall-wrap{ position:absolute; inset:0; z-index:1; pointer-events:none; overflow:hidden; }
.fall-particle{ position:absolute; top:-40px; font-size:1.7rem; animation:fallDown linear forwards; }
@keyframes fallDown{
  to{ transform:translateY(112vh) rotate(360deg); opacity:.15; }
}

/* ---------- Floating draggable contact group (Call / WhatsApp / Rate Us) ---------- */
.floating-contact-group{
  position:fixed; z-index:500; display:flex; align-items:center; gap:8px;
  padding:8px; border-radius:50px;
  background:rgba(18,17,15,.55); backdrop-filter:blur(6px);
  box-shadow:0 6px 22px rgba(0,0,0,.4);
  cursor:grab; touch-action:none; user-select:none;
}
.floating-contact-group:active{ cursor:grabbing; }
.fcg-btn{
  display:flex; align-items:center; gap:7px;
  padding:11px 16px 11px 12px; border-radius:40px;
  font-weight:700; font-size:.85rem; text-decoration:none; white-space:nowrap;
  color:#fff; transition:transform .15s;
}
.fcg-btn:active{ transform:scale(.95); }
.fcg-icon{ font-size:1.2rem; line-height:1; }
.fcg-call{ background:linear-gradient(120deg,#8a1a1a,#e34848); }
.fcg-whatsapp{ background:linear-gradient(120deg,#0d5c2e,#1fbf59); }
.fcg-rate{
  background:linear-gradient(120deg,#7a5c00,#f5c451); color:#1a1400;
  animation:frbPulse 2.6s ease-in-out infinite;
}
@keyframes frbPulse{
  0%,100%{ box-shadow:0 0 0 rgba(245,196,81,0); }
  50%{ box-shadow:0 0 16px rgba(245,196,81,.8); }
}
@media (max-width:480px){
  .fcg-btn{ padding:11px; border-radius:50%; }
  .fcg-text{ display:none; }
}

/* ---------- responsive ---------- */
@media (max-width:820px){
  .dashboard{ flex-direction:column; }
  .dashboard-sidebar{ width:100%; flex-direction:row; flex-wrap:wrap; border-right:none; border-bottom:1.5px solid var(--red-deep); }
  .dash-logo{ width:100%; }
  .logout-btn{ margin-top:0; }
}

/* ---------- accessibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:2px solid var(--gold); outline-offset:2px;
}
@media (prefers-reduced-motion:reduce){
  .shine-bar, .shop-banner, .banner-glow{ animation:none !important; }
}
