/* ================================================================
   OMEGAPRIMESOLUTIONS — Premium Theme v3.2
   ZERO external dependencies — works on any PHP hosting
   ================================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: #f4f6fb;
  color: #111827;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul  { list-style: none; }
button { cursor: pointer; font: inherit; }
input, textarea, select {
  font: inherit; outline: none;
  border-radius: 10px; border: 1.5px solid #dde3ef;
  padding: 12px 15px; width: 100%;
  background: #fff; color: #111827;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #e91e63;
  box-shadow: 0 0 0 3px rgba(233,30,99,.10);
}
textarea { resize: vertical; min-height: 90px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

/* ── CONTAINER ── */
.container { width: min(1180px, calc(100% - 28px)); margin-inline: auto; }

/* ================================================================
   TOP BAR
================================================================ */
.topbar {
  background: #0d0d0d;
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  padding: 8px 0;
  line-height: 1.4;
}
.topbar-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 6px;
}
.topbar-left  { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar a { color: rgba(255,255,255,.75); transition: color .2s; }
.topbar a:hover { color: #f4c400; }
.topbar-badge {
  background: #e91e63; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 2px 9px; border-radius: 999px;
}
.topbar-sep { opacity: .25; }

/* ================================================================
   HEADER
================================================================ */
.site-header {
  background: #ffffff;
  border-bottom: 3px solid #f4c400;
  position: sticky; top: 0; z-index: 500;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 12px; height: 68px;
}
.site-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-logo img { height: 52px; width: auto; max-width: 190px; object-fit: contain; }
.logo-text {
  font-weight: 900; line-height: 1;
  display: flex; flex-direction: column;
}
.logo-omega { color: #e91e63; font-size: 22px; }
.logo-prime { color: #111827; font-size: 22px; }
.logo-sub   { font-size: 10px; letter-spacing: .2em; color: #6b7280; margin-top: 3px; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 2px; }
.desktop-nav a {
  font-weight: 700; font-size: 14px;
  padding: 8px 15px; border-radius: 8px;
  color: #374151; transition: all .2s; white-space: nowrap;
}
.desktop-nav a:hover { color: #e91e63; background: rgba(233,30,99,.07); }

.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.hbtn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  padding: 10px 20px; border-radius: 10px; border: none;
  white-space: nowrap; transition: all .2s; text-decoration: none;
}
.hbtn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.hbtn-yellow { background: #f4c400; color: #111; }
.hbtn-green  { background: #25D366; color: #fff; }

.hamburger {
  display: none;
  background: none; border: 2px solid #dde3ef;
  border-radius: 8px; padding: 7px 10px;
  font-size: 20px; line-height: 1;
  color: #374151; transition: border-color .2s;
}
.hamburger:hover { border-color: #f4c400; }

/* ================================================================
   MOBILE DRAWER
================================================================ */
.mobile-drawer {
  display: none; flex-direction: column;
  background: #fff; border-bottom: 2px solid #f4c400;
  padding: 10px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  position: sticky; top: 68px; z-index: 499;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  font-weight: 700; font-size: 15px;
  padding: 13px 22px;
  border-bottom: 1px solid #f0f2f8;
  color: #374151; transition: background .15s, color .15s;
}
.mobile-drawer a:last-child { border-bottom: none; }
.mobile-drawer a:hover { background: #fff8f0; color: #e91e63; }

/* ================================================================
   MAIN WRAPPER
================================================================ */
.page-main { padding: 28px 0 56px; }

/* ================================================================
   BANNER SLIDER — FULLY FIXED v3.2
   - slider-outer: full bleed wrapper (breaks out of container)
   - slide images: cover on desktop, auto-height on mobile
   - slider-track width set by JS per slide count (no repeat bug)
================================================================ */

/* Full-bleed wrapper — breaks out of .container padding */
.slider-outer {
  margin: -28px calc(50% - 50vw) 0;
  width: 100vw;
  background: #000;
  line-height: 0;
}

/* The actual slider box */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  line-height: 0;
}

/* Track — JS sets width & transform */
.slider-track {
  display: flex;
  transition: transform .65s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  /* width & per-slide-width set by inline JS */
}

/* Each slide */
.slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  line-height: 0;
  /* width set by inline JS as 100/N % */
}

/* ── Fixed, generous banner height so every slide — whatever size
   the source poster was exported at (ChatGPT/Gemini square, portrait,
   widescreen, anything) — sits inside the same big, clean box.
   object-fit:contain never crops the artwork or its text. ── */
.slider {
  aspect-ratio: 16 / 6.2;
  min-height: 260px;
  max-height: 560px;
}
.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: linear-gradient(135deg,#fff7e6,#ffffff);
}

/* Caption overlay */
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
}
.slide-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(16px, 3.5vw, 48px);
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
  animation: fadeBanner .4s ease;
}
@keyframes fadeBanner {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide-cap h2 {
  font-size: clamp(18px, 3.5vw, 44px);
  font-weight: 900; color: #fff; line-height: 1.12;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  max-width: 560px;
}
.slide-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Arrows */
.sarrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.22); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 22px; display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 5; line-height: 1;
}
.sarrow:hover { background: rgba(255,255,255,.40); }
.sarrow.prev { left: 14px; }
.sarrow.next { right: 14px; }

/* Dots */
.slider-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 5; line-height: 1;
}
.sdot {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.4); border: none; padding: 0; cursor: pointer;
  transition: all .3s;
}
.sdot.active { background: #f4c400; width: 24px; }

/* ── MOBILE: still a fixed box so every slide auto-fits the same
   space and the slider doesn't jump around between slides ── */
@media (max-width: 768px) {
  .slider-outer { margin-top: -20px; border-radius: 0; }
  .slider       {
    border-radius: 0; box-shadow: none;
    aspect-ratio: 1 / 1;
    min-height: 300px;
    max-height: 420px;
  }
  .slide img    {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: linear-gradient(135deg,#fff7e6,#ffffff);
  }
  .slide-cap    { display: none !important; }
}

/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e8edf5;
  padding: 12px 0;
}
.trust-items {
  display: flex; align-items: center;
  justify-content: space-around;
  flex-wrap: wrap; gap: 10px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: #374151;
  white-space: nowrap;
}
.trust-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: #f4f6fb;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}


/* Home page section spacing */
.home-section { margin-top: 36px; }

/* ================================================================
   SECTION TITLES
================================================================ */
.section-hd {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 12px;
  margin-bottom: 22px; flex-wrap: wrap;
}
.sec-title {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 900; color: #111827;
  display: flex; align-items: center; gap: 11px;
}
.sec-title::before {
  content: '';
  display: inline-block; width: 5px; height: 1.1em;
  background: linear-gradient(180deg, #e91e63, #c2185b);
  border-radius: 3px; flex-shrink: 0;
}
.sec-sub { font-size: 14px; color: #6b7280; margin-top: 4px; padding-left: 16px; }
.view-all {
  font-weight: 700; font-size: 13.5px; color: #e91e63;
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.view-all:hover { text-decoration: underline; }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 700; font-size: 13.5px;
  border: none; border-radius: 12px;
  padding: 11px 20px; line-height: 1; white-space: nowrap;
  transition: all .25s; cursor: pointer; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.btn:active { transform: translateY(0); }
.btn-sm     { padding: 8px 15px; font-size: 12.5px; border-radius: 8px; }
.btn-lg     { padding: 13px 28px; font-size: 14.5px; border-radius: 14px; }
.btn-pink   { background: linear-gradient(135deg,#e91e63,#c2185b); color: #fff; }
.btn-pink:hover   { box-shadow: 0 6px 20px rgba(233,30,99,.40); }
.btn-yellow { background: linear-gradient(135deg,#f4c400,#e0b000); color: #111; }
.btn-yellow:hover { box-shadow: 0 6px 20px rgba(244,196,0,.44); }
.btn-black  { background: #111827; color: #fff; }
.btn-black:hover  { background: #1f2937; box-shadow: 0 6px 18px rgba(0,0,0,.30); }
.btn-green  { background: #25D366; color: #fff; }
.btn-green:hover  { box-shadow: 0 6px 20px rgba(37,211,102,.40); }
.btn-outline { background: transparent; border: 2px solid #dde3ef; color: #374151; }
.btn-outline:hover { border-color: #e91e63; color: #e91e63; }
.btn-full   { grid-column: 1 / -1; }

/* ================================================================
   CATEGORY FILTER BAR
================================================================ */
.cat-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 14px; padding: 12px 14px;
  margin-bottom: 26px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.catbtn {
  padding: 9px 18px; border-radius: 999px;
  border: 2px solid #e8edf5; background: #f4f6fb;
  font-weight: 700; font-size: 13px;
  cursor: pointer; white-space: nowrap;
  color: #374151; transition: all .2s;
}
.catbtn:hover  { border-color: #e91e63; color: #e91e63; background: #fff; }
.catbtn.active {
  background: linear-gradient(135deg,#e91e63,#c2185b);
  color: #fff; border-color: transparent;
  box-shadow: 0 3px 12px rgba(233,30,99,.28);
}

/* ================================================================
   CATEGORY GRID
================================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 16px; margin-bottom: 34px;
}
.cat-card {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 16px; overflow: hidden;
  text-align: center; text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: all .3s;
  animation: fadeUp .4s ease;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  border-color: #f4c400;
}
.cat-img { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: #eef1f9; }
.cat-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .45s ease;
}
.cat-card:hover .cat-img img { transform: scale(1.06); }
.cat-card-body { padding: 12px 10px 14px; }
.cat-card-body h3 { font-size: 13.5px; font-weight: 700; color: #111827; line-height: 1.25; margin-bottom: 5px; }
.cat-count { display: inline-block; background: linear-gradient(135deg,#f4c400,#e0b000); color: #111; font-size: 10.5px; font-weight: 800; padding: 2px 8px; border-radius: 999px; }

/* ── Admin: back-to-dashboard link on every sub-page ── */
.admin-back { margin-bottom: 16px; }

/* ================================================================
   WHY WE ARE NO.1
================================================================ */
.no1-panel {
  background: linear-gradient(135deg,#111827,#1f2937 55%,#3b1224);
  border-radius: 22px;
  padding: clamp(26px,4vw,52px);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
}
.no1-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(244,196,0,.18), transparent 55%);
}
.no1-copy { position: relative; max-width: 820px; }
.no1-tag {
  display: inline-block; background: rgba(244,196,0,.16); color: #f4c400;
  font-weight: 800; font-size: 12.5px; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.no1-copy h2 { font-size: clamp(21px,3vw,32px); font-weight: 900; line-height: 1.28; margin-bottom: 14px; }
.no1-copy p  { color: #d1d5db; font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.no1-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.no1-pt { font-size: 13.5px; font-weight: 600; color: #e5e7eb; }
.no1-pt b { color: #22c55e; margin-right: 4px; }
@media (max-width: 640px) { .no1-grid { grid-template-columns: 1fr; } }

/* ================================================================
   FLYING CATEGORY BAR — sticky, animated quick-jump nav
================================================================ */
.cat-filter {
  display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none;
  padding: 12px 4px; margin-bottom: 18px;
  position: sticky; top: 0; z-index: 30;
  background: rgba(244,246,251,.92); backdrop-filter: blur(6px);
  border-radius: 14px;
}
.cat-filter::-webkit-scrollbar { display: none; }
.catbtn {
  flex-shrink: 0;
  background: #fff; border: 1.5px solid #e8edf5; color: #374151;
  font-size: 13px; font-weight: 700; padding: 9px 18px;
  border-radius: 999px; white-space: nowrap;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  animation: flyIn .5s ease backwards;
}
.catbtn:nth-child(1){animation-delay:.02s}.catbtn:nth-child(2){animation-delay:.06s}
.catbtn:nth-child(3){animation-delay:.10s}.catbtn:nth-child(4){animation-delay:.14s}
.catbtn:nth-child(5){animation-delay:.18s}.catbtn:nth-child(6){animation-delay:.22s}
.catbtn:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(233,30,99,.18); }
.catbtn.active { background: linear-gradient(135deg,#e91e63,#c2185b); color: #fff; border-color: transparent; }
@keyframes flyIn { from { opacity: 0; transform: translateY(-14px) scale(.9); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ================================================================
   PRODUCT / POSTER GRID
================================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 22px;
}
.product-card {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: all .3s;
  display: flex; flex-direction: column;
  animation: fadeUp .4s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0,0,0,.13);
  border-color: rgba(233,30,99,.22);
}

/* ── Product image: auto-fit, no crop ── */
.product-media {
  position: relative;
  width: 100%;
  height: 280px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 10px;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .45s ease;
}
.product-card:hover .product-media img { transform: scale(1.04); }

.badge-featured {
  position: absolute; top: 10px; left: 10px;
  background: linear-gradient(135deg,#e91e63,#c2185b); color: #fff;
  font-size: 10.5px; font-weight: 800; letter-spacing: .03em;
  padding: 3px 10px; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(233,30,99,.35);
}
.badge-cat {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,.62); color: #fff;
  font-size: 10.5px; font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.product-body { padding: 15px 17px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-body h3 { font-size: 15.5px; font-weight: 800; line-height: 1.25; color: #111827; }
.product-desc {
  font-size: 13.5px; color: #6b7280; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.product-price { font-size: 19px; font-weight: 900; color: #e91e63; margin-top: auto; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 13px 13px; }

/* ================================================================
   ANIMATIONS
================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   DETAIL PAGE
================================================================ */
.detail-wrap { display: grid; grid-template-columns: 1fr 400px; gap: 30px; align-items: start; }
.detail-img  { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 32px rgba(0,0,0,.1); background: #eef1f9; }
.detail-img img { width: 100%; max-height: 520px; object-fit: contain; background: #f8f9fc; }
.detail-info { display: flex; flex-direction: column; gap: 16px; }
.detail-info h1 { font-size: clamp(22px, 3vw, 32px); font-weight: 900; line-height: 1.15; }
.meta-box {
  background: #f8f9fc; border-left: 4px solid #f4c400;
  padding: 13px 17px; border-radius: 0 12px 12px 0;
  font-size: 14px; line-height: 1.75;
}
.enquiry-box {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 16px; padding: 22px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.enquiry-box h3 { font-size: 17px; font-weight: 800; margin-bottom: 14px; }

/* ================================================================
   FORMS
================================================================ */
.formbox {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 18px; padding: 26px 28px; max-width: 680px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.formbox label {
  display: block; font-size: 13px; font-weight: 600;
  color: #374151; margin-bottom: 5px; margin-top: 2px;
}
.formbox input, .formbox textarea, .formbox select { margin-bottom: 12px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 13px; }

/* FILE DROP */
.file-drop {
  border: 2px dashed #dde3ef; border-radius: 14px;
  padding: 26px 18px; text-align: center; cursor: pointer;
  transition: all .2s; background: #f8f9fc;
  position: relative; margin-bottom: 12px;
}
.file-drop:hover, .file-drop.dragover { border-color: #e91e63; background: rgba(233,30,99,.03); }
.file-drop input[type=file] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
  margin: 0 !important; padding: 0 !important;
  border: none !important; box-shadow: none !important;
}
.drop-icon { font-size: 30px; margin-bottom: 7px; }
.drop-text { font-size: 13.5px; color: #6b7280; font-weight: 500; }
.drop-text strong { color: #e91e63; }

/* Bulk preview */
.bulk-preview {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
  gap: 7px; margin-top: 10px;
}
.bulk-thumb { aspect-ratio: 1; border-radius: 8px; overflow: hidden; border: 2px solid #e8edf5; }
.bulk-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bulk-count { font-size: 13px; font-weight: 700; color: #e91e63; margin-top: 6px; }

/* ================================================================
   ADMIN TABLES
================================================================ */
.tbl { overflow: auto; background: #fff; border: 1px solid #e8edf5; border-radius: 14px; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.tbl table { width: 100%; border-collapse: collapse; min-width: 600px; }
.tbl th {
  background: #f4f6fb; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 13px 15px; text-align: left;
  border-bottom: 2px solid #e8edf5; color: #374151;
}
.tbl td { padding: 12px 15px; border-bottom: 1px solid #f0f2f8; font-size: 13.5px; vertical-align: middle; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tr:hover td { background: #fafbff; }

/* ================================================================
   ADMIN STATS
================================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 15px; margin-bottom: 26px; }
.stat-card {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 18px; padding: 20px 16px;
  text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: all .3s; animation: fadeUp .4s ease;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 22px rgba(0,0,0,.10); }
.stat-icon { font-size: 22px; margin-bottom: 8px; }
.stat-num  { font-size: 36px; font-weight: 900; color: #e91e63; line-height: 1; }
.stat-lbl  { font-size: 13px; font-weight: 600; color: #6b7280; margin-top: 5px; }

.qlinks { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 22px; }
.qlink  {
  padding: 11px 20px; border-radius: 10px; font-weight: 700; font-size: 13.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,.07); transition: all .25s;
  display: inline-flex; align-items: center; gap: 7px;
}
.qlink:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.13); }

/* ================================================================
   ALERTS / BADGES / MISC
================================================================ */
.alert { padding: 12px 17px; border-radius: 10px; font-size: 14px; font-weight: 500; margin-bottom: 15px; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700; }
.badge-pink   { background: rgba(233,30,99,.1); color: #e91e63; }
.badge-yellow { background: linear-gradient(135deg,#f4c400,#e0b000); color: #111; }
.badge-green  { background: rgba(37,211,102,.12); color: #0a7a40; }

.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #6b7280; margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: #6b7280; }
.breadcrumb a:hover { color: #e91e63; }

.divider { height: 1px; background: #e8edf5; margin: 22px 0; }
.mt-2 { margin-top: 16px; } .mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 24px; } .mb-3 { margin-bottom: 24px; }
.text-muted { color: #6b7280; font-size: 13.5px; }
.text-pink  { color: #e91e63; }
.fw-800     { font-weight: 800; }

/* ================================================================
   FLOATING BUTTONS
================================================================ */
.floaters {
  position: fixed; right: 15px; bottom: 15px;
  display: flex; flex-direction: column; gap: 9px; z-index: 9999;
}
.flt {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 17px; border-radius: 999px;
  color: #fff; font-weight: 700; font-size: 13px;
  box-shadow: 0 6px 20px rgba(0,0,0,.22);
  transition: all .2s; white-space: nowrap; text-decoration: none;
}
.flt:hover { transform: translateX(-4px); box-shadow: 0 8px 26px rgba(0,0,0,.28); }
.flt-pink  { background: linear-gradient(135deg,#e91e63,#c2185b); }
.flt-green { background: #25D366; }
.flt-dark  { background: #111827; }

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: #0d0d0d; color: rgba(255,255,255,.72);
  margin-top: 52px; padding-top: 46px;
  border-top: 4px solid #e91e63;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 30px; padding-bottom: 36px; }
.footer-desc { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,.52); margin: 10px 0 16px; }
.footer-social { display: flex; gap: 8px; }
.social-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; text-decoration: none;
}
.social-dot:hover { background: #e91e63; }
.footer-col h4 {
  font-size: 12.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: #f4c400; margin-bottom: 15px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.58); transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 17px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: rgba(255,255,255,.38);
}
.footer-bottom a { color: rgba(255,255,255,.42); }
.footer-bottom a:hover { color: #fff; }

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 30px; align-items: start; }
.contact-info {
  background: linear-gradient(140deg,#0d0d0d,#1a1040);
  color: #fff; border-radius: 20px; padding: 34px 30px;
}
.contact-info h2 { font-size: 22px; font-weight: 800; margin-bottom: 22px; }
.ci-item { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 20px; }
.ci-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.1); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.ci-lbl { font-size: 11.5px; color: rgba(255,255,255,.5); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.ci-val { font-size: 15px; color: #fff; font-weight: 600; margin-top: 2px; }

/* ================================================================
   PAGE HERO (offers/categories top)
================================================================ */
.page-hero {
  background: linear-gradient(135deg,#0d0d0d,#1a1040);
  color: #fff; padding: 42px 0 36px;
  border-radius: 0 0 20px 20px;
  margin: -28px 0 28px;
}
.page-hero h1 { font-size: clamp(24px, 4vw, 38px); font-weight: 900; }
.page-hero p  { color: rgba(255,255,255,.6); font-size: 15px; margin-top: 8px; }

/* ================================================================
   ADMIN LOGIN
================================================================ */
.login-page {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 24px;
  background: linear-gradient(135deg,#0d0d0d 0%,#1a1040 50%,#0d0d0d 100%);
}
.login-card {
  background: #fff; border-radius: 20px;
  padding: 42px 38px; max-width: 410px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.login-logo { text-align: center; margin-bottom: 28px; }
.login-title { font-size: 20px; font-weight: 800; text-align: center; margin-bottom: 22px; color: #111827; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .hamburger   { display: flex; }
  .desktop-nav { display: none; }
  .header-cta  { display: none; }
  .topbar-right { display: none; }
  .topbar-left  { font-size: 11.5px; gap: 9px; }

  .cat-grid     { grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); }
  .product-grid { grid-template-columns: 1fr; }
  .product-actions { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row-2   { grid-template-columns: 1fr; }
  .form-row-3   { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }

  .floaters { right: 8px; bottom: 8px; transform: scale(.85); transform-origin: bottom right; }
  .formbox  { padding: 20px 16px; }
  .page-main { padding: 20px 0 44px; }

  .product-media { height: 220px; padding: 8px; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cat-grid    { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   PRINT
================================================================ */
@media print {
  .floaters, .site-header, .topbar, .site-footer, .mobile-drawer { display: none !important; }
}

/* ================================================================
   COMPATIBILITY ALIASES (old class names → new styles)
================================================================ */
.section-header { display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-bottom:22px;flex-wrap:wrap; }
.section-title  { font-size:clamp(20px,2.8vw,30px);font-weight:900;color:#111827;display:flex;align-items:center;gap:11px; }
.section-title::before { content:'';display:inline-block;width:5px;height:1.1em;background:linear-gradient(180deg,#e91e63,#c2185b);border-radius:3px;flex-shrink:0; }
.formbox.mb-3   { margin-bottom:24px; }

/* slider-wrap alias for backward compat */
.slider-wrap { margin:0; background:#000; }
.slide-cap,
.slide-overlay,
.slide-btns{
    display:none !important;
}

/* ================================================================
   v5 ADDITIONS — Social Bar, Mobile Bottom Bar, Achievements,
   Lead Modal, Lightbox, Social Follow, Contact Bank Box, etc.
================================================================ */

/* ── SOCIAL BAR (replaces topbar) ── */
.social-bar {
  background: #0d0d0d;
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  padding: 7px 0;
  line-height: 1.4;
}
.social-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 6px;
}
.sbar-left  { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.sbar-right { display: flex; align-items: center; gap: 8px; }
.sbar-badge {
  background: #e91e63; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 2px 9px; border-radius: 999px;
}
.sbar-sep { opacity: .25; }
.social-bar a { color: rgba(255,255,255,.75); transition: color .2s; }
.social-bar a:hover { color: #f4c400; }
.sbar-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-size: 14px; transition: background .2s, transform .2s;
  text-decoration: none; color: #fff;
}
.sbar-icon:hover { background: rgba(255,255,255,.18); transform: scale(1.12); color: #fff; }
.sbi-insta:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.sbi-fb:hover    { background: #1877f2; }
.sbi-yt:hover    { background: #ff0000; }
.sbi-wa:hover    { background: #25D366; }
.sbi-web:hover   { background: #0d7cf2; }

/* ── MOBILE BOTTOM BAR ── */
.mobile-bottom-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 2px solid #e8edf5;
  z-index: 9000;
  box-shadow: 0 -4px 16px rgba(0,0,0,.10);
  justify-content: space-around; align-items: stretch;
  height: 58px;
}
.mbb-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px; font-size: 11px; font-weight: 700;
  color: #374151; text-decoration: none;
  transition: background .15s, color .15s;
  padding: 6px 2px;
}
.mbb-item span { font-size: 20px; line-height: 1; }
.mbb-item:hover { background: #f4f6fb; color: #e91e63; }
.mbb-wa   { color: #25D366; }
.mbb-wa:hover { background: #f0fdf4; }
.mbb-call { color: #e91e63; }
.mbb-call:hover { background: #fff0f5; }

@media (max-width: 767px) {
  .mobile-bottom-bar { display: flex; }
  .page-main { padding-bottom: 70px; }
  .floaters  { display: none; }
}

/* ── DRAWER SOCIAL ROW ── */
.drawer-social {
  display: flex; gap: 0; border-top: 1px solid #f0f2f8;
  background: #f8f9fc;
}
.dsoc {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 5px; font-size: 12.5px; font-weight: 700;
  padding: 12px 8px; color: #374151; text-decoration: none;
  border-right: 1px solid #e8edf5; transition: background .15s, color .15s;
}
.dsoc:last-child { border-right: none; }
.dsoc:hover { background: #fff; color: #e91e63; }
.dsoc-insta:hover { color: #e1306c; }
.dsoc-fb:hover    { color: #1877f2; }
.dsoc-yt:hover    { color: #ff0000; }
.dsoc-map:hover   { color: #0a7a40; }

/* ── ACHIEVEMENTS GRID ── */
.ach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.ach-card {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  cursor: pointer; transition: all .3s;
}
.ach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  border-color: #f4c400;
}
.ach-card-img {
  position: relative; width: 100%;
  aspect-ratio: 3/4; background: #f8f9fc;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ach-card-img img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  padding: 10px; transition: transform .4s;
}
.ach-card:hover .ach-card-img img { transform: scale(1.04); }
.ach-card-zoom {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  opacity: 0; transition: opacity .25s;
}
.ach-card:hover .ach-card-zoom { opacity: 1; }
.ach-card-body { padding: 12px 14px; }
.ach-card-body h3 { font-size: 13.5px; font-weight: 700; color: #111827; line-height: 1.3; }
.ach-card-body p  { font-size: 12.5px; color: #6b7280; margin-top: 4px; }

/* Achievements preview (home page mini) */
.ach-grid-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.ach-thumb-card {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: 12px; overflow: hidden;
  cursor: pointer; transition: all .25s;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.ach-thumb-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,.10); border-color: #f4c400; }
.ach-thumb-card img { width: 100%; aspect-ratio: 3/4; object-fit: contain; padding: 8px; background: #f8f9fc; }
.ach-thumb-cap { font-size: 11.5px; font-weight: 700; color: #374151; padding: 6px 10px 8px; text-align: center; line-height: 1.3; }

/* ── ACHIEVEMENT LIGHTBOX ── */
.ach-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.ach-lb-box {
  position: relative; max-width: 780px; width: 100%;
  background: #fff; border-radius: 18px;
  overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5);
  animation: scaleIn .2s ease;
}
@keyframes scaleIn { from{transform:scale(.92);opacity:0} to{transform:scale(1);opacity:1} }
.ach-lb-close {
  position: absolute; top: 12px; right: 14px;
  background: rgba(0,0,0,.55); border: none; color: #fff;
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 20px; line-height: 1; z-index: 2;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.ach-lb-close:hover { background: #e91e63; }
.ach-lb-img {
  display: block; width: 100%; max-height: 75vh;
  object-fit: contain; background: #f8f9fc;
  padding: 14px;
}
.ach-lb-cap {
  padding: 14px 20px 18px;
  font-size: 15px; font-weight: 700; color: #111827; text-align: center;
}

/* ── LEAD MODAL ── */
.lead-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: fadeIn .2s ease;
}
.lead-modal-box {
  background: #fff; border-radius: 20px;
  padding: 30px 26px; width: 100%; max-width: 480px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  animation: scaleIn .22s ease;
}
.lead-modal-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.lead-modal-close {
  position: absolute; top: 14px; right: 14px;
  background: #f4f6fb; border: none;
  width: 30px; height: 30px; border-radius: 50%;
  font-size: 18px; cursor: pointer; color: #374151;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lead-modal-close:hover { background: #e91e63; color: #fff; }
.lead-modal .form-control { margin-bottom: 10px; }

/* ── SOCIAL FOLLOW ROW ── */
.social-follow-row {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.sfw-card {
  flex: 1; min-width: 130px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; padding: 22px 14px;
  border-radius: 16px; text-decoration: none;
  color: #fff; font-weight: 700;
  transition: all .25s; box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.sfw-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.22); color: #fff; }
.sfw-icon { font-size: 32px; line-height: 1; }
.sfw-name { font-size: 14px; }
.sfw-cta  { font-size: 11.5px; opacity: .8; }
.sfw-insta { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.sfw-fb    { background: #1877f2; }
.sfw-yt    { background: #ff0000; }
.sfw-map   { background: #0a7a40; }
.sfw-wa    { background: #25D366; }

/* ── FOOTER BANK BOX ── */
.footer-bank-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 12px 16px;
  margin-top: 14px; font-size: 12.5px;
}
.fbb-row { display: flex; gap: 8px; align-items: baseline; margin-bottom: 5px; }
.fbb-row:last-child { margin-bottom: 0; }
.fbb-lbl { color: rgba(255,255,255,.45); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; min-width: 36px; }
.fbb-val { color: rgba(255,255,255,.85); font-weight: 600; }

/* ── CONTACT PAGE: social buttons ── */
.contact-social-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.csoc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 10px;
  font-size: 12.5px; font-weight: 700; color: #fff;
  text-decoration: none; transition: all .2s;
}
.csoc-btn:hover { transform: translateY(-2px); opacity: .9; color: #fff; }
.csoc-insta { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743); }
.csoc-fb    { background: #1877f2; }
.csoc-yt    { background: #ff0000; }

/* ── CONTACT: Bank Box ── */
.contact-bank-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px; padding: 14px 18px;
  margin-top: 18px;
}
.cbb-title { font-size: 13px; font-weight: 800; color: #f4c400; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
.cbb-row   { display: flex; gap: 10px; align-items: baseline; margin-bottom: 7px; font-size: 13.5px; }
.cbb-row:last-child { margin-bottom: 0; }
.cbb-row span   { color: rgba(255,255,255,.5); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; min-width: 90px; }
.cbb-row strong { color: rgba(255,255,255,.9); }

/* ── GOOGLE MAPS WRAP ── */
.gmap-wrap {
  margin-top: 22px; border-radius: 16px; overflow: hidden;
  border: 1px solid #e8edf5; box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.gmap-wrap iframe { display: block; width: 100%; height: 300px; border: none; }

/* ── LEAD UNCALLED HIGHLIGHT ── */
.lead-uncalled td { background: #fff8e1 !important; }
.lead-uncalled:hover td { background: #fff3cc !important; }

/* ── SETTINGS SECTION HEADINGS ── */
.settings-section-hd {
  font-family: inherit; font-size: 14px; font-weight: 800;
  margin: 20px 0 14px; color: var(--muted, #6b7280);
  text-transform: uppercase; letter-spacing: .08em;
  padding-top: 18px; border-top: 1px solid #f0f2f8;
}
.settings-section-hd:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }

/* ── FOOTER SOCIAL extra icons ── */
.sdi-insta:hover { background: linear-gradient(135deg,#f09433,#dc2743) !important; }
.sdi-fb:hover    { background: #1877f2 !important; }
.sdi-yt:hover    { background: #ff0000 !important; }

/* ── NO1 PANEL ── */
.no1-panel { background: linear-gradient(135deg,#0d0d0d 0%,#1a1040 60%,#0d0d0d 100%); border-radius: 20px; padding: 40px; }
.no1-tag { display: inline-block; background: linear-gradient(135deg,#f4c400,#e0b000); color: #111; font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.no1-copy h2 { font-size: clamp(20px,2.5vw,28px); font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 14px; }
.no1-copy p  { color: rgba(255,255,255,.65); font-size: 14.5px; line-height: 1.7; margin-bottom: 18px; }
.no1-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.no1-pt   { display: flex; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.75); }

/* ── RESPONSIVE v5 additions ── */
@media (max-width: 767px) {
  .social-bar     { display: none; }
  .no1-grid       { grid-template-columns: 1fr; }
  .no1-panel      { padding: 24px 18px; }
  .ach-grid       { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .social-follow-row { gap: 10px; }
  .sfw-card       { min-width: 100px; padding: 18px 10px; }
  .form-row-3     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .ach-grid             { grid-template-columns: 1fr 1fr; }
  .ach-grid-preview     { grid-template-columns: repeat(2, 1fr); }
}
