/* ===== GAMERS ARENA INSPIRED DARK THEME ===== */
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary: #6F4FEE;
  --primary-rgb: 111, 79, 242;
  --primary-light: #8B6FF5;
  --primary-dark: #5A3BD4;
  --accent: #6F4FEE;
  --accent-light: #8B6FF5;
  --success: #00ff88;
  --danger: #ef4444;
  --warning: #f59e0b;
  --bg-color1: #1F2235;
  --bg-color2: #24293D;
  --bg-color3: #2F3448;
  --bg-color4: #242C50;
  --border-color1: #2e3347;
  --border-color2: #3d4153;
  --body-color: #e2e3e7;
  --heading-color: 255, 255, 255;
  --white: 255, 255, 255;
  --soft-green: #ccf888;
  --shadow1: 0 0.375rem 0.75rem rgba(140, 152, 164, .075);
  --shadow2: 0 .1875rem .75rem rgba(140, 152, 164, .25);
  --transition: all .3s ease-in-out;
}

/* ===== RESET ===== */
*, *::after, *::before { box-sizing: border-box; padding: 0; margin: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p { margin-bottom: 10px; line-height: 1.5; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: rgb(var(--primary-color)); }
img { max-width: 100%; height: auto; }

/* ===== BASE ===== */
body {
  font-family: 'Urbanist', sans-serif;
  line-height: 1.5;
  color: var(--body-color);
  font-size: 16px;
  background-color: var(--bg-color1);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(var(--primary-rgb), 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
html { scroll-behavior: smooth; overflow-x: hidden; }

h1, h2, h3, h4, h5 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(var(--heading-color));
}
h1 { font-size: 40px; font-weight: 900; line-height: 50px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; font-weight: 700; }
h5 { font-size: 18px; font-weight: 600; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ===== BUTTONS ===== */
.cmn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgb(var(--primary-color));
  color: rgb(var(--white));
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cmn-btn:hover {
  background: rgb(var(--primary-color), 0.8);
  color: rgb(var(--white));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-color), 0.3);
}
.cmn-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}
.cmn-btn:hover::after { opacity: 1; }

.kew-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgb(var(--primary-color));
  color: rgb(var(--white));
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.kew-btn:hover {
  background: rgb(var(--primary-color), 0.8);
  color: rgb(var(--white));
  transform: translateY(-2px);
}
.kew-text { position: relative; z-index: 1; }
.kew-arrow {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.kew-arrow .kt-one, .kew-arrow .kt-two {
  transition: var(--transition);
}
.kew-arrow .kt-two {
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-10px);
}
.kew-btn:hover .kew-arrow .kt-one {
  opacity: 0;
  transform: translateX(10px);
}
.kew-btn:hover .kew-arrow .kt-two {
  opacity: 1;
  transform: translateX(0);
}

.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 6px; }
.btn-block { width: 100%; padding: 16px 28px; font-size: 16px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ===== HEADER / NAVBAR ===== */
.navbar {
  background: rgba(31, 34, 53, 0.95);
  border-bottom: 1px solid var(--border-color1);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: rgb(var(--white));
}
.logo:hover { color: rgb(var(--white)); }
.logo-icon {
  font-size: 30px;
  filter: drop-shadow(0 0 12px rgba(var(--primary-color), 0.6));
  animation: fireGlow 2s ease-in-out infinite;
}
@keyframes fireGlow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(var(--primary-color), 0.6)); }
  50% { filter: drop-shadow(0 0 20px rgba(var(--primary-color), 0.9)); }
}
.logo-text {
  background: linear-gradient(135deg, rgb(var(--primary-color)), var(--primary-light), #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  color: var(--body-color);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover {
  color: rgb(var(--primary-color));
  background: rgba(var(--primary-color), 0.08);
}
.nav-link.active {
  color: rgb(var(--primary-color));
  background: rgba(var(--primary-color), 0.12);
}

.cart-btn {
  position: relative;
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.cart-btn:hover { border-color: rgb(var(--primary-color)); }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: rgb(var(--primary-color));
  color: white;
  font-size: 11px;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgb(var(--white));
  text-transform: capitalize;
}
.form-input, .form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-color1);
  border: 1px solid var(--border-color1);
  border-radius: 8px;
  color: rgb(var(--white));
  font-size: 16px;
  font-family: 'Urbanist', sans-serif;
  transition: var(--transition);
}
.form-input:focus, .form-control:focus {
  outline: none;
  border: 1px solid rgb(var(--primary-color));
  box-shadow: 0 0 0 4px rgba(var(--primary-color), 0.1);
}
.form-input::placeholder, .form-control::placeholder {
  color: var(--body-color);
  text-transform: capitalize;
}

