/* ─── FONTS ─────────────────────────────────────────── */
@font-face { font-family:"Nunito"; src:url("../fonts/Nunito-Regular.ttf") format("truetype"); font-weight:400; }
@font-face { font-family:"Nunito"; src:url("../fonts/Nunito-Bold.ttf")    format("truetype"); font-weight:700; }

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --charcoal:   #444444;
  --charcoal-d: #333333;
  --charcoal-l: #5a5a5a;
  --gold:       #ffcc00;
  --gold-d:     #e6b800;
  --gold-l:     #ffe566;
  --white:      #ffffff;
  --off-white:  #fafafa;
  --muted:      #888888;
  --border:     rgba(68,68,68,0.12);

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-pill:50px;

  --sh-sm: 0 2px 8px  rgba(0,0,0,0.08);
  --sh-md: 0 6px 24px rgba(0,0,0,0.12);
  --sh-lg: 0 16px 48px rgba(0,0,0,0.18);
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html  { scroll-behavior:smooth; }
body  { font-family:"Nunito",sans-serif; background:var(--white); color:var(--charcoal); overflow-x:hidden; }
main  { margin:0; padding:0; }

/* ─── HEADER ─────────────────────────────────────────── */
header {
  position:fixed; top:10px; left:10px; right:10px;
  background:rgba(68,68,68,0.96);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,204,0,0.22);
  border-radius:var(--r-pill);
  z-index:1000;
  padding:9px 16px;
  display:flex; justify-content:space-between; align-items:center;
  box-shadow: 0 6px 28px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.06);
}

.logo          { width:30px; height:30px; border-radius:50%; border:2px solid var(--gold); object-fit:cover; }
.websitename   { color:var(--gold); margin:0 0 0 8px; font-weight:700; font-size:1rem; letter-spacing:.4px; }
.webname-icon  { display:flex; align-items:center; cursor:pointer; text-decoration:none; }

.loginbtn {
  display:flex; align-items:center; gap:6px;
  background:var(--gold); color:var(--charcoal);
  font-weight:700; font-size:.82rem; letter-spacing:.3px;
  border:none; border-radius:var(--r-pill);
  padding:8px 18px; cursor:pointer;
  box-shadow: 0 4px 14px rgba(255,204,0,0.38);
  transition:all .25s ease;
}
.loginbtn:hover { background:var(--gold-d); transform:translateY(-1px); box-shadow:0 6px 20px rgba(255,204,0,0.5); }
.login-img { width:15px; height:15px; filter:brightness(0); }

/* ─── HERO ───────────────────────────────────────────── */
.first-section {
  min-height:100vh;
  background: var(--charcoal);
  color:var(--white);
  text-align:center;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  padding:130px 24px 90px;
  position:relative; overflow:hidden;
}

/* diagonal stripe texture */
.first-section::before {
  content:'';
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(
      -55deg,
      rgba(255,204,0,0.032) 0px,
      rgba(255,204,0,0.032) 1px,
      transparent 1px,
      transparent 28px
    );
  pointer-events:none;
}

/* gold glow blob */
.first-section::after {
  content:'';
  position:absolute;
  width:520px; height:520px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(255,204,0,0.1) 0%, transparent 70%);
  top:-80px; left:50%; transform:translateX(-50%);
  pointer-events:none;
}

.website-text { position:relative; z-index:2; max-width:680px; }

