* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fb;
  color: #111827;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  border: none;
}

/* CONTAINER */

.container {
  width: min(1200px, 92%);
  margin: auto;
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(15,23,42,.08);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo::before,
.logo::after {
  content: none !important;
  display: none !important;
}

.brand-logo {
  width: 180px !important;
  height: auto !important;
  object-fit: contain !important;
}

#themeToggle,
.theme-toggle {
  display: none !important;
}

#mainNav {
  display: flex;
  align-items: center;
  gap: 24px;
}

#mainNav a {
  color: #111827;
  font-weight: 800;
  font-size: 15px;
  transition: .25s;
}

#mainNav a:hover,
#mainNav a.active {
  color: #2563eb;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 900;
}

.nav-icons a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-toggle {
  display: none;
  background: #2563eb;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 22px;
  cursor: pointer;
}

/* HERO */

.hero {
  margin-top: 25px;
  margin-bottom: 75px;
}

.hero-wrap {
  position: relative;
  width: 100%;
  height: 505px;
  border-radius: 34px;
  overflow: hidden;
  background: #061735;
  box-shadow: 0 24px 70px rgba(15,23,42,.16);
}

.hero-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-buttons {
  position: absolute;
  left: 2%;
  bottom: 115px;
  display: flex;
  gap: 16px;
  z-index: 5;
}

.hero-btn {
  padding: 15px 30px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 900;
  transition: .25s;
}

.hero-btn.primary {
  background: #2563eb;
  color: white;
}

.hero-btn.secondary {
  background: white;
  color: #111827;
}

.hero-btn:hover {
  transform: translateY(-3px);
}

/* MAIN */

.page-main {
  padding-top: 42px;
}

.categories {
  margin-top: 45px;
}

.products {
  margin-top: 75px;
}

.section-head {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.subtitle,
.section-label {
  color: #2563eb;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
}

.section-head h2 {
  font-size: 42px;
  font-weight: 900;
}

.section-head h2 span {
  color: #2563eb;
}

/* CATEGORY */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.category-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15,23,42,.08);
  transition: .28s;
}

.category-card:hover {
  transform: translateY(-7px);
}

.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.category-info {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-info h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.category-info p {
  color: #6b7280;
}

/* PRODUCT GRID */

.grid-products,
.product-grid,
#phonesGrid,
#gamingGrid,
#pcGrid,
#othersGrid,
#featuredGrid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, 230px) !important;
  justify-content: center !important;
  gap: 24px !important;
}

/* PRODUCT CARDS */

.shop-card {
  width: 230px !important;
  min-height: 430px !important;
  background: white;
  border-radius: 24px !important;
  overflow: hidden;
  padding: 14px !important;
  box-shadow: 0 14px 36px rgba(15,23,42,.08);
  transition: .28s;
  cursor: pointer;
}

.shop-card:hover {
  transform: translateY(-6px);
}

.shop-image {
  width: 100% !important;
  height: 210px !important;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 14px !important;
  background: #eef2ff;
}

.shop-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.shop-tag {
  display: inline-block;
  background: #dbeafe;
  color: #2563eb;
  padding: 6px 11px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.shop-card h3 {
  font-size: 18px !important;
  margin-bottom: 8px;
  color: #061735;
}

.shop-card p {
  color: #6b7280;
  line-height: 1.45;
  margin-bottom: 12px;
  font-size: 13px !important;
}

.shop-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}

.shop-price {
  font-size: 20px !important;
  font-weight: 900;
  color: #061735;
}

.shop-rating {
  color: #2563eb;
  font-weight: 900;
  font-size: 12px;
}

.shop-qty,
.qty-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 10px;
}

