@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+Bengali:wght@400;500;600;700&display=swap');

:root {
  --background: hsl(0 0% 100%);
  --foreground: hsl(222 47% 11%);
  --card: hsl(210 40% 98%);
  --card-foreground: hsl(222 47% 11%);
  --primary: hsl(221 83% 53%);
  --primary-foreground: hsl(0 0% 100%);
  --secondary: hsl(210 40% 96%);
  --muted: hsl(210 40% 96%);
  --muted-foreground: hsl(215 16% 47%);
  --accent: hsl(262 83% 58%);
  --accent-foreground: hsl(0 0% 100%);
  --border: hsl(214 32% 91%);
  --destructive: hsl(0 84% 60%);
  --warning: hsl(38 92% 50%);
  --success: hsl(142 71% 45%);
  --whatsapp: hsl(142 70% 45%);
  --gradient-hero: linear-gradient(135deg, hsl(221, 83%, 53%) 0%, hsl(262, 83%, 58%) 100%);
  --gradient-primary: linear-gradient(135deg, hsl(221, 83%, 53%) 0%, hsl(262, 83%, 58%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(340, 82%, 55%) 0%, hsl(350, 90%, 60%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(210, 40%, 98%) 0%, hsl(0, 0%, 100%) 100%);
  --shadow-glow: 0 0 20px -4px hsla(221, 83%, 53%, 0.2);
  --shadow-accent: 0 0 20px -4px hsla(262, 83%, 58%, 0.2);
  --radius: 0.75rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', 'Noto Sans Bengali', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.font-bengali { font-family: 'Noto Sans Bengali', sans-serif; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.025em; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }

img { max-width: 100%; height: auto; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }

/* Text gradient */
.text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
  border-bottom: 1px solid hsla(38, 92%, 50%, 0.2);
  background: hsla(38, 92%, 50%, 0.05);
  padding: 0.5rem 0;
  text-align: center;
}
.urgency-banner .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.urgency-banner .warn { color: var(--warning); display: flex; align-items: center; gap: 4px; }
.urgency-banner .accent-text { color: var(--accent); display: none; align-items: center; gap: 4px; }
@media(min-width:640px) { .urgency-banner .accent-text { display: flex; } }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.site-header .inner {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--foreground);
}
.site-logo .logo-icon {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.1rem;
}
.site-logo .logo-text {
  font-size: 1.125rem;
  font-weight: 700;
}
.site-logo .logo-text span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.header-nav { display: none; align-items: center; gap: 1.5rem; }
.header-nav a { font-size: 0.875rem; color: var(--muted-foreground); font-weight: 500; transition: color 0.2s; }
.header-nav a:hover { color: var(--foreground); }
.header-nav .wa-btn {
  border-radius: 8px;
  background: var(--gradient-primary);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  transition: transform 0.2s;
}
.header-nav .wa-btn:hover { transform: scale(1.05); }

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

@media(min-width:768px) {
  .header-nav { display: flex; }
  .mobile-menu-btn { display: none; }
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: hsla(0,0%,100%,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.mobile-nav-overlay a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--foreground);
}
.mobile-nav-overlay .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding: 4rem 0 2.5rem;
}
.hero .bg-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  filter: blur(48px);
}
.hero .blob1 { right: -5rem; top: -5rem; width: 18rem; height: 18rem; }
.hero .blob2 { left: -5rem; bottom: 0; width: 15rem; height: 15rem; }
.hero .content { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; text-align: center; }
.hero .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
}
.hero h1 .highlight { color: #fde047; }
.hero .sub { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 36rem; margin: 0 auto 2rem; }
.hero .cta-row { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.hero .btn-shop {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  background: #fff;
  padding: 14px 32px;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  font-size: 1rem;
}
.hero .btn-shop:hover { transform: scale(1.05); }
.hero .btn-wa {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  padding: 14px 32px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: transform 0.2s;
  font-size: 1rem;
}
.hero .btn-wa:hover { transform: scale(1.05); }
.hero .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.hero .stat-box {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 12px 16px;
  backdrop-filter: blur(8px);
}
.hero .stat-val { font-size: 1.25rem; font-weight: 900; color: #fde047; }
.hero .stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

@media(min-width:640px) {
  .hero .cta-row { flex-direction: row; justify-content: center; }
  .hero .btn-shop, .hero .btn-wa { width: auto; }
}
@media(min-width:768px) {
  .hero { padding: 6rem 0 4rem; }
  .hero h1 { font-size: 3rem; }
  .hero .stat-val { font-size: 1.5rem; }
}
@media(min-width:1024px) { .hero h1 { font-size: 3.75rem; } }

/* ===== TRUST BADGES ===== */
.trust-badges {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: hsla(210, 40%, 98%, 0.5);
  padding: 2rem 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}
.trust-item .icon {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: hsla(221, 83%, 53%, 0.1);
  font-size: 1.1rem;
}
.trust-item .label { font-size: 0.875rem; font-weight: 700; }
.trust-item .desc { font-size: 0.75rem; color: var(--muted-foreground); }
@media(min-width:768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== PRODUCTS SECTION ===== */
.products-section { padding: 3rem 0 4rem; }
.products-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.products-header h2 { font-size: 1.5rem; font-weight: 900; }
.search-wrap { position: relative; width: 100%; }
.search-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--muted-foreground);
}
.search-wrap input {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  padding: 10px 16px 10px 40px;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s;
}
.search-wrap input::placeholder { color: var(--muted-foreground); }
.search-wrap input:focus { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }

@media(min-width:768px) {
  .products-header { flex-direction: row; align-items: center; justify-content: space-between; }
  .products-header h2 { font-size: 1.875rem; }
  .search-wrap { width: 18rem; }
}

/* Category group tabs */
.group-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.group-tabs::-webkit-scrollbar { display: none; }
.group-tab {
  flex-shrink: 0;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted-foreground);
  transition: all 0.2s;
  white-space: nowrap;
}
.group-tab:hover { color: var(--foreground); }
.group-tab.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

/* Category section */
.cat-section { margin-bottom: 2.5rem; }
.cat-section h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cat-section h3 .emoji { font-size: 1.25rem; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media(min-width:768px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== PRODUCT CARD ===== */
.product-card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--gradient-card);
  border-radius: 16px;
  padding: 1rem;
  transition: all 0.3s;
}
.product-card:hover {
  box-shadow: var(--shadow-glow);
  border-color: hsla(221, 83%, 53%, 0.4);
}
.product-card .badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--gradient-accent);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-accent);
}
.product-card .card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.product-card .card-icon {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: hsla(221, 83%, 53%, 0.1);
  font-size: 1.1rem;
}
.product-card .card-name { font-size: 0.875rem; font-weight: 900; color: var(--foreground); }
.product-card .card-cat { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }

