body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  background: #1e1e2f;
  /* Fixed: Removed pure black */
}

.navbar {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  /* Premium Gradient */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1100;
  backdrop-filter: blur(10px);
}

.left-side {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
}

.title {
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.official {
  color: #0099ff;
  font-size: 12px;
  margin: 0;
  padding: 0;
  display: block;
  margin-top: 2px;
}

.tagline {
  flex: 1 1 auto;
  text-align: center;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 16px;
  color: transparent;
  background: linear-gradient(90deg, #93c5fd, #e879f9, #34d399, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 300% 100%;
  animation: shimmer 6s linear infinite;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0 12px;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.login-btn {
  background: #0099ff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

/* Online Support Button Styles */
.support-btn {
  background: linear-gradient(135deg, #00c853, #0099ff, #ff6b35);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
  position: relative;
  overflow: hidden;
}

.support-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.support-btn:hover::before {
  left: 100%;
}

.support-btn:hover {
  background: linear-gradient(135deg, #ff6b35, #0099ff, #00c853);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 200, 83, 0.6);
}

.support-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.support-btn:active {
  transform: translateY(0);
}



/* ------- UPDATED TAB STYLING ------- */

.tab-bar {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  overflow-x: auto;
  background: #23232b;
  z-index: 10;
}


.tab {
  background-color: #2a2935;
  border: none;
  color: #8e8e93;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.tab .icon {
  font-size: 18px;
  color: #8e8e93;
  transition: color 0.3s ease;
}

.tab.active {
  background-color: #38384a;
  color: #0099ff;
}

.tab.active .icon {
  color: #0099ff;
}

.tab:hover {
  background-color: #3a3a44;
  color: #ffffff;
}

.tab:hover .icon {
  color: #ffffff;
}

/* ----------------------------------- */

.sidebar {
  position: fixed;
  left: -300px;
  top: 0;
  height: 100vh;
  width: 250px;
  background: #1e1d26;
  color: white;
  transition: left 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1000;
}

.sidebar.active {
  left: 0;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.sidebar-title {
  font-size: 18px;
  color: #aaa;
}

.sidebar-item {
  margin: 10px 0;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
}

.sidebar-item:hover,
.sidebar-item.active {
  background: #2c2b3a;
  color: #0099ff;
}

.sidebar-buttons {
  margin-top: 20px;
}

.sidebar-btn {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #aaa;
  background: transparent;
  color: #aaa;
  border-radius: 4px;
  cursor: pointer;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup.show {
  display: flex;
}

/* Online Support Popup - Smaller Size with Fixed Input */
.popup-content {
  background: #2c2b3a;
  padding: 30px 30px 30px 30px;
  border-radius: 16px;
  text-align: center;
  color: white;
  width: 350px;
  max-width: 85vw;
  max-height: 70vh;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow-y: auto;
}

/* Better Input Row - Fixed Size */
.input-row {
  display: flex;
  margin-top: 20px;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  height: 44px;
  /* Fixed height */
}

.input-row input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  background: #23222e;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  height: 44px;
  /* Fixed height */
  box-sizing: border-box;
  resize: none;
  overflow: hidden;
}

.input-row input::placeholder {
  color: #888;
}

.input-row input:focus {
  background: #2a2935;
  box-shadow: inset 0 0 0 2px #0099ff;
}

.input-row button {
  padding: 12px 20px;
  border: none;
  background: #0099ff;
  color: white;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
  height: 44px;
  /* Fixed height */
  box-sizing: border-box;
  white-space: nowrap;
}

.input-row button:hover {
  background: #0077cc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 153, 255, 0.4);
}

.input-row button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 153, 255, 0.4);
}

/* Popup Content Styling */
.popup-content h2 {
  margin-bottom: 12px;
  font-size: 1.8em;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 600;
}

.popup-content p {
  margin-bottom: 6px;
  font-size: 1em;
  color: #ccc;
  line-height: 1.4;
}

/* Close Button */
.popup-content .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: #aaa;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.popup-content .close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .popup-content {
    width: 90vw;
    padding: 25px 20px 25px 20px;
    max-height: 75vh;
  }

  .popup-content h2 {
    font-size: 1.6em;
  }

  .input-row {
    height: 40px;
  }

  .input-row input {
    padding: 10px 14px;
    font-size: 16px;
    height: 40px;
  }

  .input-row button {
    padding: 10px 16px;
    font-size: 16px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    width: 95vw;
    padding: 20px 15px 20px 15px;
  }

  .popup-content h2 {
    font-size: 1.4em;
  }

  .input-row {
    flex-direction: column;
    gap: 8px;
    height: auto;
  }

  .input-row input,
  .input-row button {
    border-radius: 8px;
    width: 100%;
    height: 40px;
  }
}










.featured-section {
  padding: 20px;
  background-color: #1e1d26;
  font-family: 'Segoe UI', sans-serif;
  color: white;
}

.featured-section h2 {
  margin-bottom: 20px;
}

.card-row {
  background: #771f00;
  /* reddish brown */
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  position: relative;
}

.card-row .left {
  flex: 1;
}

.card-row .right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.card-row h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.item-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.item-info img {
  width: 40px;
  height: 40px;
}

.item-info p {
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.item-info.multi div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-btn {
  background: #00c700;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.right img {
  max-width: 120px;
}

.badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}









body {
  background-color: #1e1e2f;
  font-family: Arial, sans-serif;
  color: white;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  background: #23232b !important;
}

.card {
  background-color: #2c2c3e;
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
  padding: 20px;
  text-align: center;
  position: relative;
  min-height: 288px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  box-sizing: border-box;
}

.card img {
  width: 90px;
  height: 90px;
  margin-bottom: 12px;
}

.name {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
}

.quantity {
  font-size: 16px;
  color: #fdd835;
  margin-bottom: 10px;
}

.price-btn {
  background-color: #00c853;
  border: none;
  color: white;
  padding: 6px 12px;
  width: 90%;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 18px;
  font-size: 14px;
}

.info-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #007aff;
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 11px;
  line-height: 16px;
}


.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 100, 0.3);
}