.shop-qty button,
.qty-controls button {
  width: 30px !important;
  height: 30px !important;
  border-radius: 10px;
  background: #2563eb;
  color: white;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.shop-btn,
.favorite-btn,
.checkout-btn,
.secondary-btn,
.full-btn {
  width: 100%;
  cursor: pointer;
  border-radius: 14px !important;
  padding: 11px !important;
  font-size: 13px !important;
  font-weight: 900;
  transition: .25s;
  margin-top: 7px;
}

.shop-btn,
.checkout-btn {
  background: #2563eb;
  color: white;
}

.favorite-btn {
  background: #eef2ff;
  color: #2563eb;
}

.secondary-btn {
  background: #e5e7eb;
  color: #111827;
}

.shop-btn:hover,
.favorite-btn:hover,
.checkout-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

button:disabled,
.disabled-link {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: auto;
}

/* PAGE HERO */

.premium-page-hero {
  background: linear-gradient(135deg, #061735, #0d2d67);
  border-radius: 34px;
  overflow: hidden;
  min-height: 310px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  padding: 50px;
  color: white;
  margin-bottom: 42px;
  box-shadow: 0 24px 70px rgba(15,23,42,.16);
}

.premium-page-hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 18px;
  font-weight: 900;
}

.premium-page-hero p {
  color: rgba(255,255,255,.82);
  line-height: 1.9;
  max-width: 520px;
  font-size: 17px;
}

.premium-page-hero img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

/* FILTERS */

.premium-filter-bar {
  background: white;
  padding: 24px;
  border-radius: 26px;
  margin-bottom: 48px;
  box-shadow: 0 14px 40px rgba(15,23,42,.07);
}

.search-input {
  width: 100%;
  border: none;
  outline: none;
  background: #f3f4f6;
  padding: 17px 18px;
  border-radius: 16px;
  font-size: 15px;
  margin-bottom: 18px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  background: #eef2ff;
  color: #2563eb;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 900;
  cursor: pointer;
  transition: .25s;
}

.chip.active,
.chip:hover {
  background: #2563eb;
  color: white;
}

/* BOXES */

.why-section,
.trust-strip {
  margin-top: 75px;
}

.why-box,
.empty-box,
.about-card,
.contact-card {
  background: white;
  border-radius: 34px;
  padding: 45px;
  box-shadow: 0 16px 45px rgba(15,23,42,.07);
}

.why-box h2,
.about-card h2 {
  font-size: 40px;
  margin-bottom: 18px;
  color: #061735;
}

.why-box p,
.about-card p {
  color: #6b7280;
  line-height: 1.9;
}

.why-grid,
.trust-grid,
.contact-box {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-grid div,
.trust-card {
  background: #f3f4f6;
  padding: 24px;
  border-radius: 22px;
  font-weight: 900;
  text-align: center;
  font-size: 18px;
}

.trust-card {
  background: white;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  box-shadow: 0 14px 40px rgba(15,23,42,.06);
}

/* CART */

.cart-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 30px;
}

.cart-items-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  background: white;
  border-radius: 26px;
  padding: 20px;
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  align-items: center;
  gap: 18px;
  box-shadow: 0 14px 40px rgba(15,23,42,.06);
}

.cart-item img {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  object-fit: cover;
}

.cart-summary {
  background: white;
  border-radius: 28px;
  padding: 30px;
  height: fit-content;
  position: sticky;
  top: 110px;
  box-shadow: 0 16px 45px rgba(15,23,42,.08);
}

.cart-summary h3 {
  font-size: 30px;
  margin-bottom: 22px;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 18px;
}

.summary-line strong {
  font-size: 24px;
}

/* CHECKOUT FIXED */

.checkout-section {
  margin-top: 50px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.checkout-products-box,
.checkout-form-box {
  background: white;
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 16px 45px rgba(15,23,42,.07);
}

.checkout-form-box h3 {
  font-size: 34px;
  margin-bottom: 24px;
  color: #061735;
}

.checkout-form-box form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.double-input {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-form-box input,
.checkout-form-box textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f3f4f6;
  padding: 16px;
  border-radius: 16px;
  font-size: 15px;
}

.checkout-form-box textarea {
  min-height: 120px;
  resize: none;
}

.discount-box {
  display: flex;
  gap: 12px;
}

.discount-box input {
  flex: 1;
}

.discount-box button {
  background: #2563eb;
  color: white;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 900;
  cursor: pointer;
}

#discountMessage {
  font-weight: 900;
  font-size: 14px;
}