/* pill badge */
.hero-badge {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(255,204,0,0.12);
  border:1px solid rgba(255,204,0,0.28);
  border-radius:var(--r-pill);
  padding:5px 16px;
  font-size:.7rem; font-weight:700; letter-spacing:1.2px; text-transform:uppercase;
  color:var(--gold); margin-bottom:22px;
  opacity:0; animation:up .55s ease forwards .1s;
}
.hero-badge-dot { width:6px; height:6px; border-radius:50%; background:var(--gold); animation:blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.first-section-text {
  font-size:clamp(54px,14vw,138px);
  font-weight:700; line-height:.92; letter-spacing:-3px;
  color:var(--gold);
  /* bold gold text-shadow for depth */
  text-shadow: 0 2px 0 var(--gold-d), 0 0 60px rgba(255,204,0,0.25);
  opacity:0; animation:up .65s cubic-bezier(.16,1,.3,1) forwards .2s;
}

.lead {
  max-width:560px; margin:20px auto 0;
  font-size:.97rem; line-height:1.78; color:rgba(255,255,255,.68);
  opacity:0; animation:up .55s ease forwards .48s;
}
.lead strong { color:var(--gold); font-weight:700; }

.note { font-size:.76rem; color:rgba(255,255,255,.35); max-width:500px; margin:12px auto 0; opacity:0; animation:up .5s ease forwards 1.05s; }

/* network chips */
.hero-networks {
  display:flex; gap:8px; justify-content:center; flex-wrap:wrap;
  margin:28px auto 0;
  opacity:0; animation:up .5s ease forwards 1.2s;
}
.hero-network-chip {
  display:flex; align-items:center; gap:7px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.13);
  border-radius:var(--r-pill); padding:6px 14px;
  font-size:.76rem; font-weight:600; color:rgba(255,255,255,.78);
}
.hero-network-chip img { width:17px; height:17px; border-radius:50%; object-fit:cover; }

@keyframes up {
  from { opacity:0; transform:translateY(26px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ─── CTA BUTTONS ────────────────────────────────────── */
.btn-row {
  display:flex; justify-content:center; gap:12px; flex-wrap:wrap;
  margin:30px auto 0;
  opacity:0; animation:up .55s ease forwards .76s;
}
.btn {
  height:50px; min-width:154px; border-radius:var(--r-pill);
  font-size:.92rem; font-weight:700; font-family:"Nunito",sans-serif;
  padding:0 26px; border:none; cursor:pointer;
  transition:all .25s ease;
}
.btn-buy {
  background:var(--gold); color:var(--charcoal);
  box-shadow:0 5px 20px rgba(255,204,0,0.42);
}
.btn-buy:hover { background:var(--gold-d); transform:translateY(-2px); box-shadow:0 8px 26px rgba(255,204,0,0.56); }

.btn-contact {
  background:transparent; color:var(--white);
  border:1.5px solid rgba(255,255,255,.3);
}
.btn-contact:hover { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.6); transform:translateY(-2px); }

/* scroll cue */
.scroll-cue {
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:7px; z-index:2;
  opacity:0; animation:up .5s ease forwards 1.5s;
}
.scroll-cue span { font-size:.65rem; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.28); }
.scroll-mouse { width:20px; height:32px; border:2px solid rgba(255,255,255,.2); border-radius:20px; display:flex; justify-content:center; padding-top:5px; }
.scroll-wheel { width:3px; height:6px; background:var(--gold); border-radius:3px; animation:wheel 2s ease-in-out infinite; }
@keyframes wheel { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(7px);opacity:.25} }

/* ─── SECTION DIVIDER ────────────────────────────────── */
.section-intro {
  background:var(--off-white);
  text-align:center; padding:56px 20px 20px;
}
.section-pill {
  display:inline-block; background:var(--charcoal); color:var(--gold);
  border-radius:var(--r-pill); padding:5px 18px;
  font-size:.7rem; font-weight:700; letter-spacing:1.4px; text-transform:uppercase; margin-bottom:12px;
}
.section-intro h2 { font-size:clamp(1.45rem,4vw,2.1rem); font-weight:700; color:var(--charcoal); letter-spacing:-.4px; }
.section-intro p  { color:var(--muted); font-size:.9rem; margin-top:7px; max-width:440px; margin-inline:auto; }

/* ─── PRODUCTS SECTION ───────────────────────────────── */
.second-section {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:16px; padding:16px 20px 56px; background:var(--off-white);
}
.title-text { width:100%; font-size:1rem; font-weight:700; text-align:center; margin:0 0 6px; color:var(--charcoal); }