/* ===== RADIO CARDS ===== */
.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-card {
  flex: 1;
  min-width: 90px;
  padding: 14px 10px;
  background: var(--bg-color3);
  border: 2px solid var(--border-color1);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.radio-card:hover { border-color: rgba(var(--primary-color), 0.4); }
.radio-card.selected {
  border-color: rgb(var(--primary-color));
  background: rgba(var(--primary-color), 0.1);
  box-shadow: 0 0 20px rgba(var(--primary-color), 0.15);
}
.radio-card input { display: none; }
.radio-card .icon { font-size: 26px; margin-bottom: 6px; }
.radio-card .label { font-size: 13px; font-weight: 600; color: rgb(var(--white)); }

/* ===== HERO SECTION ===== */
.hero-section {
  padding: 60px 0 40px;
  position: relative;
}
.hero-swiper {
  border-radius: 16px;
  overflow: hidden;
}
.slider-box {
  position: relative;
  padding: 50px 40px;
  border-radius: 16px;
  min-height: 350px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.slider-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 34, 53, 0.9), rgba(31, 34, 53, 0.6));
  z-index: 1;
}
.slider-box .text-box {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(var(--primary-color), 0.15);
  border: 1px solid rgba(var(--primary-color), 0.3);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgb(var(--primary-color));
  margin-bottom: 16px;
}
.slider-box .title {
  font-size: 36px;
  font-weight: 900;
  color: rgb(var(--white));
  margin-bottom: 12px;
  line-height: 1.1;
}
.slider-box .description {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-swiper .swiper-pagination-bullet {
  width: 30px;
  height: 5px;
  border-radius: 3px;
  background: rgb(var(--primary-color), 0.3);
  opacity: 1;
  transition: var(--transition);
}
.hero-swiper .swiper-pagination-bullet-active {
  width: 50px;
  background: rgb(var(--primary-color));
}

.autoplay-progress {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  z-index: 10;
}
.autoplay-progress svg {
  transform: rotate(-90deg);
}
.autoplay-progress circle {
  fill: none;
  stroke: rgb(var(--primary-color));
  stroke-width: 4;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  transition: stroke-dashoffset 0.1s;
  stroke-linecap: round;
}

/* ===== RIGHT BOX (TRENDING) ===== */
.right-box {
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}
.right-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.right-box p {
  font-size: 13px;
  color: var(--body-color);
}
.product-box {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--bg-color3);
  border: 1px solid var(--border-color1);
  border-radius: 10px;
  margin-top: 12px;
  transition: var(--transition);
  text-decoration: none;
}
.product-box:hover {
  border-color: rgb(var(--primary-color));
  background: rgba(var(--primary-color), 0.05);
}
.product-box .img-box {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.product-box .text-box { flex: 1; }
.product-box .title {
  font-size: 14px;
  font-weight: 700;
  color: rgb(var(--white));
  margin-bottom: 4px;
}
.product-box .name {
  font-size: 12px;
  color: var(--body-color);
}
.product-box .reviews {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #FCDA69;
}
.product-box .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.product-box .promo-price {
  font-size: 16px;
  font-weight: 800;
  color: rgb(var(--primary-color));
}
.product-box .sell {
  font-size: 12px;
  color: var(--body-color);
}

/* ===== GAME CATEGORY GRID ===== */
.trending-game-section {
  padding: 60px 0;
}
.category-box {
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.category-box:hover {
  border-color: rgb(var(--primary-color));
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.category-box .img-box {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  background: var(--bg-color3);
  overflow: hidden;
}
.category-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-box .text-box {
  padding: 16px;
}
.category-box .text-box .title {
  font-size: 15px;
  font-weight: 700;
  color: rgb(var(--white));
  text-decoration: none;
  display: block;
}
.category-box:hover .title {
  color: rgb(var(--primary-color));
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-color), 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover {
  border-color: rgb(var(--primary-color));
  transform: scale(1.03);
}
.product-card:hover::before { opacity: 1; }
.product-card.selected {
  border-color: rgb(var(--primary-color));
  background: rgba(var(--primary-color), 0.1);
  box-shadow: 0 0 20px rgba(var(--primary-color), 0.15);
}
.product-card .diamond {
  font-size: 11px;
  color: rgb(var(--primary-color));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  position: relative;
}
.product-card .amount {
  font-size: 20px;
  font-weight: 800;
  color: rgb(var(--white));
  position: relative;
}
.product-card .price {
  font-size: 14px;
  color: var(--success);
  font-weight: 700;
  margin-top: 6px;
  position: relative;
}
.product-card .badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--danger), #f97316);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 0 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== STAT CARDS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.stat-card {
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(var(--primary-color)), #3b82f6);
}
.stat-card .stat-icon { font-size: 24px; margin-bottom: 6px; }
.stat-card .stat-value { font-size: 22px; font-weight: 800; color: rgb(var(--primary-color)); }
.stat-card .stat-label { font-size: 12px; color: var(--body-color); margin-top: 2px; }

/* ===== WHY CHOOSE US ===== */
.why-choose-us-section {
  padding: 60px 0;
}
.cmn-list .item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color1);
}
.cmn-list .item:last-child { border-bottom: none; }
.cmn-list .icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(var(--primary-color), 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgb(var(--primary-color));
}
.cmn-list .text-box h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.cmn-list .text-box p {
  font-size: 14px;
  color: var(--body-color);
  margin-bottom: 0;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  padding: 60px 0;
}
.testimonial-box {
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
}
.testimonial-box:hover {
  border-color: rgb(var(--primary-color));
}
.testimonial-box .img-box {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-color3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.testimonial-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-box .text-box { flex: 1; }
.testimonial-box .quote-icon {
  color: rgb(var(--primary-color));
  font-size: 20px;
  margin-bottom: 10px;
}
.testimonial-box .reviews {
  display: flex;
  gap: 2px;
  color: #FCDA69;
  font-size: 14px;
  margin-bottom: 12px;
}
.testimonial-box .text-box p {
  font-size: 15px;
  color: var(--body-color);
  line-height: 1.6;
  font-style: italic;
}
.testimonial-box .profile-box {
  margin-top: 16px;
}
.testimonial-box .profile-title h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.testimonial-box .profile-title p {
  font-size: 13px;
  color: var(--body-color);
  margin-bottom: 0;
  font-style: normal;
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.section-subtitle-sm {
  font-size: 14px;
  color: var(--body-color);
  margin-bottom: 20px;
}

/* ===== CAMPAIGN / FLASH SALE ===== */
.campaign-section {
  padding: 60px 0;
}
.campaign-box {
  background: linear-gradient(135deg, var(--bg-color2), rgba(var(--primary-color), 0.05));
  border: 1px solid rgba(var(--primary-color), 0.2);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}
.campaign-box .countdown {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}
.campaign-box .countdown-item {
  background: var(--bg-color3);
  border: 1px solid var(--border-color1);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 60px;
}
.campaign-box .countdown-item .number {
  font-size: 24px;
  font-weight: 800;
  color: rgb(var(--primary-color));
  display: block;
}
.campaign-box .countdown-item .label {
  font-size: 11px;
  color: var(--body-color);
  text-transform: uppercase;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 60px 0;
}
.newsletter-section-inner {
  background: linear-gradient(135deg, var(--bg-color2), rgba(var(--primary-color), 0.08));
  border: 1px solid rgba(var(--primary-color), 0.2);
  border-radius: 16px;
  padding: 40px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-form .form-control {
  flex: 1;
  border-radius: 8px;
  height: 50px;
}
.subscribe-btn {
  padding: 12px 28px;
  background: rgb(var(--primary-color));
  color: rgb(var(--white));
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.subscribe-btn:hover {
  background: rgb(var(--primary-color), 0.8);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer-section {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color1);
}
.footer-widget {
  margin-bottom: 24px;
}
.footer-widget .widget-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: rgb(var(--white));
}
.footer-widget ul li {
  margin-bottom: 8px;
}
.footer-widget ul li a {
  font-size: 14px;
  color: var(--body-color);
  transition: var(--transition);
}
.footer-widget ul li a:hover {
  color: rgb(var(--primary-color));
  padding-left: 6px;
}
.footer-widget .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--body-color);
  margin-bottom: 10px;
}
.footer-widget .contact-item i {
  color: rgb(var(--primary-color));
  width: 20px;
}
.social-box {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-box li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color3);
  border: 1px solid var(--border-color1);
  border-radius: 8px;
  color: var(--body-color);
  font-size: 16px;
  transition: var(--transition);
}
.social-box li a:hover {
  background: rgb(var(--primary-color));
  border-color: rgb(var(--primary-color));
  color: rgb(var(--white));
}
.footer-bottom {
  border-top: 1px solid var(--border-color1);
  padding-top: 24px;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: var(--body-color);
}