.checkout-summary {
  background: #f9fafb;
  border-radius: 22px;
  padding: 22px;
  margin-top: 4px;
}

.checkout-summary .summary-line {
  margin-bottom: 15px;
}

.checkout-summary .summary-line.total {
  border-top: 1px solid #d1d5db;
  padding-top: 16px;
  margin-top: 12px;
}

.cod-box {
  background: #eef2ff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.cod-box span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.cod-box h4 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #061735;
}

.cod-box p {
  color: #6b7280;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.checkout-product {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.checkout-product img {
  width: 100px;
  height: 100px;
  border-radius: 18px;
  object-fit: cover;
}

.checkout-product h4 {
  font-size: 19px;
  margin-bottom: 8px;
  color: #061735;
}

.checkout-product p {
  color: #6b7280;
}

.checkout-product strong {
  color: #2563eb;
  font-size: 20px;
}

/* PRODUCT PAGE */

.single-product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  background: white;
  border-radius: 34px;
  padding: 35px;
  box-shadow: 0 16px 45px rgba(15,23,42,.08);
}

.product-gallery-main {
  width: 100%;
  height: 520px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: #eef2ff;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  overflow-x: auto;
}

.gallery-thumbnails img {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  object-fit: cover;
  cursor: pointer;
  border: 3px solid transparent;
}

.gallery-thumbnails img.active {
  border-color: #2563eb;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  z-index: 5;
}

.gallery-arrow.left {
  left: 16px;
}

.gallery-arrow.right {
  right: 16px;
}

.premium-product-info h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #061735;
}

.premium-product-info h2 {
  font-size: 44px;
  color: #2563eb;
  margin-bottom: 18px;
}

.premium-product-info p {
  color: #6b7280;
  line-height: 1.9;
  margin-bottom: 20px;
}

.product-specs-box {
  background: #f9fafb;
  border-radius: 24px;
  padding: 22px;
  margin-bottom: 25px;
}

.spec-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e7eb;
}

/* ADMIN LOGIN */

.admin-login-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #061735, #0d2d67);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.admin-login-box {
  width: 100%;
  max-width: 440px;
  background: white;
  border-radius: 34px;
  padding: 45px;
  box-shadow: 0 30px 90px rgba(0,0,0,.3);
  text-align: center;
}

.admin-login-box h1 {
  font-size: 42px;
  color: #061735;
  margin-bottom: 8px;
}

.admin-login-box p {
  color: #6b7280;
  margin-bottom: 25px;
}

.admin-login-box form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-login-box input {
  border: none;
  outline: none;
  background: #f3f4f6;
  padding: 17px 18px;
  border-radius: 16px;
}

.admin-login-box button {
  background: #2563eb;
  color: white;
  padding: 17px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 900;
}

#adminLoginError {
  color: #dc2626;
  font-weight: 900;
  margin-top: 15px;
}

/* ADMIN PANEL */

.admin-body {
  background: #f5f7fb;
}