.product-card .card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}
.product-card .card-meta .star { color: var(--warning); }

.product-card .card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.75rem;
}
.product-card .card-price .amount { font-size: 1.5rem; font-weight: 900; color: var(--foreground); }
.product-card .card-price .currency { font-size: 0.75rem; color: var(--muted-foreground); }

.btn-buy {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  background: var(--gradient-primary);
  padding: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
}
.btn-buy:hover { transform: scale(1.02); color: #fff; }
.btn-buy:active { transform: scale(0.98); }

/* Red Buy Now variant */
.btn-buy-red {
  background: linear-gradient(135deg, hsl(0, 84%, 60%), hsl(350, 90%, 50%));
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  border-top: 1px solid var(--border);
  background: hsla(210, 40%, 98%, 0.3);
  padding: 3rem 0 4rem;
}
.reviews-section .section-head { text-align: center; margin-bottom: 2rem; }
.reviews-section .section-head h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.5rem; }
.reviews-section .section-head p { font-size: 0.875rem; color: var(--muted-foreground); }
.reviews-grid {
  display: grid;
  gap: 1rem;
}
@media(min-width:768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  border: 1px solid var(--border);
  background: var(--background);
  border-radius: 12px;
  padding: 1.25rem;
}
.review-card .stars { color: var(--warning); margin-bottom: 0.5rem; font-size: 0.875rem; }
.review-card .text { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.review-card .reviewer { font-size: 0.875rem; font-weight: 600; }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 3rem 0 4rem; }
.faq-section .section-head { text-align: center; margin-bottom: 2rem; }
.faq-section .section-head h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.5rem; }
.faq-section .section-head p { font-size: 0.875rem; color: var(--muted-foreground); }
.faq-container { max-width: 48rem; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.faq-question .arrow { transition: transform 0.2s; font-size: 0.75rem; color: var(--muted-foreground); }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 16px 16px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 2.5rem 0 1.25rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media(min-width:768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-col h4 { font-weight: 600; margin-bottom: 0.75rem; }
.footer-col p, .footer-col a { font-size: 0.875rem; color: var(--muted-foreground); display: block; line-height: 1.8; }
.footer-col a:hover { color: var(--foreground); }
.footer-col .logo-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-col .logo-mini {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.875rem;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: var(--muted-foreground); }
.footer-bottom .disclaimer { margin-top: 0.5rem; opacity: 0.6; }

/* ===== CHECKOUT ===== */
.checkout-page { padding: 2rem 0 3rem; }
.checkout-container { max-width: 32rem; margin: 0 auto; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
}
.back-link:hover { color: var(--foreground); }

.order-summary {
  border: 1px solid hsla(221, 83%, 53%, 0.2);
  background: var(--card);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.order-summary h2 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.summary-row { display: flex; align-items: center; justify-content: space-between; }
.summary-left { display: flex; align-items: center; gap: 0.75rem; }
.summary-icon {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: hsla(221, 83%, 53%, 0.1);
  font-size: 1.1rem;
}
.summary-name { font-weight: 700; color: var(--primary); }
.summary-cat { font-size: 0.75rem; color: var(--muted-foreground); }
.summary-price { font-size: 1.25rem; font-weight: 900; }
.summary-old-price { font-size: 0.875rem; color: var(--muted-foreground); text-decoration: line-through; }

/* Price Comparison */
.price-compare {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.price-compare h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.compare-list { max-height: 13rem; overflow-y: auto; padding-right: 4px; }
.compare-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}
.compare-item:hover { border-color: hsla(221, 83%, 53%, 0.3); }
.compare-item.current { border-color: var(--primary); background: hsla(221, 83%, 53%, 0.05); }
.compare-item .ci-name { font-size: 0.875rem; font-weight: 700; }
.compare-item .ci-per { font-size: 0.625rem; color: var(--muted-foreground); }
.compare-item .ci-savings { color: hsl(142 71% 45%); font-weight: 700; font-size: 0.625rem; margin-left: 4px; }
.compare-item .ci-price { font-size: 0.875rem; font-weight: 900; }
.compare-item .ci-current-badge {
  background: hsla(221, 83%, 53%, 0.1);
  color: var(--primary);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

/* Coupon */
.coupon-box {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.coupon-box label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.coupon-row { display: flex; gap: 0.5rem; }
.coupon-row input {
  flex: 1;
  border: 1px solid var(--border);
  background: var(--background);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.875rem;
  text-transform: uppercase;
  outline: none;
  color: var(--foreground);
}
.coupon-row input:focus { border-color: var(--primary); }
.coupon-row button {
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}
.coupon-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: hsla(142, 71%, 45%, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
}
.coupon-applied span { color: hsl(142 71% 45%); font-weight: 700; font-size: 0.875rem; }
.coupon-applied button { background: none; border: none; color: var(--destructive); font-size: 0.75rem; cursor: pointer; text-decoration: underline; }

/* Form */
.checkout-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}
.form-group input::placeholder { color: var(--muted-foreground); }

.payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.pay-method-btn {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  padding: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--muted-foreground);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.pay-method-btn.active, .pay-method-btn:hover {
  border-color: var(--primary);
  background: hsla(221, 83%, 53%, 0.1);
  color: var(--primary);
}

.payment-instructions {
  border: 1px solid hsla(221, 83%, 53%, 0.2);
  background: hsla(221, 83%, 53%, 0.05);
  border-radius: 12px;
  padding: 1rem;
}
.payment-instructions .pi-label { color: var(--primary); font-weight: 600; font-size: 0.875rem; margin-bottom: 4px; }
.payment-instructions .pi-desc { color: var(--muted-foreground); font-size: 0.875rem; }
.payment-instructions .pi-desc strong { color: var(--foreground); }
.payment-instructions .pi-number { font-size: 1.125rem; font-weight: 900; margin: 6px 0; }
.payment-instructions .pi-note { font-size: 0.75rem; color: var(--muted-foreground); }

.btn-order {
  width: 100%;
  border-radius: 12px;
  background: var(--gradient-primary);
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s;
  margin-top: 0.5rem;
}
.btn-order:hover { transform: scale(1.02); }
.btn-order:active { transform: scale(0.98); }
.btn-order:disabled { opacity: 0.6; cursor: not-allowed; }

/* ===== THANK YOU ===== */
.thankyou-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}
.thankyou-inner { max-width: 28rem; text-align: center; }
.thankyou-icon {
  display: flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: hsla(142, 71%, 45%, 0.1);
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}
.thankyou-inner h1 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.5rem; }
.thankyou-inner .sub { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.thankyou-order-box {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 2rem;
}
.thankyou-order-box .label { font-size: 0.875rem; color: var(--muted-foreground); }
.thankyou-order-box .oid { font-size: 1.5rem; font-weight: 900; }
.btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  background: var(--gradient-primary);
  padding: 12px 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.btn-wa-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  border: 1px solid hsla(142, 70%, 45%, 0.3);
  background: hsla(142, 70%, 45%, 0.1);
  padding: 12px 24px;
  font-weight: 700;
  color: var(--whatsapp);
  text-decoration: none;
}

/* ===== 404 ===== */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-404 h1 {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.page-404 p { color: var(--muted-foreground); font-size: 1.2rem; margin-bottom: 1.5rem; }

/* ===== FAKE NOTIFICATION ===== */
.fake-notif {
  position: fixed;
  bottom: 5rem;
  left: 1rem;
  z-index: 50;
  max-width: 18rem;
  border: 1px solid hsla(221, 83%, 53%, 0.2);
  background: hsla(0, 0%, 100%, 0.95);
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  backdrop-filter: blur(16px);
  animation: slideInLeft 0.5s ease-out forwards;
}
.fake-notif.hiding { animation: slideOutLeft 0.5s ease-in forwards; }
.fake-notif .fn-inner { display: flex; align-items: center; gap: 0.75rem; }
.fake-notif .fn-icon {
  display: flex;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: hsla(221, 83%, 53%, 0.1);
  font-size: 0.875rem;
}
.fake-notif .fn-name { font-size: 0.75rem; font-weight: 600; }
.fake-notif .fn-product { font-size: 0.6875rem; color: var(--muted-foreground); }
.fake-notif .fn-product strong { color: var(--primary); font-weight: 700; }
.fake-notif .fn-cat { font-size: 0.625rem; color: var(--muted-foreground); }
.fake-notif .close-notif {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
}

@keyframes slideInLeft {
  from { transform: translateX(-120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutLeft {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(-120%); opacity: 0; }
}

/* No product selected */
.no-product { text-align: center; padding: 3.75rem 0; }
.no-product h2 { font-size: 1.25rem; font-weight: 900; margin-bottom: 0.75rem; }
.no-product p { color: var(--muted-foreground); margin-bottom: 1.5rem; }

/* Admin overrides */
.gamesbd24-admin { padding: 20px; }
.gamesbd24-admin h1 { font-size: 1.8rem; margin-bottom: 20px; }
.gamesbd24-stats { display: flex; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.gamesbd24-stat { background: #fff; border: 1px solid #ddd; border-radius: 12px; padding: 20px 30px; min-width: 200px; }
.gamesbd24-stat .num { font-size: 2rem; font-weight: 800; color: hsl(221 83% 53%); }
.gamesbd24-stat .label { color: #666; font-size: 0.9rem; }
.gamesbd24-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.gamesbd24-table th { background: #f8f9fa; padding: 12px 16px; text-align: left; font-weight: 600; font-size: 0.85rem; border-bottom: 2px solid #eee; }
.gamesbd24-table td { padding: 12px 16px; border-bottom: 1px solid #f0f0f0; font-size: 0.85rem; }
.gamesbd24-table tr:hover td { background: #f8f9fa; }
.status-pending { color: #f59e0b; font-weight: 600; }
.status-completed { color: #10b981; font-weight: 600; }
.status-cancelled { color: #ef4444; font-weight: 600; }
.gamesbd24-form { background: #fff; padding: 24px; border-radius: 12px; margin-bottom: 20px; max-width: 500px; }
.gamesbd24-form label { display: block; margin-bottom: 4px; font-weight: 600; font-size: 0.85rem; }
.gamesbd24-form input, .gamesbd24-form select { width: 100%; padding: 8px 12px; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 12px; }
.gamesbd24-form button { background: hsl(221 83% 53%); color: #fff; border: none; padding: 10px 24px; border-radius: 8px; font-weight: 600; cursor: pointer; }