/* ─── ORDER TABLE ────────────────────────────────────── */
.order-table-section { padding:20px 14px 40px; background:var(--white); }
.TrackOrder-container {
  background:var(--white); border-radius:var(--r-lg);
  border:1px solid var(--border); padding:22px;
  box-shadow:var(--sh-sm); max-width:1100px; margin:0 auto;
}
.TrackOrder-container h2 { font-size:1.2rem; font-weight:700; color:var(--charcoal); margin-bottom:18px; }
.table-controls { display:flex; justify-content:space-between; align-items:center; gap:10px; margin-bottom:16px; flex-wrap:wrap; }
.show-entries { font-size:.84rem; color:var(--muted); display:flex; align-items:center; gap:7px; }
.show-entries select { border:1px solid var(--border); border-radius:var(--r-sm); padding:4px 8px; font-family:"Nunito",sans-serif; font-size:.84rem; color:var(--charcoal); background:var(--off-white); }
.order-search-container input { border:1px solid var(--border); border-radius:var(--r-pill); padding:8px 18px; font-family:"Nunito",sans-serif; font-size:.84rem; color:var(--charcoal); background:var(--off-white); outline:none; transition:all .2s; width:210px; }
.order-search-container input:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(255,204,0,0.18); }
.order-table-container { overflow-x:auto; border-radius:var(--r-md); border:1px solid var(--border); }
.order-table { width:100%; border-collapse:collapse; font-size:.81rem; min-width:700px; }
.order-table thead tr { background:var(--charcoal); }
.order-table th { padding:13px 12px; text-align:left; font-weight:700; font-size:.7rem; letter-spacing:.5px; text-transform:uppercase; color:rgba(255,255,255,.7); white-space:nowrap; }
.order-table th:first-child { border-radius:var(--r-sm) 0 0 0; }
.order-table th:last-child  { border-radius:0 var(--r-sm) 0 0; }
.order-table tbody tr { border-bottom:1px solid rgba(0,0,0,.04); transition:background .14s; }
.order-table tbody tr:hover { background:rgba(255,204,0,.05); }
.order-table tbody tr:last-child { border-bottom:none; }
.order-table td { padding:11px 12px; color:var(--charcoal); vertical-align:middle; }
.pagination-container { display:flex; align-items:center; justify-content:center; gap:12px; margin-top:18px; font-size:.84rem; }
.pagination-container button { background:var(--charcoal); color:var(--white); border:none; border-radius:var(--r-sm); padding:8px 18px; font-family:"Nunito",sans-serif; font-size:.8rem; font-weight:700; cursor:pointer; transition:all .2s; }
.pagination-container button:hover { background:var(--gold); color:var(--charcoal); }
#pageInfo { color:var(--muted); font-weight:600; }

/* ─── ABOUT ──────────────────────────────────────────── */
.last-section { padding:52px 20px 20px; text-align:center; background:var(--off-white); }
.card-about {
  background:var(--charcoal); color:var(--white);
  border-radius:var(--r-lg); padding:44px 32px;
  max-width:700px; margin:0 auto;
  box-shadow:var(--sh-lg); position:relative; overflow:hidden;
}
.card-about::before {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(-55deg, rgba(255,204,0,.03) 0,rgba(255,204,0,.03) 1px, transparent 1px, transparent 28px);
  pointer-events:none;
}
.card-about::after {
  content:''; position:absolute;
  top:-50px; right:-50px; width:200px; height:200px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,204,0,.12) 0%, transparent 70%);
  pointer-events:none;
}
.card-about h2 { position:relative; z-index:1; margin-bottom:14px; color:var(--gold); font-size:1.5rem; font-weight:700; }
.card-about p  { position:relative; z-index:1; color:rgba(255,255,255,.68); line-height:1.8; font-size:.93rem; max-width:540px; margin:0 auto; }