.admin-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: linear-gradient(180deg, #061735, #0d2d67);
  color: white;
  padding: 30px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.admin-sidebar h1 {
  font-size: 34px;
  margin-bottom: 5px;
}

.admin-sidebar p {
  color: #93c5fd;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 28px;
  font-size: 13px;
}

.admin-sidebar button,
.admin-sidebar a {
  width: 100%;
  display: block;
  background: rgba(255,255,255,.1);
  color: white;
  padding: 15px;
  border-radius: 16px;
  margin-bottom: 12px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  transition: .25s;
}

.admin-sidebar button:hover,
.admin-sidebar a:hover {
  background: white;
  color: #061735;
}

.admin-main {
  padding: 35px;
}

.admin-section {
  display: none;
}

.admin-section.active {
  display: block;
}

.admin-section h2 {
  font-size: 42px;
  color: #061735;
  margin-bottom: 8px;
}

.admin-subtitle {
  color: #6b7280;
}

.admin-stats-grid,
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.admin-stat-card,
.admin-card,
.admin-order-card,
.premium-admin-form {
  background: white;
  border-radius: 28px;
  padding: 25px;
  box-shadow: 0 14px 40px rgba(15,23,42,.07);
}

.admin-stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-stat-card span {
  font-size: 34px;
}

.admin-stat-card h3 {
  font-size: 30px;
  color: #061735;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f3f4f6;
  padding: 16px;
  border-radius: 16px;
  font-size: 15px;
}

.form-grid textarea {
  grid-column: 1 / -1;
  min-height: 110px;
  resize: none;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-weight: 900;
}

.admin-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.admin-actions button,
.admin-buttons button {
  background: #2563eb;
  color: white;
  padding: 14px 20px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 900;
}

.admin-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
  background: #eef2ff;
  margin-bottom: 16px;
}

.admin-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.admin-card p {
  color: #2563eb;
  font-size: 24px;
  font-weight: 900;
}

.admin-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.image-preview-box {
  background: #f9fafb;
  border-radius: 24px;
  padding: 18px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.image-preview-box img {
  width: 105px;
  height: 105px;
  border-radius: 20px;
  object-fit: cover;
  background: #e5e7eb;
}

.admin-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
}

.admin-search-input {
  border: none;
  outline: none;
  background: white;
  padding: 16px;
  border-radius: 16px;
  width: 280px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 16px 40px rgba(37,211,102,.35);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* TOAST */

.toast {
  position: fixed;
  top: 22px;
  right: 22px;
  background: #2563eb;
  color: white;
  padding: 16px 22px;
  border-radius: 16px;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(37,99,235,.3);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}

.toast.show {
  opacity: 1;
}

/* FOOTER */

.footer {
  margin-top: 75px;
  background: linear-gradient(135deg, #061735, #0d2d67);
  color: white;
  padding-top: 60px;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 45px;
}

.footer h3 {
  font-size: 38px;
  margin-bottom: 18px;
}

.footer h4 {
  color: #60a5fa;
  font-size: 20px;
  margin-bottom: 22px;
}

.footer-brand p,
.footer-contact p,
.footer-services p,
.footer-links a {
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-bottom {
  margin-top: 55px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,.65);
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .single-product-page,
  .checkout-layout,
  .cart-layout,
  .premium-page-hero,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }

  #mainNav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
    display: none;
    box-shadow: 0 15px 35px rgba(15,23,42,.08);
    border-radius: 0 0 24px 24px;
  }

  #mainNav.show {
    display: flex;
  }

  .brand-logo {
    width: 145px !important;
  }

  .hero-wrap {
    height: 360px;
  }

  .hero-buttons {
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: 90%;
    justify-content: center;
  }

  .section-head h2,
  .premium-page-hero h1 {
    font-size: 34px;
  }

  .premium-page-hero {
    padding: 35px 25px;
    text-align: center;
  }

  .footer-content,
  .form-grid,
  .double-input {
    grid-template-columns: 1fr;
  }

  .cart-item,
  .checkout-product {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cart-item img,
  .checkout-product img {
    margin: auto;
  }

  .admin-main {
    padding: 22px;
  }

  .admin-list-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-search-input {
    width: 100%;
  }
}

/* =========================
   FINAL GAMING HERO + SAFETY FIXES
========================= */

.logo::before,
.logo::after{
  content:none !important;
  display:none !important;
}

#themeToggle,
.theme-toggle{
  display:none !important;
}

.brand-logo{
  width:180px !important;
  height:auto !important;
  object-fit:contain !important;
}