/* ===== CART MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 200;
  backdrop-filter: blur(6px);
}
.modal {
  background: var(--bg-color2);
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 28px 20px;
  animation: modalUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.modal-handle {
  width: 40px;
  height: 4px;
  background: var(--border-color1);
  border-radius: 2px;
  margin: 0 auto 20px;
}
.modal-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
  color: rgb(var(--white));
}

/* ===== ORDER LIST ===== */
.order-list { display: flex; flex-direction: column; gap: 12px; }
.order-item {
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 12px;
  padding: 16px;
}
.order-item .order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.order-item .order-id { font-weight: 700; color: rgb(var(--primary-color)); }
.order-item .order-details { font-size: 13px; color: var(--body-color); }
.order-item .order-details p { margin-bottom: 3px; }

/* ===== STATUS BADGES ===== */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-pending { background: rgba(245, 158, 11, 0.12); color: var(--warning); }
.status-approved { background: rgba(0, 255, 136, 0.12); color: var(--success); }
.status-completed { background: rgba(0, 255, 136, 0.12); color: var(--success); }
.status-rejected { background: rgba(239, 68, 68, 0.12); color: var(--danger); }
.status-failed { background: rgba(239, 68, 68, 0.12); color: var(--danger); }

/* ===== TAB BUTTONS ===== */
.tab-btn {
  padding: 8px 16px;
  background: var(--bg-color3);
  border: 1px solid var(--border-color1);
  border-radius: 20px;
  color: var(--body-color);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Urbanist', sans-serif;
}
.tab-btn:hover { border-color: rgb(var(--primary-color)); color: rgb(var(--white)); }
.tab-btn.active { background: rgb(var(--primary-color)); border-color: rgb(var(--primary-color)); color: white; }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--body-color);
}
.empty-state .empty-icon { font-size: 56px; margin-bottom: 14px; opacity: 0.4; }