/* ─── FEATURES ───────────────────────────────────────── */
.section-features {
  display:flex; flex-direction:column; gap:14px;
  padding:36px 18px 56px; background:var(--off-white);
  max-width:1020px; margin:0 auto; width:100%;
}
.feature-card {
  background:var(--white); border-radius:var(--r-lg);
  padding:24px 22px; display:flex; align-items:center; gap:18px;
  border:1px solid var(--border); box-shadow:var(--sh-sm);
  position:relative; overflow:hidden;
  transition:all .28s ease;
}
/* gold left-bar accent */
.feature-card::before { content:''; position:absolute; left:0; top:0; bottom:0; width:4px; background:var(--gold); }
.feature-card:hover { transform:translateY(-3px); box-shadow:var(--sh-md); border-color:rgba(255,204,0,.25); }
.feature-icon { width:52px; height:52px; flex-shrink:0; border-radius:var(--r-md); background:rgba(255,204,0,.1); border:1px solid rgba(255,204,0,.2); display:flex; align-items:center; justify-content:center; }
.feature-icon img { width:28px; height:28px; object-fit:contain; }
.feature-card .text h3 { font-size:.96rem; font-weight:700; color:var(--charcoal); margin-bottom:4px; }
.feature-card .text p  { font-size:.83rem; color:var(--muted); line-height:1.55; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background:var(--charcoal); padding:44px 22px 28px;
  text-align:center; border-radius:22px 22px 0 0;
  position:relative; overflow:hidden;
}
footer::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.footer-brand { font-size:1.35rem; font-weight:700; color:var(--gold); letter-spacing:1px; margin-bottom:4px; }
.footer-tagline { font-size:.76rem; color:rgba(255,255,255,.3); margin-bottom:26px; }

.social-icons-box {
  display:flex; justify-content:center; gap:10px;
  padding-bottom:26px; border-bottom:1px solid rgba(255,255,255,.08); margin-bottom:18px;
}
.social-icon-wrap {
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all .22s ease;
}
.social-icon-wrap:hover { background:rgba(255,204,0,.18); border-color:rgba(255,204,0,.4); transform:translateY(-3px); }
.social-icons { width:17px; height:17px; }

.captions { display:flex; justify-content:center; flex-wrap:wrap; gap:4px; margin:0 0 18px; }
.captions p { color:rgba(255,255,255,.4); font-size:.78rem; padding:4px 13px; border-radius:var(--r-pill); cursor:pointer; transition:all .2s; border:1px solid transparent; }
.captions p:hover { color:var(--gold); border-color:rgba(255,204,0,.2); }
.copyright-text { color:rgba(255,255,255,.2); font-size:.73rem; line-height:1.8; }

/* WhatsApp FAB */
.Admin-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 56px;
  height: 56px;

  background: #25D366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.2),
              0 0 0 4px rgba(37, 211, 102, 0.2);

  cursor: pointer;
  z-index: 999;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Icon size */
.Admin-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

/* Hover effect */
.Admin-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3),
              0 0 0 6px rgba(37, 211, 102, 0.3);
}

/* Click effect */
.Admin-icon:active {
  transform: scale(0.95);
}
/* scroll-to-top */
.scroll-top {
  position:fixed; bottom:80px; right:26px;
  width:38px; height:38px; background:var(--charcoal);
  border:1px solid rgba(255,204,0,.25); border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center;
  z-index:100; box-shadow:var(--sh-md); cursor:pointer;
  opacity:0; visibility:hidden; transition:all .3s ease;
}
.scroll-top.show { opacity:1; visibility:visible; }
.scroll-top:hover { background:var(--gold); transform:translateY(-2px); }
.scroll-top:hover .arrow-up-icon { filter:brightness(0); }
.arrow-up-icon { width:55%; filter:invert(1); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (min-width:768px) {
  header { max-width:80%; left:50%; transform:translateX(-50%); right:auto; padding:11px 22px; }
  .logo { width:34px; height:34px; }
  .second-section { flex-direction:row; flex-wrap:wrap; justify-content:center; gap:18px; padding:30px 36px 56px; }
  .section-features { flex-direction:row; flex-wrap:wrap; padding:36px 40px 60px; }
  .feature-card { flex:1 1 calc(33.33% - 10px); }
}
@media (min-width:1024px) {
  header { max-width:72%; padding:13px 30px; }
  .first-section-text { letter-spacing:-5px; }
  .second-section { justify-content:space-evenly; padding:36px 56px 60px; }
  .card-parent { max-width:360px; }
}