.hero-text span{
  color:#2563eb;
  font-weight:900;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-size:14px;
  display:inline-block;
  margin-bottom:8px;
}

.hero-image{
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-image img{
  width:100%;
  max-height:300px;
  object-fit:contain;
}

.grid-products,
.product-grid,
#phonesGrid,
#gamingGrid,
#pcGrid,
#othersGrid,
#featuredGrid{
  display:grid !important;
  grid-template-columns:repeat(auto-fit,230px) !important;
  justify-content:center !important;
  gap:24px !important;
}

.shop-card{
  width:230px !important;
  min-height:430px !important;
  border-radius:24px !important;
  padding:14px !important;
  overflow:hidden !important;
}

.shop-image{
  width:100% !important;
  height:210px !important;
  border-radius:18px !important;
  overflow:hidden !important;
  margin-bottom:14px !important;
}

.shop-image img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
}

.shop-card h3{
  font-size:18px !important;
}

.shop-card p{
  font-size:13px !important;
  line-height:1.45 !important;
}

.shop-price{
  font-size:20px !important;
}

.shop-btn,
.favorite-btn{
  padding:11px !important;
  font-size:13px !important;
  border-radius:14px !important;
}

.shop-qty button{
  width:30px !important;
  height:30px !important;
}

@media(max-width:850px){
  .checkout-layout,
  .double-input{
    grid-template-columns:1fr !important;
  }

  .brand-logo{
    width:145px !important;
  }
}


/* =========================
   FINAL MOBILE HERO FIX
========================= */

@media (max-width: 850px) {

  .hero-wrap{
      width:100% !important;
      height:auto !important;
      min-height:unset !important;
      border-radius:28px !important;
      overflow:hidden !important;
      background:transparent !important;
      padding:0 !important;
      display:flex !important;
      align-items:center !important;
      justify-content:center !important;
      box-shadow:0 16px 40px rgba(15,23,42,.10) !important;
  }

  .hero-wrap img{
      width:100% !important;
      height:auto !important;
      object-fit:cover !important;
      display:block !important;
      border-radius:28px !important;
      background:transparent !important;
      padding:0 !important;
  }

  .hero-buttons{
      width:100% !important;
      left:0 !important;
      bottom:4px !important;
      transform:none !important;
      display:flex !important;
      justify-content:center !important;
      gap:10px !important;
      padding:0 14px !important;
  }

  .hero-btn{
      flex:0 0 auto !important;
      min-width:112px !important;
      max-width:124px !important;
      padding:9px 13px !important;
      font-size:12px !important;
      border-radius:12px !important;
  }

}


/* FIX GAMING MOBILE TO MATCH OTHER CATEGORY PAGES */

@media (max-width:850px){

  body{
    min-height:100vh !important;
    overflow-y:auto !important;
  }

  .premium-page-hero{
    width:100% !important;
    min-height:auto !important;
    height:auto !important;
    display:flex !important;
    flex-direction:column !important;
    text-align:center !important;
    padding:35px 22px 28px !important;
    margin-bottom:32px !important;
    border-radius:28px !important;
    overflow:visible !important;
  }

  .premium-page-hero h1{
    font-size:42px !important;
    line-height:1.1 !important;
    margin-bottom:18px !important;
  }

  .premium-page-hero p{
    font-size:17px !important;
    line-height:1.8 !important;
    margin-bottom:24px !important;
  }

  .hero-image{
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
  }

  .hero-image img{
    width:100% !important;
    max-height:260px !important;
    object-fit:contain !important;
    border-radius:0 !important;
  }

  .premium-filter-bar{
    margin-top:0 !important;
    margin-bottom:55px !important;
  }

  .products{
    margin-top:55px !important;
    padding-bottom:80px !important;
  }

  .whatsapp-float{
    right:18px !important;
    bottom:22px !important;
    z-index:999999 !important;
  }

}