.price-btn:hover {
  background-color: #00e676;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr !important;
    gap: 10px;
    padding: 10px;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .featured-section .card-row {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .card {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    min-height: 260px;
    padding: 15px !important;
  }

  .card img {
    width: 80px;
    height: 80px;
  }

  .price-btn {
    width: 85%;
    padding: 5px 10px;
    font-size: 13px;
  }

  /* Force single column for all product sections */
  .featured-section .card-row {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .featured-section .card-box {
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    flex: none !important;
  }
}

.navbar {
  padding: 10px 15px;
}

.tab-bar {
  padding: 8px 15px;
  overflow-x: auto;
}

.tab {
  padding: 8px 12px;
  font-size: 14px;
  white-space: nowrap;
}

.sidebar {
  width: 100%;
  position: static;
  margin-top: 20px;
}

.main-content {
  margin-left: 0;
  padding: 10px;
}



.support-btn {
  padding: 10px 16px;
  font-size: 14px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }
}

@media (min-width: 1025px) {
  .container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
}

/* Mobile specific - 768px and below */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr !important;
    gap: 15px;
    padding: 15px;
  }

  .card {
    max-width: 100% !important;
    margin: 0 auto;
    min-height: 260px;
  }

  .card img {
    width: 80px;
    height: 80px;
  }

  .price-btn {
    width: 85%;
    padding: 5px 10px;
    font-size: 13px;
  }

  /* Force single column for featured section */
  .featured-section .card-row {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: center !important;
  }

  .featured-section .card-box {
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto 20px auto !important;
    flex: none !important;
    display: block !important;
  }

  .featured-section .card-box:nth-child(2) {
    margin-top: 20px !important;
  }
}

@media (min-width: 1400px) {
  .container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .featured-section .card-row {
    width: 390px !important;
    min-width: 390px !important;
    max-width: 390px !important;
    height: 2061px !important;
    min-height: 2061px !important;
    max-height: 2061px !important;
    margin: 0 auto 24px auto !important;
    flex-direction: column;
    align-items: center;
  }

  .featured-section .card-row .left,
  .featured-section .card-row .right {
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box;
  }
}

@media (max-width: 500px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 8px;
    gap: 8px;
  }

  .tab-bar {
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px 4px;
    font-size: 13px;
  }

  .tab {
    font-size: 13px;
    padding: 8px 8px;
  }

  .card-row {
    flex-direction: column !important;
    align-items: center;
    padding: 10px 4px;
    gap: 10px;
  }

  .card-row .left,
  .card-row .right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
  }

  .card-row .right img {
    max-width: 80vw;
    height: auto;
  }

  .card-row h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  .item-info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .item-info img {
    width: 36px;
    height: 36px;
  }

  .price-btn {
    font-size: 16px;
    padding: 10px 0;
    margin-bottom: 18px;
  }

  .badge {
    position: static;
    margin-top: 8px;
  }

  .container {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 18px !important;
    padding: 0 2vw !important;
  }

  .card {
    width: 98vw !important;
    max-width: 99vw !important;
    min-width: 0 !important;
    min-height: 260px !important;
    padding: 18px 6px 0 6px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .card img,
  .card .emoji-img {
    width: 60px !important;
    height: 60px !important;
  }

  .price-btn {
    font-size: 15px;
    padding: 10px 0;
  }

  .featured-section h2,
  .container .name,
  .card .name {
    font-size: 1.1em !important;
  }
}

html {
  scroll-behavior: smooth;
}

.footer {
  background: #23232b !important;
  color: #fff;
  padding: 64px 0 32px 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-top: 40px;
  min-height: 280px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 22px;
}

.footer-social a {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.footer-apps {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-apps a {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-apps a:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #00c853;
}

.footer-copyright {
  text-align: center;
  font-size: 18px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 16px 24px 16px;
    min-height: auto;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 0;
  }

  .footer-social {
    justify-content: center;
    width: 100%;
    gap: 16px;
    font-size: 18px;
    flex-wrap: wrap;
  }

  .footer-apps {
    justify-content: center;
    width: 100%;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
  }

  .footer-apps a img {
    height: 40px !important;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    max-width: 300px;
    margin: 20px auto;
    padding: 0 10px;
  }

  .footer-links a {
    font-size: 16px !important;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.2s;
    text-align: center;
    display: block;
  }

  .footer-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .footer-copyright {
    font-size: 14px;
  }
}


.menu-icon {
  font-size: 2.2em;
  cursor: pointer;
  margin-right: 8px;
}

@media (min-width: 900px) {
  .card-row {
    flex-direction: row !important;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
  }

  .card-row .left,
  .card-row .right {
    width: 50% !important;
    align-items: flex-start;
    text-align: left;
    padding: 0 10px;
  }

  .tab-bar {
    display: none !important;
  }

  .sidebar.active~.tab-bar,
  .tab-bar.show {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    background: #23232b;
    z-index: 10;
  }
}

@media (max-width: 899px) {
  .card-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px;
    padding: 10px 4px;
  }

  .card-row .left,
  .card-row .right {
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
  }
}

.sidebar ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.sidebar ul li,
.sidebar ul li a {
  color: #e0e6f0 !important;
  background: none !important;
  border-radius: 8px !important;
  font-size: 18px !important;
  margin: 6px 0 !important;
  padding: 8px 8px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.sidebar-item.active,
.sidebar-item.active a {
  background: #222b44 !important;
  color: #00c853 !important;
}

.sidebar-item a:hover {
  color: #00c853 !important;
}

.sidebar hr {
  display: none !important;
}

.sidebar ul li::marker,
.sidebar ul li:before {
  display: none !important;
  content: none !important;
}

.tab,
.tab:visited,
.tab:active,
.tab-bar a,
.tab-bar a:visited,
.tab-bar a:active {
  text-decoration: none !important;
  color: inherit;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, background 0.2s;
}

.whatsapp-float:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  background: #20ba5a;
}

.whatsapp-float img {
  display: block;
  width: 48px;
  height: 48px;
}

/* Floating Cart Button */
.cart-float {
  position: fixed;
  bottom: 90px;
  /* Position just above the WhatsApp button */
  right: 24px;
  z-index: 998;
  /* Just below WhatsApp button */
  background: #007bff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
}

.cart-float:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  background: #0069d9;
}