/* ===== PAYMENT INFO ===== */
.payment-info {
  background: linear-gradient(135deg, var(--bg-color2), rgba(var(--primary-color), 0.05));
  border: 1px solid rgba(var(--primary-color), 0.2);
  border-radius: 12px;
  padding: 20px;
  margin: 16px 0;
  text-align: center;
}
.payment-number {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, rgb(var(--primary-color)), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  margin: 8px 0;
}
.payment-name {
  color: var(--body-color);
  font-size: 14px;
}
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 20px;
  background: rgb(var(--primary-color));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.copy-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(var(--primary-color), 0.3); }

/* ===== CHECKOUT SUMMARY ===== */
.checkout-summary {
  background: linear-gradient(135deg, var(--bg-color2), rgba(var(--primary-color), 0.05));
  border: 1px solid rgba(var(--primary-color), 0.2);
  border-radius: 12px;
  padding: 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color1);
}
.summary-row:last-child { border-bottom: none; }
.summary-row.total {
  font-size: 18px;
  font-weight: 800;
  color: rgb(var(--primary-color));
  padding-top: 12px;
  margin-top: 4px;
  border-top: 2px solid rgb(var(--primary-color));
  border-bottom: none;
}

/* ===== FEATURES ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature-card {
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgb(var(--primary-color));
  transform: translateY(-4px);
}
.feature-card .feature-icon { font-size: 32px; margin-bottom: 10px; }
.feature-card .feature-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: rgb(var(--white)); }
.feature-card .feature-desc { font-size: 13px; color: var(--body-color); }

/* ===== HOW IT WORKS ===== */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step-number {
  width: 40px;
  height: 40px;
  background: rgb(var(--primary-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(var(--primary-color), 0.3);
}
.step-content { flex: 1; }
.step-title { font-weight: 700; font-size: 15px; margin-bottom: 2px; color: rgb(var(--white)); }
.step-desc { font-size: 13px; color: var(--body-color); }

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-list { display: flex; flex-direction: column; gap: 12px; }
.testimonial-card {
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 12px;
  padding: 16px;
}
.testimonial-header { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: rgb(var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: rgb(var(--white)); }
.testimonial-rating { font-size: 12px; color: #FCDA69; }
.testimonial-text { font-size: 13px; color: var(--body-color); line-height: 1.5; }

/* ===== OFFER BANNER ===== */
.offer-scroll {
  background: linear-gradient(135deg, rgba(var(--primary-color), 0.1), rgba(var(--primary-color), 0.05));
  border: 1px solid rgba(var(--primary-color), 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.offer-tag {
  background: rgb(var(--primary-color));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
}
.offer-text { font-size: 13px; color: var(--body-color); }

/* ===== LOADING ===== */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color1);
  border-top-color: rgb(var(--primary-color));
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 34, 53, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1000;
  backdrop-filter: blur(8px);
}
.loading-text { color: var(--body-color); font-size: 14px; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-color2);
  color: rgb(var(--white));
  padding: 14px 24px;
  border-radius: 10px;
  border: 1px solid var(--border-color1);
  box-shadow: var(--shadow2);
  z-index: 1001;
  animation: toastIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 500;
  max-width: 90%;
  text-align: center;
}
.toast.success { border-color: var(--success); color: var(--success); }
.toast.error { border-color: var(--danger); color: var(--danger); }
@keyframes toastIn {
  from { transform: translateX(-50%) translateY(30px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* ===== BOTTOM NAV ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(36, 41, 61, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color1);
  padding: 8px 0 env(safe-area-inset-bottom, 8px);
  z-index: 100;
}
.nav-items {
  display: flex;
  justify-content: space-around;
  max-width: 480px;
  margin: 0 auto;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 20px;
  color: var(--body-color);
  font-size: 11px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border-radius: 10px;
}
.nav-item:hover { color: rgb(var(--white)); }
.nav-item.active { color: rgb(var(--primary-color)); }
.nav-item .nav-icon { font-size: 22px; }

/* ===== PAGE PADDING ===== */
.page-content { padding-bottom: 90px; }

/* ===== SECTION ===== */
.section { padding: 16px 0; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-accent { color: rgb(var(--primary-color)); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--body-color); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-color1); }
::-webkit-scrollbar-thumb { background: var(--border-color1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgb(var(--primary-color)); }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.animate-fade { animation: fadeIn 0.4s ease; }
.animate-pulse { animation: pulse 2s infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  h1 { font-size: 36px; line-height: 50px; }
  h2 { font-size: 28px; }
}
@media (max-width: 767px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .slider-box { padding: 30px 20px; min-height: 280px; }
  .slider-box .title { font-size: 28px; }
  .newsletter-form { flex-direction: column; }
  .testimonial-box { flex-direction: column; text-align: center; }
}
@media (max-width: 575px) {
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-card { padding: 14px 8px; }
  .stat-card .stat-value { font-size: 18px; }
}