.cart-icon {
  display: block;
  font-size: 24px;
  color: white;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff0000;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card .name {
  text-align: center;
  width: 100%;
}

.featured-section .card-container {
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 24px 16px;
  gap: 16px;
}

.featured-section .card-row {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.featured-section .card-box {
  flex: 1 1 0;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 32px 0 #000, 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 60px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  width: 650px;
  height: 400px;
  margin: 0 auto;
}

.featured-section .card-box:hover {
  box-shadow: 0 16px 48px 0 #000, 0 4px 24px rgba(0, 0, 0, 0.16);
  transform: scale(1.03);
  z-index: 2;
}

.featured-section .card-box .price-btn {
  margin-top: auto;
  font-size: 1rem;
  padding: 8px 20px;
  height: 38px;
  min-width: 100px;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .featured-section .card-row {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .featured-section .card-box {
    width: 90%;
    max-width: 400px;
    height: 300px;
    margin: 0 auto;
    flex: none;
    padding: 30px 16px;
  }

  .featured-section .card-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .featured-section .card-box .item-info {
    margin: 15px 0;
  }

  .featured-section .card-box .price-btn {
    margin-top: 15px;
    font-size: 16px;
    padding: 10px 20px;
  }

  /* Force single card per row on mobile */
  .featured-section .card-row .card-box:not(:first-child) {
    margin-top: 20px;
  }
}

@media (max-width: 200px) {
  .featured-section .card-row {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .featured-section .card-box {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    flex: none !important;
  }
}

@media (min-width: 1025px) {
  .featured-section .card-row {
    flex-direction: row;
    gap: 32px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
  }

  .featured-section .card-box {
    width: calc(50% - 16px);
    max-width: 400px;
    height: 350px;
    margin: 8px;
    flex: 1;
  }
}

@media (max-width: 600px) {
  .tab-bar {
    display: flex !important;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    background: #23232b;
  }

  .tab-bar .tab {
    min-width: 120px;
    flex: 0 0 auto;
    text-align: center;
  }
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 240px;
  height: 100vh;
  background: #23232b;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.sidebar.active {
  transform: translateX(0);
}

.main-content {
  margin-left: 0;
  transition: margin-left 0.3s;
}

@media (min-width: 900px) {
  .sidebar.active~.main-content {
    margin-left: 240px;
  }
}

.page-content {
  margin-left: 0;
  transition: margin-left 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  box-shadow: none;
}

.sidebar.active~.page-content {
  margin-left: 240px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
}

/* Remove any overlay/dark background for sidebar */
.overlay {
  display: none !important;
}

.sidebar-tab-bar,
.mobile-tab-bar {
  display: none !important;
}

.sidebar.active .sidebar-tab-bar {
  display: flex !important;
}

.top-tab-bar {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  overflow-x: auto;
  background: #23232b;
  z-index: 1090;
  position: sticky;
  top: 0;
}

.top-tab-bar .tab {
  margin: 0 14px;
}

/* Professional Responsive Layout */

/* Desktop Layout (≥769px) */
@media (min-width: 769px) {
  body {
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: 'Segoe UI', sans-serif;
    background: #000 !important;
    min-height: 100vh;
  }

  .navbar {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1100;
    width: 100%;
  }

  .navbar .left-side {
    padding: 17px 20px;
  }

  .navbar .support-btn {
    margin-right: 20px;
  }

  .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px;
    min-height: 280px;
    border-radius: 12px;
    background: #2a2a2a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card .name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
  }

  .card .quantity {
    font-size: 16px;
    margin: 15px 0;
    color: white;
  }

  .card img {
    width: 100px;
    height: 100px;
    margin: 15px auto;
    display: block;
  }

  .card .price-btn {
    width: 90%;
    height: 40px;
    background: linear-gradient(135deg, #00c853, #0099ff);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
    margin: 0 auto;
    display: block;
  }

  .card .price-btn:hover {
    background: linear-gradient(135deg, #0099ff, #00c853);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 200, 83, 0.4);
  }

  .featured-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .featured-section .card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }

  .featured-section .card-box {
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    background: #2a2a2a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    min-height: 260px;
  }

  .featured-section .card-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
  }

  .featured-section .card-box {
    width: calc(50% - 10px);
    max-width: 400px;
    padding: 20px;
    border-radius: 12px;
    background: #2a2a2a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    min-height: 260px;
  }
}

/* Mobile Layout (≤768px) */
@media (max-width: 768px) {
  body {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
  }

  /* Mobile Navbar Optimization */
  .navbar {
    padding: 8px 12px !important;
    gap: 8px !important;
  }

  .navbar .left-side {
    gap: 8px !important;
    align-items: center !important;
  }

  .menu-icon {
    font-size: 1.5rem !important;
    padding: 8px !important;
    margin-right: 8px !important;
  }

  .navbar .logo {
    width: 40px !important;
    height: 40px !important;
    margin-right: 8px !important;
  }

  .navbar .title {
    font-size: 1.4rem !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  .navbar .official {
    font-size: 0.9rem !important;
    margin: 0 !important;
    line-height: 1.2 !important;
  }

  .support-btn {
    font-size: 1rem !important;
    padding: 8px 12px !important;
    margin: 0 !important;
    border-radius: 6px !important;
  }

  .container {
    padding: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    gap: 10px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
  }

  .card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    padding: 15px !important;
    min-height: 200px !important;
    border-radius: 12px !important;
    background: #2a2a2a !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  }



  .card .name {
    font-size: 16px !important;
    font-weight: bold !important;
    margin-bottom: 12px !important;
    color: white !important;
  }

  .card .quantity {
    font-size: 14px !important;
    margin: 12px 0 !important;
    color: white !important;
  }

  .card img {
    width: 70px !important;
    height: 70px !important;
    margin: 10px auto !important;
    display: block !important;
  }

  .card .price-btn {
    width: 90% !important;
    height: 40px !important;
    background: linear-gradient(135deg, #00c853, #0099ff) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 3px 8px rgba(0, 200, 83, 0.3) !important;
    margin: 0 auto !important;
    display: block !important;

    .card .price-btn:hover {
      background: linear-gradient(135deg, #0099ff, #00c853) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 16px rgba(0, 200, 83, 0.4) !important;
    }

    .featured-section {
      padding: 20px 100px !important;
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .featured-section .card-row {
      padding: 0 !important;
      margin: 0 0 20px 0 !important;
      width: 100% !important;
      display: flex !important;
      justify-content: center !important;
    }

    .featured-section .card-box {
      width: 100% !important;
      max-width: 400px !important;
      margin: 0 auto !important;
      box-sizing: border-box !important;
      padding: 24px !important;
      border-radius: 12px !important;
      min-height: 280px !important;
      background: #2a2a2a !important;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
    }

    .featured-section .card-box h3 {
      font-size: 22px !important;
      margin-bottom: 20px !important;
    }

    .featured-section .card-box .price-btn {
      height: 48px !important;
      font-size: 18px !important;
      border-radius: 8px !important;
    }

    .navbar {
      padding: 0 !important;
      width: 100vw !important;
      box-sizing: border-box !important;
      background: #000 !important;
      position: sticky !important;
      top: 0 !important;
      z-index: 1100 !important;
    }

    .navbar .left-side {
      padding: 12px 20px !important;
    }

    .navbar .support-btn {
      margin-right: 20px !important;
    }

    /* Remove all default spacing */
    * {
      box-sizing: border-box !important;
    }

    .main-content {
      padding: 0 100px !important;
      margin: 0 !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-content {
      padding: 0 100px !important;
      margin: 0 !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }
  }

  /* Desktop Container Max-Width */
  @media (min-width: 769px) {
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .featured-section {
      max-width: 1200px;
      margin: 0 auto;
    }
  }

  @media (max-width: 768px) {
    .navbar {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      justify-content: space-between !important;
      padding: 6px 8px !important;
      gap: 0 !important;
      min-height: 48px !important;
    }

    .navbar .left-side {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      gap: 6px !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    .menu-icon {
      font-size: 1.5em !important;
      padding: 0 !important;
      margin: 0 4px 0 0 !important;
      line-height: 1 !important;
    }

    .navbar .logo {
      width: 32px !important;
      height: 32px !important;
      margin: 0 4px 0 0 !important;
      padding: 0 !important;
    }

    .navbar .title {
      font-size: 1.1em !important;
      margin: 0 !important;
      padding: 0 !important;
      line-height: 1.1 !important;
      font-weight: bold !important;
      display: inline !important;
    }

    .navbar .official {
      font-size: 0.95em !important;
      margin: 0 0 0 4px !important;
      padding: 0 !important;
      line-height: 1 !important;
      display: inline !important;
      color: #2196f3 !important;
      font-weight: 500 !important;
    }

    .support-btn,
    .login-btn {
      font-size: 1em !important;
      padding: 6px 12px !important;
      margin: 0 0 0 8px !important;
      border-radius: 5px !important;
      white-space: nowrap !important;
      min-width: unset !important;
      height: 36px !important;
      align-self: center !important;
    }
  }



  /* ===== COMPREHENSIVE MOBILE RESPONSIVE CSS ===== */

  /* Mobile First Approach - Base styles for mobile */
  @media (max-width: 768px) {

    /* Global mobile styles */
    * {
      box-sizing: border-box !important;
    }

    body {
      margin: 0 !important;
      padding: 0 !important;
      width: 100% !important;
      max-width: 100% !important;
      overflow-x: hidden !important;
      font-size: 16px !important;
      line-height: 1.4 !important;
    }

    /* Mobile Navbar - Compact and touch-friendly */
    .navbar {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      justify-content: space-between !important;
      padding: 8px 12px !important;
      min-height: 56px !important;
      background: #111 !important;
      position: sticky !important;
      top: 0 !important;
      z-index: 1100 !important;
      width: 100% !important;
    }

    .navbar .left-side {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      gap: 8px !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    .menu-icon {
      font-size: 2.2em !important;
      padding: 8px !important;
      margin: 0 !important;
      line-height: 1 !important;
      background: none !important;
      border: none !important;
      color: white !important;
      cursor: pointer !important;
    }

    .navbar .logo {
      width: 36px !important;
      height: 36px !important;
      margin: 0 8px 0 0 !important;
      padding: 0 !important;
    }

    .navbar .title {
      font-size: 1.2em !important;
      margin: 0 !important;
      padding: 0 !important;
      line-height: 1.2 !important;
      font-weight: bold !important;
      color: white !important;
      white-space: nowrap !important;
    }

    .navbar .official {
      font-size: 0.9em !important;
      margin: 0 0 0 6px !important;
      padding: 0 !important;
      line-height: 1 !important;
      color: #2196f3 !important;
      font-weight: 500 !important;
      white-space: nowrap !important;
    }

    .support-btn,
    .login-btn {
      font-size: 0.9em !important;
      padding: 8px 12px !important;
      margin: 0 0 0 8px !important;
      border-radius: 6px !important;
      white-space: nowrap !important;
      min-width: unset !important;
      height: 40px !important;
      align-self: center !important;
      background: #1976d2 !important;
      color: white !important;
      border: none !important;
      font-weight: 500 !important;
    }

    /* Mobile Tab Bar - Scrollable and touch-friendly */
    .tab-bar {
      display: flex !important;
      flex-wrap: nowrap !important;
      justify-content: flex-start !important;
      width: 100% !important;
      overflow-x: auto !important;
      background: #23232b !important;
      padding: 8px 12px !important;
      gap: 8px !important;
      position: sticky !important;
      top: 56px !important;
      z-index: 1090 !important;
    }

    .tab {
      background-color: #2a2935 !important;
      border: none !important;
      color: #8e8e93 !important;
      padding: 10px 16px !important;
      border-radius: 8px !important;
      font-size: 14px !important;
      cursor: pointer !important;
      display: flex !important;
      align-items: center !important;
      gap: 6px !important;
      white-space: nowrap !important;
      min-width: 120px !important;
      flex: 0 0 auto !important;
      text-align: center !important;
      transition: all 0.3s ease !important;
    }

    .tab.active {
      background-color: #38384a !important;
      color: #0099ff !important;
    }

    .tab:hover {
      background-color: #3a3a44 !important;
      color: #ffffff !important;
    }

    /* Mobile Container - Single column layout */
    .container {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 16px !important;
      padding: 16px !important;
      max-width: 100% !important;
      margin: 0 !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }

    /* Mobile Cards - Full width and touch-friendly */
    .card {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
      box-sizing: border-box !important;
      padding: 20px !important;
      min-height: 280px !important;
      border-radius: 12px !important;
      background: #2a2a2a !important;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: space-between !important;
    }

    .card .name {
      font-size: 18px !important;
      font-weight: bold !important;
      margin-bottom: 15px !important;
      color: white !important;
      text-align: center !important;
    }

    .card .quantity {
      font-size: 16px !important;
      margin: 15px 0 !important;
      color: #fdd835 !important;
      text-align: center !important;
    }

    .card img {
      width: 80px !important;
      height: 80px !important;
      margin: 15px auto !important;
      display: block !important;
    }

    .card .price-btn {
      width: 90% !important;
      height: 44px !important;
      background: linear-gradient(135deg, #00c853, #0099ff) !important;
      color: white !important;
      border: none !important;
      border-radius: 8px !important;
      font-size: 16px !important;
      font-weight: bold !important;
      cursor: pointer !important;
      transition: all 0.3s ease !important;
      box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3) !important;
      margin: 0 auto !important;
      display: block !important;
    }

    .card .price-btn:hover {
      background: linear-gradient(135deg, #0099ff, #00c853) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 16px rgba(0, 200, 83, 0.4) !important;
    }

    /* Mobile Featured Section - 2 cards per row on larger mobile */
    .featured-section {
      padding: 16px !important;
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .featured-section h2 {
      font-size: 24px !important;
      margin-bottom: 20px !important;
      text-align: center !important;
    }

    .featured-section .card-row {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 16px !important;
      margin-bottom: 16px !important;
      padding: 0 !important;
      background: none !important;
    }

    .featured-section .card-box {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
      box-sizing: border-box !important;
      padding: 20px !important;
      border-radius: 12px !important;
      min-height: 260px !important;
      background: #2a2a2a !important;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: space-between !important;
    }

    .featured-section .card-box h3 {
      font-size: 20px !important;
      margin-bottom: 15px !important;
      text-align: center !important;
    }

    .featured-section .card-box .item-info {
      margin: 15px 0 !important;
      justify-content: center !important;
    }

    .featured-section .card-box .price-btn {
      height: 44px !important;
      font-size: 16px !important;
      border-radius: 8px !important;
      margin-top: auto !important;
    }

    /* Mobile Section Headers */
    h2 {
      font-size: 24px !important;
      margin: 30px 0 20px 0 !important;
      text-align: center !important;
      color: white !important;
    }

    /* Mobile Emoji Section */
    .emoji-section .card {
      min-height: 240px !important;
    }

    .emoji-section .card div[style*="font-size: 48px"] {
      font-size: 36px !important;
      margin: 15px auto !important;
    }

    /* Mobile Footer */
    .footer {
      padding: 24px 16px 16px 16px !important;
      margin-top: 30px !important;
    }

    .footer-top {
      flex-direction: column !important;
      gap: 20px !important;
      align-items: center !important;
      padding: 0 16px !important;
    }

    .footer-social {
      justify-content: center !important;
      width: 100% !important;
      gap: 16px !important;
      font-size: 18px !important;
    }

    .footer-apps {
      justify-content: center !important;
      width: 100% !important;
      gap: 12px !important;
    }

    .footer-links {
      flex-direction: column !important;
      gap: 12px !important;
      align-items: center !important;
    }

    .footer-copyright {
      font-size: 14px !important;
    }

    /* Mobile AI Chatbot */
    .ai-chatbot {
      width: 60vw !important;
      height: 60vh !important;
      bottom: 10px !important;
      right: 5vw !important;
      left: 5vw !important;
    }

    .chat-header {
      padding: 12px 16px !important;
    }

    .chat-title h3 {
      font-size: 16px !important;
    }

    .chat-title p {
      font-size: 12px !important;
    }

    .chat-messages {
      padding: 12px !important;
    }

    .chat-input {
      padding: 12px !important;
    }

    .chat-input input {
      padding: 12px 16px !important;
      font-size: 16px !important;
    }

    .chat-input button {
      padding: 12px 16px !important;
      font-size: 18px !important;
    }

    /* Mobile WhatsApp Float */
    .whatsapp-float {
      bottom: 20px !important;
      right: 20px !important;
      padding: 12px !important;
    }

    .whatsapp-float img {
      width: 40px !important;
      height: 40px !important;
    }

    /* Mobile Sidebar */
    .sidebar {
      width: 280px !important;
      left: -280px !important;
    }

    .sidebar.active {
      left: 0 !important;
    }

    .sidebar-logo {
      padding: 20px !important;
    }

    .sidebar-item {
      padding: 12px 20px !important;
      font-size: 16px !important;
    }

    .sidebar-buttons {
      padding: 20px !important;
    }

    .sidebar-btn {
      padding: 12px 20px !important;
      font-size: 16px !important;
      margin-top: 12px !important;
    }

    /* Mobile Popup */
    .popup-content {
      width: 90% !important;
      max-width: 350px !important;
      padding: 24px 20px !important;
    }

    .popup-content h2 {
      font-size: 24px !important;
    }

    .popup-content p {
      font-size: 16px !important;
    }

    .input-row input {
      padding: 12px !important;
      font-size: 16px !important;
    }

    .input-row button {
      padding: 12px 20px !important;
      font-size: 16px !important;
    }
  }

  /* Tablet Styles (769px - 1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
    .container {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 20px !important;
      padding: 20px !important;
    }

    .featured-section .card-row {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 20px !important;
    }

    .navbar {
      padding: 12px 20px !important;
    }

    .tab {
      padding: 12px 18px !important;
      font-size: 15px !important;
    }
  }

  /* Large Mobile Styles (481px - 768px) */
  @media (min-width: 481px) and (max-width: 768px) {
    .featured-section .card-row {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 16px !important;
    }

    .container {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 16px !important;
    }
  }

  /* Small Mobile Styles (≤480px) */
  @media (max-width: 480px) {
    .navbar {
      padding: 6px 8px !important;
      min-height: 48px !important;
    }

    .navbar .left-side {
      gap: 4px !important;
    }

    .menu-icon {
      font-size: 1.5em !important;
      padding: 6px !important;
    }

    .navbar .logo {
      width: 32px !important;
      height: 32px !important;
    }

    .navbar .title {
      font-size: 1.1em !important;
    }

    .navbar .official {
      font-size: 0.8em !important;
    }

    .support-btn,
    .login-btn {
      font-size: 0.8em !important;
      padding: 6px 10px !important;
      height: 36px !important;
    }

    .tab-bar {
      padding: 6px 8px !important;
    }

    .tab {
      padding: 8px 12px !important;
      font-size: 13px !important;
      min-width: 100px !important;
    }

    .container {
      padding: 12px !important;
      gap: 12px !important;
    }

    .card {
      padding: 16px !important;
      min-height: 260px !important;
    }

    .card .name {
      font-size: 16px !important;
    }

    .card .quantity {
      font-size: 14px !important;
    }

    .card img {
      width: 70px !important;
      height: 70px !important;
    }

    .card .price-btn {
      height: 40px !important;
      font-size: 15px !important;
    }

    .featured-section {
      padding: 12px !important;
    }

    .featured-section .card-box {
      padding: 16px !important;
      min-height: 240px !important;
    }

    .featured-section .card-box h3 {
      font-size: 18px !important;
    }

    .featured-section .card-box .price-btn {
      height: 40px !important;
      font-size: 15px !important;
    }

    h2 {
      font-size: 20px !important;
      margin: 24px 0 16px 0 !important;
    }
  }

  /* Landscape Mobile Styles */
  @media (max-width: 768px) and (orientation: landscape) {
    .navbar {
      min-height: 44px !important;
    }

    .tab-bar {
      top: 44px !important;
    }

    .ai-chatbot {
      height: calc(100vh - 80px) !important;
    }
  }

  /* High DPI Mobile Devices */
  @media (-webkit-min-device-pixel-ratio: 2),
  (min-resolution: 192dpi) {
    .card img {
      image-rendering: -webkit-optimize-contrast !important;
      image-rendering: crisp-edges !important;
    }
  }

  /* Touch Device Optimizations */
  @media (hover: none) and (pointer: coarse) {
    .card:hover {
      transform: none !important;
    }

    .card .price-btn:hover {
      transform: none !important;
    }

    .support-btn:hover {
      transform: none !important;
    }

    .tab:hover {
      background-color: #2a2935 !important;
      color: #8e8e93 !important;
    }

    .tab.active:hover {
      background-color: #38384a !important;
      color: #0099ff !important;
    }
  }

  /* Accessibility Improvements */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
    body {
      background-color: #1e1e2f !important;
    }
  }

  /* Print Styles */
  @media print {
    .navbar,
    .tab-bar,
    .sidebar,

    .whatsapp-float {
      display: none !important;
    }

    .container {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 20px !important;
    }

    .card {
      break-inside: avoid !important;
      box-shadow: none !important;
      border: 1px solid #ccc !important;
    }
  }

  /* ===== FEATURED SECTION RESPONSIVE LAYOUT ===== */

  /* Desktop/Laptop (≥769px) - 2 cards per row */
  @media (min-width: 769px) {
    .featured-section .card-row {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 24px !important;
      margin-bottom: 24px !important;
    }

    .featured-section .card-box {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
      padding: 24px !important;
      min-height: 280px !important;
    }
  }

  /* Large Desktop Featured Section */
  @media (min-width: 1400px) {
    .featured-section .card-row {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 32px !important;
    }

    .featured-section .card-box {
      padding: 28px !important;
      min-height: 320px !important;
    }
  }

  /* Tablet Featured Section */
  @media (min-width: 481px) and (max-width: 768px) {
    .featured-section .card-row {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 16px !important;
      margin-bottom: 16px !important;
    }

    .featured-section .card-box {
      padding: 16px !important;
      min-height: 260px !important;
    }
  }

  /* Mobile Featured Section */
  @media (max-width: 480px) {
    .featured-section .card-row {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 12px !important;
      margin-bottom: 12px !important;
    }

    .featured-section .card-box {
      padding: 16px !important;
      min-height: 240px !important;
      width: 100% !important;
      max-width: 100% !important;
    }
  }

  /* ===== NAVBAR RESPONSIVE ===== */

  /* Desktop Navbar */
  @media (min-width: 769px) {
    .navbar {
      padding: 16px 24px;
      gap: 24px;
    }

    .navbar .left-side {
      gap: 20px;
    }

    .navbar .title {
      font-size: 24px;
    }

    .navbar .official {
      font-size: 16px;
    }

    .support-btn {
      font-size: 16px;
      padding: 12px 20px;
    }
  }

  /* Mobile Navbar */
  @media (max-width: 768px) {
    .navbar {
      padding: 12px 16px;
      gap: 12px;
      flex-wrap: wrap;
    }

    .navbar .left-side {
      gap: 12px;
      flex: 1;
    }

    .menu-icon {
      font-size: 20px;
      padding: 8px;
    }

    .navbar .logo {
      width: 32px;
      height: 32px;
    }

    .navbar .title {
      font-size: 18px;
      flex: 1;
    }

    .navbar .official {
      font-size: 12px;
      display: none;
    }

    .support-btn {
      font-size: 14px;
      padding: 8px 12px;
      white-space: nowrap;
    }
  }

  /* ===== TAB BAR RESPONSIVE ===== */

  /* Desktop Tab Bar */
  @media (min-width: 769px) {
    .tab-bar {
      padding: 16px 24px;
      gap: 16px;
      overflow-x: auto;
    }

    .tab {
      padding: 12px 20px;
      font-size: 16px;
      white-space: nowrap;
    }
  }

  /* Mobile Tab Bar */
  @media (max-width: 768px) {
    .tab-bar {
      padding: 12px 16px;
      gap: 8px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .tab {
      padding: 10px 16px;
      font-size: 14px;
      white-space: nowrap;
      min-width: auto;
    }
  }

  /* ===== FOOTER RESPONSIVE ===== */

  /* Desktop Footer */
  @media (min-width: 769px) {
    .footer {
      padding: 40px 24px 20px 24px;
    }

    .footer-top {
      flex-direction: row;
      gap: 40px;
      align-items: center;
    }

    .footer-social {
      gap: 16px;
    }

    .footer-apps {
      gap: 16px;
    }
  }

  /* Mobile Footer */
  @media (max-width: 768px) {
    .footer {
      padding: 24px 16px 16px 16px;
    }

    .footer-top {
      flex-direction: column;
      gap: 24px;
      text-align: center;
    }

    .footer-social {
      gap: 12px;
    }

    .footer-apps {
      gap: 12px;
      flex-direction: column;
    }

    .footer-links {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }
  }

  /* ===== UTILITY CLASSES ===== */

  /* Center alignment for mobile */
  @media (max-width: 768px) {
    .mobile-center {
      text-align: center !important;
    }

    .mobile-stack {
      flex-direction: column !important;
    }

    .mobile-full-width {
      width: 100% !important;
      max-width: 100% !important;
    }
  }

  /* Hide elements on mobile */
  @media (max-width: 480px) {
    .hide-mobile {
      display: none !important;
    }
  }

  /* Show elements only on mobile */
  @media (min-width: 769px) {
    .show-mobile-only {
      display: none !important;
    }
  }

  /* ===== RESPONSIVE DESIGN SYSTEM ===== */

  /* Base Container - Desktop First Approach */
  .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 24px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    background: #23232b !important;
  }

  /* Card Base Styles */
  .card {
    background-color: #2c2c3e;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    text-align: center;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }

  .card img {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
    object-fit: contain;
  }

  .name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
  }

  .quantity {
    font-size: 18px;
    color: #fdd835;
    margin-bottom: 12px;
    font-weight: 600;
  }

  .price-btn {
    background-color: #00c853;
    border: none;
    color: white;
    padding: 12px 16px;
    width: 100%;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 0;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .price-btn:hover {
    background-color: #00e676;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
  }

  /* ===== DESKTOP LAYOUTS ===== */

  /* Large Desktop (1400px+) - 3 cards per row */
  @media (min-width: 1400px) {
    .container {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      padding: 32px;
      max-width: 1600px;
    }

    .card {
      min-height: 320px;
      padding: 24px;
    }

    .card img {
      width: 100px;
      height: 100px;
    }

    .name {
      font-size: 18px;
    }

    .quantity {
      font-size: 20px;
    }

    .price-btn {
      font-size: 18px;
      padding: 14px 20px;
    }
  }

  /* Medium Desktop (1025px - 1399px) - 2-3 cards per row */
  @media (min-width: 1025px) and (max-width: 1399px) {
    .container {
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
      padding: 28px;
      max-width: 1200px;
    }

    .card {
      min-height: 300px;
      padding: 22px;
    }

    .card img {
      width: 90px;
      height: 90px;
    }

    .name {
      font-size: 17px;
    }

    .quantity {
      font-size: 19px;
    }

    .price-btn {
      font-size: 17px;
      padding: 13px 18px;
    }
  }

  /* Small Desktop (769px - 1024px) - 2 cards per row */
  @media (min-width: 769px) and (max-width: 1024px) {
    .container {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      padding: 24px;
      max-width: 900px;
    }

    .card {
      min-height: 280px;
      padding: 20px;
    }

    .card img {
      width: 80px;
      height: 80px;
    }

    .name {
      font-size: 16px;
    }

    .quantity {
      font-size: 18px;
    }

    .price-btn {
      font-size: 16px;
      padding: 12px 16px;
    }
  }

  /* ===== TABLET LAYOUTS ===== */

  /* Large Tablet (481px - 768px) - 2 cards per row */
  @media (min-width: 481px) and (max-width: 768px) {
    .container {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      padding: 16px;
      max-width: 100%;
    }

    .card {
      min-height: 260px;
      padding: 16px;
    }

    .card img {
      width: 70px;
      height: 70px;
    }

    .name {
      font-size: 15px;
    }

    .quantity {
      font-size: 17px;
    }

    .price-btn {
      font-size: 15px;
      padding: 10px 14px;
    }
  }

  /* ===== MOBILE LAYOUTS ===== */

  /* Mobile (320px - 480px) - 1 card per row */
  @media (max-width: 480px) {
    .container {
      grid-template-columns: 1fr !important;
      gap: 12px;
      padding: 12px;
      max-width: 100% !important;
      margin: 0 !important;
    }

    .card {
      min-height: 240px;
      padding: 16px;
      margin: 0 auto;
      max-width: 100% !important;
      width: 100% !important;
    }

    .card img {
      width: 60px;
      height: 60px;
    }

    .name {
      font-size: 14px;
      margin-bottom: 6px;
    }

    .quantity {
      font-size: 16px;
      margin-bottom: 10px;
    }

    .price-btn {
      font-size: 14px;
      padding: 10px 12px;
      width: 100%;
    }

    /* Extra Small Mobile (below 320px) */
    @media (max-width: 320px) {
      .container {
        padding: 8px;
        gap: 8px;
      }

      .card {
        min-height: 220px;
        padding: 12px;
      }

      .card img {
        width: 50px;
        height: 50px;
      }

      .name {
        font-size: 13px;
      }

      .quantity {
        font-size: 15px;
      }

      .price-btn {
        font-size: 13px;
        padding: 8px 10px;
      }
    }

    /* ===== FEATURED SECTION RESPONSIVE ===== */

    /* Desktop Featured Section */
    @media (min-width: 769px) {
      .featured-section .card-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
        margin-bottom: 24px !important;
      }

      .featured-section .card-box {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 24px !important;
        min-height: 280px !important;
      }
    }

    /* Large Desktop Featured Section */
    @media (min-width: 1400px) {
      .featured-section .card-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px !important;
      }

      .featured-section .card-box {
        padding: 28px !important;
        min-height: 320px !important;
      }
    }

    /* Tablet Featured Section */
    @media (min-width: 481px) and (max-width: 768px) {
      .featured-section .card-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        margin-bottom: 16px !important;
      }

      .featured-section .card-box {
        padding: 16px !important;
        min-height: 260px !important;
      }
    }

    /* Mobile Featured Section */
    @media (max-width: 480px) {
      .featured-section .card-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
      }

      .featured-section .card-box {
        padding: 16px !important;
        min-height: 240px !important;
        width: 100% !important;
        max-width: 100% !important;
      }
    }

    /* ===== NAVBAR RESPONSIVE ===== */

    /* Desktop Navbar */
    @media (min-width: 769px) {
      .navbar {
        padding: 16px 24px;
        gap: 24px;
      }

      .navbar .left-side {
        gap: 20px;
      }

      .navbar .title {
        font-size: 24px;
      }

      .navbar .official {
        font-size: 16px;
      }

      .support-btn {
        font-size: 16px;
        padding: 12px 20px;
      }
    }

    /* Mobile Navbar */
    @media (max-width: 768px) {
      .navbar {
        padding: 12px 16px;
        gap: 12px;
        flex-wrap: wrap;
      }

      .navbar .left-side {
        gap: 12px;
        flex: 1;
      }

      .menu-icon {
        font-size: 20px;
        padding: 8px;
      }

      .navbar .logo {
        width: 32px;
        height: 32px;
      }

      .navbar .title {
        font-size: 18px;
        flex: 1;
      }

      .navbar .official {
        font-size: 12px;
        display: none;
      }

      .support-btn {
        font-size: 14px;
        padding: 8px 12px;
        white-space: nowrap;
      }
    }

    /* ===== TAB BAR RESPONSIVE ===== */

    /* Desktop Tab Bar */
    @media (min-width: 769px) {
      .tab-bar {
        padding: 16px 24px;
        gap: 16px;
        overflow-x: auto;
      }

      .tab {
        padding: 12px 20px;
        font-size: 16px;
        white-space: nowrap;
      }
    }

    /* Mobile Tab Bar */
    @media (max-width: 768px) {
      .tab-bar {
        padding: 12px 16px;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      .tab {
        padding: 10px 16px;
        font-size: 14px;
        white-space: nowrap;
        min-width: auto;
      }
    }

    /* ===== FOOTER RESPONSIVE ===== */

    /* Desktop Footer */
    @media (min-width: 769px) {
      .footer {
        padding: 40px 24px 20px 24px;
      }

      .footer-top {
        flex-direction: row;
        gap: 40px;
        align-items: center;
      }

      .footer-social {
        gap: 16px;
      }

      .footer-apps {
        gap: 16px;
      }
    }

    /* Mobile Footer */
    @media (max-width: 768px) {
      .footer {
        padding: 24px 16px 16px 16px;
      }

      .footer-top {
        flex-direction: column;
        gap: 24px;
        text-align: center;
      }

      .footer-social {
        gap: 12px;
      }

      .footer-apps {
        gap: 12px;
        flex-direction: column;
      }

      .footer-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
    }

    /* ===== UTILITY CLASSES ===== */

    /* Center alignment for mobile */
    @media (max-width: 768px) {
      .mobile-center {
        text-align: center !important;
      }

      .mobile-stack {
        flex-direction: column !important;
      }

      .mobile-full-width {
        width: 100% !important;
        max-width: 100% !important;
      }
    }

    /* Hide elements on mobile */
    @media (max-width: 480px) {
      .hide-mobile {
        display: none !important;
      }
    }

    /* Show elements only on mobile */
    @media (min-width: 769px) {
      .show-mobile-only {
        display: none !important;
      }
    }

    /* --- FEATURED SECTION CARD OVERLAP FIX --- */
    .featured-section .card-row {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 24px !important;
      margin-bottom: 24px !important;
      width: 100% !important;
      box-sizing: border-box !important;
      position: static !important;
    }

    @media (max-width: 768px) {
      .featured-section .card-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
      }
    }

    .featured-section .card-box {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
      box-sizing: border-box !important;
      position: static !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: space-between !important;
      background: #2a2a2a !important;
      border: 1px solid #3a3a3a !important;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
    }



    /* PUCKS, COINS, COSMETIC Section Spacing - Move away from body edges */
    h2#pucks,
    h2#coins,
    h2#cosmetic {
      margin: 40px 24px 20px 24px !important;
      padding: 0 16px !important;
      text-align: center !important;
    }

    #pucksContainer,
    #coins+.container,
    #cosmetic+.container {
      padding: 0 24px 24px 24px !important;
      margin: 0 auto !important;
      max-width: 1400px !important;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    @media (max-width: 768px) {

      h2#pucks,
      h2#coins,
      h2#cosmetic {
        margin: 30px 16px 15px 16px !important;
        padding: 0 12px !important;
      }

      #pucksContainer,
      #coins+.container,
      #cosmetic+.container {
        padding: 0 16px 16px 16px !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
      }
    }

    @media (max-width: 480px) {

      h2#pucks,
      h2#coins,
      h2#cosmetic {
        margin: 20px 12px 10px 12px !important;
        padding: 0 8px !important;
      }

      #pucksContainer,
      #coins+.container,
      #cosmetic+.container {
        padding: 0 12px 12px 12px !important;
        grid-template-columns: 1fr;
        gap: 10px;
      }
    }

    /* About Us Button Styles */
    h2#cosmetics {
      margin: 40px 24px 20px 24px !important;
      padding: 0 16px !important;
      text-align: center !important;
    }

    #cosmetics+.container {
      padding: 0 24px 24px 24px !important;
      margin: 0 auto !important;
      max-width: 1400px !important;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    @media (max-width: 768px) {
      h2#cosmetics {
        margin: 30px 16px 15px 16px !important;
        padding: 0 12px !important;
      }

      #cosmetics+.container {
        padding: 0 16px 16px 16px !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
    }

    @media (max-width: 480px) {
      h2#cosmetics {
        margin: 20px 12px 10px 12px !important;
        padding: 0 8px !important;
      }

      #cosmetics+.container {
        padding: 0 12px 12px 12px !important;
        grid-template-columns: 1fr;
        gap: 10px;
      }
    }

    h2#cosmetics {
      margin: 40px 24px 20px 24px !important;
      padding: 0 16px !important;
      text-align: center !important;
    }

    #cosmetics+.container {
      padding: 0 24px 24px 24px !important;
      margin: 0 auto !important;
      max-width: 1400px !important;
    }

    @media (max-width: 768px) {
      h2#cosmetics {
        margin: 30px 16px 15px 16px !important;
        padding: 0 12px !important;
      }

      #cosmetics+.container {
        padding: 0 16px 16px 16px !important;
      }
    }

    @media (max-width: 480px) {
      h2#cosmetics {
        margin: 20px 12px 10px 12px !important;
        padding: 0 8px !important;
      }

      #cosmetics+.container {
        padding: 0 12px 12px 12px !important;
      }
    }

    /* About Us Button Styles */
    .about-btn {
      background: linear-gradient(135deg, #0ea5e9, #6366f1);
      background-size: 200% 200%;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 12px 20px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.6s ease;
      box-shadow: 0 6px 18px rgba(14, 165, 233, 0.35);
      font-family: 'Segoe UI', sans-serif;
      position: relative;
      overflow: hidden;
      margin-right: 32px;
    }

    .about-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s;
    }

    .about-btn:hover::before {
      left: 100%;
    }

    .about-btn:hover {
      transform: translateY(-2px);
      background-position: 100% 0;
      box-shadow: 0 10px 28px rgba(99, 102, 241, 0.45);
    }

    .about-btn:active {
      transform: translateY(0);
      box-shadow: 0 4px 12px rgba(14, 165, 233, 0.35);
    }

    .about-btn:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.5), 0 10px 28px rgba(99, 102, 241, 0.35);
    }

    /* Mobile responsive for About Us button */
    @media (max-width: 768px) {
      .about-btn {
        padding: 10px 16px;
        font-size: 13px;
      }
    }

    @media (max-width: 480px) {
      .about-btn {
        padding: 8px 12px;
        font-size: 12px;
      }
    }



    /* PUCKS section ke card name center me */
    #pucksContainer .card {
      background-color: #2c2c3e;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      position: relative;
      min-height: 280px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      margin: 0;
      box-sizing: border-box;
      transition: all 0.3s ease;
    }

    #pucksContainer .card-header .card-name {
      text-align: center;
      width: 100%;
      margin: 0 auto 8px auto;
      font-weight: bold;
      font-size: 1.1em;
    }

    #pucksContainer .card img {
      width: 80px;
      height: 80px;
      margin-bottom: 12px;
      object-fit: contain;
    }

    #pucksContainer .quantity {
      font-size: 18px;
      color: #fdd835;
      margin-bottom: 12px;
      font-weight: 600;
    }

    #pucksContainer .price-btn {
      background-color: #00c853;
      border: none;
      color: white;
      padding: 12px 16px;
      width: 100%;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      margin-bottom: 0;
      font-size: 16px;
      transition: all 0.3s ease;
    }

    #pucksContainer .price-btn:hover {
      background-color: #00e676;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
    }

    /* Mobile styles for PUCKS section */
    @media (max-width: 480px) {
      #pucksContainer .card {
        min-height: 240px;
        padding: 16px;
        margin: 0 auto;
        max-width: 100% !important;
        width: 100% !important;
      }

      #pucksContainer .card img {
        width: 60px;
        height: 60px;
      }

      #pucksContainer .card-header .card-name {
        text-align: center;
        width: 100%;
        margin: 0 auto 8px auto;
        font-weight: bold;
        font-size: 1.1em;
      }

      #pucksContainer .quantity {
        font-size: 16px;
        margin-bottom: 10px;
      }

      #pucksContainer .price-btn {
        font-size: 14px;
        padding: 10px 12px;
        width: 100%;
      }
    }

    /* Reduce space for Shabab Gaming on mobile devices */
    @media (max-width: 768px) {
      .title {
        line-height: 1.1;
      }

      .official {
        font-size: 10px;
        margin-top: 1px;
      }
    }

    /* Verification badge styles */
    .verification-badge {
      background-color: #10b981;
      color: white;
      border-radius: 50%;
      width: 14px;
      height: 14px;
      font-size: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: 4px;
      vertical-align: middle;
    }