/* GLOBAL STYLES */
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  color: #333;
}

* {
  box-sizing: border-box;
}

/* REMOVE DEFAULT UNDERLINE */
a {
  text-decoration: none !important;
}

/* BRAND (Bookrr) */
.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s;
}

.brand-logo:hover .brand-text {
  transform: scale(1.05);
  filter: brightness(1.3);
}

/* NAV LINKS */
.custom-nav-link {
  color: #ddd !important;
  position: relative;
  padding: 6px 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}

/* HOVER */
.custom-nav-link:hover {
  color: #00c6ff !important;
}

/* ACTIVE LINK (MODERN INDICATOR) */
.active-link {
  color: #00c6ff !important;
}

.active-link::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 80%;
  height: 2px;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  border-radius: 5px;
  animation: slideIn 0.3s ease;
}

/* ANIMATION */
@keyframes slideIn {
  from {
    width: 0%;
    left: 50%;
  }
  to {
    width: 80%;
    left: 10%;
  }
}

/* DROPDOWN */
.dropdown-custom {
  max-height: 350px;
  overflow-y: auto;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.dropdown-item:hover {
  background: #f0f8ff;
}

/* CART */
.cart-icon {
  cursor: pointer;
  font-size: 24px;
  color: #00c6ff;
  transition: 0.3s;
}

.cart-icon:hover {
  transform: scale(1.2);
  color: #00e0ff;
}

/* 🚫 REMOVE underline specifically from navbar */
.navbar a,
.navbar-brand,
.navbar-brand:hover,
.navbar-brand:focus,
.navbar-brand:active {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* SEARCH BAR CONTAINER */
.search-container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 25px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

/* HOVER EFFECT */
.search-container:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* INPUT */
.search-input {
  border: none;
  outline: none;
  background: transparent;
  color: white;
  padding: 5px 10px;
  width: 180px;
}

/* PLACEHOLDER */
.search-input::placeholder {
  color: #ccc;
}

/* ICONS */
.search-icon {
  color: #00c6ff;
  font-size: 14px;
}

.clear-icon {
  color: #aaa;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.clear-icon:hover {
  color: red;
}

/* NAVBAR */
.custom-navbar {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* LOGO */
.brand-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #00c6ff !important;
  text-decoration: none !important;
}

/* LINKS */
.custom-link {
  color: #ddd;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.custom-link:hover {
  color: #00c6ff;
}

/* ACTIVE LINK */
.active-link {
  color: #00c6ff !important;
}

.active-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00c6ff;
}

/* AUTH BUTTONS */
.auth-buttons {
  display: flex;
  gap: 10px;
}

/* LOGIN */
.login-btn {
  border-radius: 20px;
  border: 1px solid #00c6ff;
  color: #00c6ff;
  padding: 5px 15px;
  transition: 0.3s;
}

.login-btn:hover {
  background: #00c6ff;
  color: white;
}

/* REGISTER */
.register-btn {
  border-radius: 20px;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: white;
  padding: 5px 15px;
  border: none;
  transition: 0.3s;
}

.register-btn:hover {
  transform: scale(1.05);
}

/* USER */
.user-profile {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  cursor: pointer;
}

/* CART */
.cart-wrapper {
  font-size: 28px;
  color: #00c6ff;
  cursor: pointer;
  transition: 0.3s;
}

.cart-wrapper:hover {
  transform: scale(1.2);
  color: #00e0ff;
}

/* DROPDOWN */
.dropdown-custom {
  max-height: 300px;
  overflow-y: auto;
  border-radius: 10px;
}

/* FIX LOGIN BUTTON CUT ISSUE */
.auth-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* COMMON BUTTON STYLE */
.login-btn,
.register-btn {
  height: 38px; /* 🔥 FIX HEIGHT */
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center;
  border-radius: 25px;
  padding: 0 18px;
  font-size: 14px;
  line-height: normal; /* 🔥 FIX CUT ISSUE */
  white-space: nowrap;
}

/* LOGIN */
.login-btn {
  /* border: 1px solid #00c6ff;  */
  color: white;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  border: none;
  transition: 0.3s;
}

.login-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 12px rgba(0, 114, 255, 0.5);
}

/* REGISTER */
.register-btn {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: white;
  border: none;
  transition: 0.3s;
}

.register-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 12px rgba(0, 114, 255, 0.5);
}

/* 🔥 CART FIX */
.cart-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 198, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* BIGGER ICON */
.cart-icon {
  font-size: 22px; /* 🔥 bigger */
  color: #00c6ff;
}

/* HOVER EFFECT */
.cart-wrapper:hover {
  background: rgba(0, 198, 255, 0.25);
  transform: scale(1.1);
}

/* BADGE FIX */
.ant-badge-count {
  font-size: 10px !important;
  padding: 0 5px;
}

/* HERO CONTAINER */
.hero-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

/* SLIDER */
.hero-slider {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slide 15s infinite ease-in-out;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SLIDE ANIMATION */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(0);
  }

  33% {
    transform: translateX(-100%);
  }
  63% {
    transform: translateX(-100%);
  }

  66% {
    transform: translateX(-200%);
  }
  96% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(0);
  }
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);

  color: white;
  text-align: center;
  padding: 20px;
}

/* TEXT */
.hero-overlay h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-overlay p {
  font-size: 1rem;
  opacity: 0.9;
}

/* HERO TEXT */
.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
  animation: fadeInUp 1.5s ease;
}

/* BUTTON WRAPPER */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 2s ease;
}

/* COMMON BUTTON */
.hero-btn {
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

/* PRIMARY */
.primary-btn {
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  color: white;
}

.primary-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 15px rgba(255, 126, 95, 0.5);
}

/* SECONDARY */
.secondary-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.secondary-btn:hover {
  background: white;
  color: black;
}

/* ANIMATION */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO CONTAINER */
.hero-container {
  position: relative;
  height: 260px;
  overflow: hidden;
}

/* SLIDER */
.hero-slider {
  display: flex;
  width: 100%;
  height: 100%;
  animation: slide 18s infinite ease-in-out;
}

/* EACH SLIDE */
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

/* 🔥 IMAGE FIX */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 FIX STRETCHING */
  object-position: center;
}

/* ANIMATION */
@keyframes slide {
  0%,
  30% {
    transform: translateX(0);
  }
  33%,
  63% {
    transform: translateX(-100%);
  }
  66%,
  96% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);

  color: white;
  text-align: center;
  padding: 20px;
}

/* TEXT */
.hero-title {
  font-size: 2rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* FOOTER MAIN */
.footer-main {
  background: rgba(0, 0, 0, 0.9);
  color: #ddd;
  padding-top: 40px;
  margin-top: 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* TOP SECTION */
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
}

/* BRAND */
.footer-brand h3 {
  color: #00c6ff;
  font-weight: 700;
}

.footer-brand p {
  max-width: 300px;
  font-size: 14px;
  opacity: 0.8;
}

/* LINKS */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links h5 {
  color: white;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00c6ff;
  transform: translateX(5px);
}

/* SOCIAL */
.footer-social h5 {
  color: white;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

/* SOCIAL ICON FIX */
.social-icons a {
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* BACKGROUND */
.home-products {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 30px 0;
}

/* TOTAL BAR */
.total-bar {
  text-align: center;
  background: #111;
  color: white;
  padding: 10px;
  font-weight: 500;
}

.total-bar span {
  color: #00c6ff;
  font-weight: 700;
}

/* SECTION */
.product-row {
  margin-bottom: 40px;
  padding: 0 20px;
}

/* HEADER */
.row-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  color: white;
}

.row-header h3 {
  margin: 0;
}

.row-header span {
  cursor: pointer;
  color: #00c6ff;
  font-size: 14px;
}

.row-header span:hover {
  text-decoration: underline;
}

/* HORIZONTAL SCROLL */
.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 10px;
}

/* REMOVE SCROLLBAR */
.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

/* CARD */
.scroll-card {
  min-width: 200px;
  background: white;
  border-radius: 10px;
  padding: 8px;
  transition: 0.3s;
}

/* HOVER */
.scroll-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ROOT CARD */
.pcard-root {
  width: 100%;
  max-width: 280px;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

/* HOVER EFFECT */
.pcard-root:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* IMAGE WRAPPER */
.pcard-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

/* IMAGE FIX (IMPORTANT) */
.pcard-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 prevents stretch */
  transition: 0.4s ease;
}

/* IMAGE ZOOM */
.pcard-root:hover .pcard-img {
  transform: scale(1.08);
}

/* CONTENT */
.pcard-content {
  padding: 10px;
  flex-grow: 1;
}

/* TITLE */
.pcard-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
  height: 38px;
  overflow: hidden;
}

/* PRICE */
.pcard-price {
  font-size: 16px;
  font-weight: 700;
  color: #0072ff;
  margin-bottom: 5px;
}

/* DESCRIPTION */
.pcard-desc {
  font-size: 12px;
  color: #666;
  height: 32px;
  overflow: hidden;
}

/* ACTION BUTTONS */
.pcard-actions {
  display: flex;
  border-top: 1px solid #eee;
}

/* COMMON BUTTON */
.pcard-btn {
  flex: 1;
  padding: 8px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}

/* VIEW BUTTON */
.view-btn {
  background: #f1f1f1;
}

.view-btn:hover {
  background: #ddd;
}

/* CART BUTTON */
.cart-btn {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: white;
}

.cart-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(0, 114, 255, 0.5);
}

/* ===== TOTAL BAR ===== */
.home-total-bar {
  text-align: center;
  background: #ffffff;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  padding: 12px;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.home-total-bar span {
  color: #0072ff;
  font-weight: 700;
}

/* ===== MAIN WRAPPER ===== */
.home-main {
  background: #f5f7fb; /* light clean bg */
  padding: 25px 15px;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
  cursor: pointer;
  transition: 0.3s;
}

.section-title:hover {
  color: #0072ff;
}

/* ===== PRODUCT ROW ===== */
.product-row {
  margin-bottom: 35px;
}

/* ===== HORIZONTAL SCROLL (TOP SECTIONS ONLY) ===== */
.horizontal-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 5px;
  justify-content: center;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

/* FIX CARD WIDTH */
.scroll-card {
  flex: 0 0 auto;
  min-width: 220px;
  max-width: 250px;
}

/* ===== ALL PRODUCTS GRID ===== */
.all-products-section {
  margin-top: 25px;
}

/* GRID FIX (NO OVERLAP EVER) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

/* ===== LOAD MORE ===== */
.load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.load-more-btn {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  font-size: 14px;
  transition: 0.3s;
}

.load-more-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 114, 255, 0.4);
}

/* ===== RESPONSIVE FIX ===== */
@media (max-width: 480px) {
  .section-title {
    font-size: 16px;
  }

  .scroll-card {
    min-width: 160px;
    max-width: 180px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
  }

  .pcard-root {
    max-width: 180px;
  }

  .home-main {
    padding: 15px 10px;
  }

  .brand-logo {
    font-size: 1.4rem;
  }

  .custom-navbar .navbar-nav {
    gap: 5px;
  }

  .auth-buttons {
    gap: 5px;
  }

  .login-btn,
  .register-btn {
    padding: 5px 10px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 18px;
  }

  .scroll-card {
    min-width: 180px;
    max-width: 220px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }

  .pcard-root {
    max-width: 200px;
  }

  .brand-logo {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .pcard-root {
    max-width: 300px;
  }

  .scroll-card {
    min-width: 250px;
    max-width: 280px;
  }

  .brand-logo {
    font-size: 1.8rem;
  }
}

/* ================= LOGIN PAGE ================= */

/* PAGE BACKGROUND */
.login-page {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;

  /* 🔥 FIXED: premium dark gradient */
  /*background: linear-gradient(135deg, #141e30, #243b55);*/
  background: #020617;
  padding: 40px 15px;
}

/* CARD */
.login-card {
  width: 100%;
  max-width: 420px;
  padding: 30px;

  border-radius: 16px;
  backdrop-filter: blur(18px);

  /* 🔥 cleaner glass */
  background: rgba(255, 255, 255, 0.08);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  text-align: center;
}

/* INPUT */
.login-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;

  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);

  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.login-form input::placeholder {
  color: #bbb;
}

/* BUTTON */
.login-btn-main {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  border: none;

  /* 🔥 premium gradient */
  background: linear-gradient(45deg, #00c6ff, #005bea);
  color: white;
  font-weight: 600;
}

/* DIVIDER */
.divider span {
  background: rgba(0, 0, 0, 0.7);
}

/* WHATSAPP */
.whatsapp-btn {
  width: 100%;
  padding: 10px;
  border-radius: 25px;
  border: none;

  background: #1ebe5d;
  color: white;
  font-weight: 600;
}

/* ================= REGISTER PAGE ================= */

/* ROOT */
.reg-page-root {
  min-height: 100vh;

  /* 🔥 SAME FAMILY AS LOGIN */
  background: linear-gradient(135deg, #141e30, #243b55);
}

/* BG */
.reg-bg {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* OVERLAY */
.reg-bg::before {
  content: "";
  position: absolute;
  inset: 0;

  /* 🔥 softer overlay */
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
}

/* CARD */
.reg-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  color: #f1f1f1;
}

/* INPUT */
.reg-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
}

.reg-input::placeholder {
  color: #bbb;
}

/* BUTTON */
.reg-btn-primary {
  background: linear-gradient(45deg, #00c6ff, #005bea);
  color: white;
}

/* DIVIDER */
.reg-divider span {
  background: rgba(0, 0, 0, 0.7);
}

/* LINK */
.reg-login-link span {
  color: #00c6ff;
}

/* ================= CONTACT PAGE ================= */

.cnt-main-wrapper {
  background: linear-gradient(180deg, #eef2f7, #e2e8f0);
  padding: 40px 15px;
}

/* CARDS */
.cnt-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.cnt-card {
  background: white;
  padding: 20px;
  width: 220px;
  text-align: center;
  border-radius: 14px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.cnt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* FLEX LAYOUT */
.cnt-flex {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: stretch;
}

/* FORM */
.cnt-form {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 25px;
  border-radius: 14px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* INPUTS */
.cnt-form input,
.cnt-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;

  border-radius: 10px;
  border: 1px solid #d1d5db;

  transition: 0.2s;
}

.cnt-form input:focus,
.cnt-form textarea:focus {
  border-color: #0072ff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 114, 255, 0.15);
}

/* BUTTON */
.cnt-form button {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  border: none;

  background: linear-gradient(45deg, #00c6ff, #005bea);
  color: white;
  font-weight: 600;

  transition: 0.3s;
}

.cnt-form button:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4);
}

/* INFO PANEL */
.cnt-info {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: 25px;
  border-radius: 14px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cnt-info-box p {
  margin-bottom: 12px;
  font-size: 14px;
  color: #444;
}

/* FAQ */
.cnt-faq {
  margin-top: 40px;
}

.cnt-faq h3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

/* FAQ ITEM */
.cnt-faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 15px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

/* HOVER */
.cnt-faq-item:hover {
  transform: translateY(-2px);
}

/* QUESTION */
.cnt-faq-q {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}

/* ANSWER */
.cnt-faq-a {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* ACTIVE */
.cnt-faq-item.active {
  border-left: 4px solid #005bea;
  background: #f8fafc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cnt-flex {
    flex-direction: column;
  }

  .cnt-card {
    width: 100%;
  }
}

.cnt-click {
  cursor: pointer;
  transition: 0.3s;
}

/* ================= USER INFO CARD ================= */

.user-info-card {
  width: 100%;
  max-width: 420px;
  margin: 20px auto;

  border-radius: 16px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  color: #fff;

  transition: 0.3s;
}

.user-info-card:hover {
  transform: translateY(-5px);
}

/* HEADER */
.user-info-header {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 15px 20px;

  background: linear-gradient(45deg, #00c6ff, #0072ff);
}

.user-info-header h4 {
  margin: 0;
  font-weight: 600;
}

.user-icon {
  font-size: 24px;
}

/* BODY */
.user-info-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ROW */
.info-row {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 10px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.info-row:hover {
  background: rgba(255, 255, 255, 0.12);
}

.info-icon {
  color: #00c6ff;
  font-size: 18px;
}

/* FOOTER */
.user-info-footer {
  padding: 15px;
  text-align: center;
}

/* BUTTON */
.edit-btn {
  display: inline-block;
  padding: 10px 20px;

  border-radius: 25px;
  text-decoration: none;

  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: white;
  font-weight: 600;

  transition: 0.3s;
}

.edit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 114, 255, 0.5);
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .user-info-card {
    margin: 15px;
  }

  .user-info-body {
    padding: 15px;
  }

  .info-row span {
    font-size: 14px;
  }
}

/* ================= DASHBOARD ================= */

.dashboard-container {
  display: grid;
  grid-template-columns: 240px 1fr 260px;
  gap: 20px;
  padding: 20px;

  background: linear-gradient(180deg, #0f2027, #203a43);
}

/* SIDEBAR */
.dashboard-sidebar {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* MAIN */
.dashboard-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(135deg, #020617, #020617 60%, #050a1f);
}

/* RIGHT PANEL */
.dashboard-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* CARD */
.dash-card {
  padding: 18px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);

  text-align: center;
  color: white;

  transition: 0.3s;
}

.dash-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ICON */
.dash-icon {
  font-size: 26px;
  color: #00c6ff;
  margin-bottom: 10px;
}

/* TEXT */
.dash-card h5 {
  margin: 5px 0;
}

.dash-card p {
  font-size: 13px;
  opacity: 0.8;
}

/* 📱 RESPONSIVE */
@media (max-width: 992px) {
  .dashboard-container {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    order: 1;
  }

  .dashboard-main {
    order: 2;
  }

  .dashboard-right {
    order: 3;
    flex-direction: row;
    justify-content: space-around;
  }
}

@media (max-width: 600px) {
  .dashboard-right {
    flex-direction: column;
  }
}

/* ================= PROFILE PAGE ================= */

.profile-card {
  margin: 10px;
  width: 100%;
  max-width: 500px;
  padding: 25px;

  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  color: white;
}

/* HEADER */
.profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* FORM */
.profile-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.profile-form input,
.profile-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;

  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.profile-form textarea {
  min-height: 80px;
}

/* BUTTONS */
.profile-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.save-btn {
  flex: 1;
  padding: 10px;
  border-radius: 25px;
  border: none;

  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: white;
  font-weight: 600;
}

.cancel-btn {
  flex: 1;
  padding: 10px;
  border-radius: 25px;
  border: none;

  background: #ff4d4d;
  color: white;
}

/* MOBILE */
@media (max-width: 768px) {
  .profile-card {
    margin: 10px;
  }
}

/* MAIN LAYOUT */
.dashboard-layout {
  display: flex;
  min-height: 80vh;
  background: linear-gradient(180deg, #141e30, #243b55);
}

/* SIDEBAR */
.dashboard-sidebar {
  width: 250px;
  background: #0f172a;
  color: white;
  padding: 20px;

  position: sticky;
  top: 0;
  height: auto;
}

/* MENU LINKS */
.user-menu a {
  display: block;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.user-menu a:hover {
  background: #1e293b;
  color: white;
}

.user-menu a.active {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: white;
}

/* CONTENT */
.dashboard-content {
  flex: 1;
  padding: 25px;
  color: white;
}

/* MOBILE */
@media (max-width: 768px) {
  .dashboard-layout {
    flex-direction: column;
  }

  .dashboard-sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
}

/* Page */
.user-cart-page {
  padding: 20px;
  background: linear-gradient(135deg, #020617, #020617 60%, #050a1f);
  min-height: 100vh;
}

/* Header */
.user-cart-header {
  text-align: center;
  margin-bottom: 25px;
}

.user-cart-header h2 {
  color: thistle;
  font-weight: 700;
}
.user-cart-header p {
  color: thistle;
  font-weight: 700;
}

/* Container FIX */
.user-cart-container {
  width: 100%;
  max-width: 1400px; /* 👈 Important */
  margin: auto; /* center */
  display: flex;
  gap: 30px;
}

/* LEFT SIDE (WIDE) */
.user-cart-items {
  flex: 3; /* 👈 bigger */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Product card wrapper */
.user-cart-product-card {
  background: white;
  border-radius: 12px;
  padding: 15px;
  width: 100%; /* 👈 ensure full width */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* RIGHT SIDE (SMALLER) */
.user-cart-summary {
  flex: 1.2; /* 👈 smaller */
  min-width: 320px; /* 👈 prevents shrink */
  background: white;
  border-radius: 12px;
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Summary */
.user-cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.user-cart-summary-total {
  font-weight: bold;
  font-size: 18px;
}

/* Button */
.user-cart-checkout-btn {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.user-cart-checkout-btn:hover {
  opacity: 0.9;
}

/* Empty */
.user-cart-empty-header button {
  padding: 10px 20px;
  border: none;
  background: #0d6efd;
  color: white;
  border-radius: 8px;
}

/* 🔥 RESPONSIVE FIX */
@media (max-width: 992px) {
  .user-cart-container {
    flex-direction: column;
  }

  .user-cart-summary {
    width: 100%;
    position: static;
  }
}

.global-loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ddd;
  border-top: 6px solid #0d6efd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.user-order {
  background: linear-gradient(135deg, #020617, #020617 60%, #050a1f);
  min-height: 100vh;
}

.user-order__title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1e3a8a;
}

/* GRID */
.user-order__grid {
  display: grid;
  gap: 20px;
}

/* CARD */
.user-order__card {
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.user-order__card:hover {
  transform: translateY(-4px);
}

/* HEADER */
.user-order__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.badge {
  background: #10b981;
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.meta {
  font-size: 12px;
  color: gray;
}

/* PDF BUTTON */
.pdf-btn {
  background: #2563eb;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
}

/* INFO */
.user-order__info {
  display: flex;
  gap: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

/* EMPTY STATE */
.user-order__empty {
  text-align: center;
  padding: 50px;
}

.user-order__empty button {
  margin-top: 10px;
  padding: 10px 16px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.rx-page-root {
  background: #eef2f7;
  min-height: 100vh;
  padding: 30px;
}

/* CARD */
.rx-card {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.rx-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 15px;
}

.rx-header h1 {
  margin: 0;
  font-size: 26px;
}

.rx-brand {
  font-size: 26px;
  font-weight: bold;
  color: #2563eb;
}

/* META */
.rx-meta {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  gap: 20px;
}

.rx-meta p {
  margin: 5px 0;
  font-size: 14px;
}

/* STATUS */
.rx-success {
  color: #16a34a;
  font-weight: 600;
}

.rx-failed {
  color: #dc2626;
  font-weight: 600;
}

/* PRODUCTS */
.rx-products {
  margin-top: 20px;
  border-top: 1px solid #eee;
}

.rx-product-row {
  display: grid;
  grid-template-columns: 100px 1fr 120px;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.rx-product-row img {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
}

.rx-product-info h4 {
  margin: 0;
  font-size: 16px;
}

.rx-product-info p {
  margin-top: 4px;
  font-size: 13px;
  color: #666;
}

.rx-product-price {
  text-align: right;
  font-weight: 600;
  font-size: 16px;
}

/* TOTAL */
.rx-total {
  margin-top: 20px;
  text-align: right;
  border-top: 2px dashed #ddd;
  padding-top: 15px;
}

.rx-total h2 {
  color: #2563eb;
  margin-top: 10px;
}

/* BUTTON */
.rx-download {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.rx-btn {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.rx-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}

.pcx-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.pcx-card:hover {
  transform: translateY(-3px);
}

/* IMAGE */
.pcx-img-wrap img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

/* CONTENT */
.pcx-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* HEADER */
.pcx-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pcx-header h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.pcx-price {
  color: #2563eb;
  font-weight: 700;
  font-size: 16px;
}

/* DESCRIPTION */
.pcx-desc {
  font-size: 13px;
  color: #6b7280;
  margin: 6px 0 10px;
}

/* QUANTITY */
.pcx-qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pcx-qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pcx-qty-controls button {
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}

.pcx-qty-controls button:hover {
  background: #2563eb;
  color: white;
}

.pcx-qty-controls span {
  font-weight: 600;
}

/* FOOTER */
.pcx-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.pcx-time {
  font-size: 12px;
  color: #9ca3af;
}

/* REMOVE BUTTON */
.pcx-remove {
  background: #fee2e2;
  color: #dc2626;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
}

.pcx-remove:hover {
  background: #dc2626;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pcx-card {
    flex-direction: column;
    align-items: center;
  }

  .pcx-img-wrap img {
    width: 100%;
    height: 200px;
  }

  .pcx-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .pcx-footer {
    flex-direction: column;
    gap: 8px;
  }
}

/* ROOT */
.crt2-root {
  background: #f6f8fc;
  min-height: 100vh;
}

/* JUMBOTRON WRAP */
.crt2-jumbo {
  margin-bottom: 10px;
}

/* HEADER */
.crt2-header {
  text-align: center;
  margin: 15px 0;
}

.crt2-header h3 {
  font-weight: 700;
  color: #1e3a8a;
}

/* EMPTY BUTTON */
.crt2-empty-action button {
  padding: 10px 20px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* LAYOUT */
.crt2-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  padding: 20px 40px;
}

/* LEFT SIDE */
.crt2-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* RIGHT SIDE */
.crt2-right {
  position: sticky;
  top: 20px;
  height: fit-content;
}

/* EMPTY */
.crt2-empty {
  text-align: center;
  margin-top: 30px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .crt2-layout {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .crt2-right {
    position: static;
  }
}

/* CARD */
.ucsx-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  margin-left: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.ucsx-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.ucsx-sub {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

/* DIVIDER */
.ucsx-divider {
  height: 1px;
  background: #eee;
  margin: 15px 0;
}

/* TOTAL */
.ucsx-total {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #2563eb;
}

/* ADDRESS */
.ucsx-address {
  text-align: center;
}

.ucsx-address h5 {
  margin-bottom: 5px;
}

.ucsx-address p {
  font-size: 14px;
  color: #374151;
}

/* BUTTONS */
.ucsx-btn {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  margin-top: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.ucsx-outline {
  border: 1px solid #2563eb;
  background: white;
  color: #2563eb;
}

.ucsx-outline:hover {
  background: #2563eb;
  color: white;
}

.ucsx-danger {
  background: #fee2e2;
  color: #dc2626;
}

.ucsx-danger:hover {
  background: #dc2626;
  color: white;
}

/* BUY BUTTON */
.ucsx-buy {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: white;
}

.ucsx-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.3);
}

/* DROPIN */
.ucsx-dropin {
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ucsx-card {
    margin-left: 0;
    margin-top: 20px;
  }
}

.ucsx-note {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  margin-bottom: 10px;
}

/* ROOT CARD */
.zxq-cart-card {
  cursor: pointer;
  display: flex;
  gap: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
  margin-bottom: 16px;
}

.zxq-cart-card:hover {
  cursor: pointer;
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* IMAGE */
.zxq-cart-img-wrap {
  width: 130px;
  height: 130px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(145deg, #f0f2f5, #e4e7ec);
}

.zxq-cart-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.zxq-cart-card:hover .zxq-cart-img-wrap img {
  cursor: pointer;
  transform: scale(1.1);
}

/* CONTENT */
.zxq-cart-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* HEADER */
.zxq-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zxq-cart-title {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
}

.zxq-cart-price {
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(135deg, #91ff00, #125206);
  -webkit-background-clip: text;
  color: transparent;
}

/* DESC */
.zxq-cart-desc {
  font-size: 13.5px;
  color: #666;
  margin: 8px 0 12px;
}

/* BOTTOM */
.zxq-cart-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* QUANTITY */
.zxq-cart-qty-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 30px;
  padding: 4px 10px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.08);
}

.zxq-cart-qty-box button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.zxq-cart-qty-box button:hover {
  transform: scale(1.2);
}

.zxq-cart-qty-box span {
  margin: 0 10px;
  font-size: 15px;
  font-weight: 600;
}

/* REMOVE BUTTON */
.zxq-cart-remove-btn {
  border: none;
  background: rgba(255, 50, 50, 0.1);
  color: #ff3b3b;
  padding: 7px 12px;
  border-radius: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zxq-cart-remove-btn:hover {
  background: #ff3b3b;
  color: #fff;
  transform: translateY(-2px);
}

/* TIME */
.zxq-cart-time {
  font-size: 11.5px;
  color: #999;
  margin-top: 6px;
}

/* CONTAINER */
.pvx-container {
  padding: 30px;
  background: linear-gradient(135deg, #eef2f7, #f8f9fb);
  min-height: 100vh;
}

/* MAIN LAYOUT */
.pvx-main {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 25px;
}

/* PRODUCT CARD */
.pvx-product-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: 0.35s ease;
}

.pvx-product-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.pvx-image-wrap {
  height: 420px;
  overflow: hidden;
}

.pvx-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.pvx-product-card:hover .pvx-image-wrap img {
  transform: scale(1.08);
}

/* CONTENT */
.pvx-content {
  padding: 22px;
}

/* TITLE */
.pvx-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* DESC */
.pvx-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 18px;
}

/* META */
.pvx-meta {
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: #444;
}

/* PRICE */
.pvx-price {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(135deg, #ff7a18, #ff3d3d);
  -webkit-background-clip: text;
  color: transparent;
}

/* BUTTON */
.pvx-add-btn {
  margin-top: 18px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.pvx-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* RELATED */
.pvx-related {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pvx-related-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* RELATED LIST */
.pvx-related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pvx-main {
    grid-template-columns: 1fr;
  }

  .pvx-image-wrap {
    height: 300px;
  }
}

/* ROOT */
.zxqv-card-root-91x {
  display: flex;
  justify-content: center;
}

/* CARD */
.zxqv-card-inner-91x {
  width: 290px;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a; /* deep slate */
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.zxqv-card-inner-91x:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

/* IMAGE */
.zxqv-img-wrap-91x {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #020617;
}

.zxqv-img-91x {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.zxqv-card-inner-91x:hover .zxqv-img-91x {
  transform: scale(1.08);
}

/* BADGES */
.zxqv-badge-91x {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 12px;
  font-weight: 500;
}

.zxqv-badge-91x.in {
  background: #052e1f;
  color: #4ade80;
}

.zxqv-badge-91x.out {
  background: #3f0d0d;
  color: #f87171;
}

.zxqv-sold-91x {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 12px;
  background: #172554;
  color: #60a5fa;
}

/* CONTENT */
.zxqv-content-91x {
  padding: 16px;
}

.zxqv-title-91x {
  font-size: 15px;
  font-weight: 600;
  color: #f1f5f9; /* FIXED visibility */
  margin-bottom: 6px;
  line-height: 1.4;
}

.zxqv-desc-91x {
  font-size: 13px;
  color: #94a3b8; /* softer gray */
  margin-bottom: 12px;
}

.zxqv-price-91x {
  font-size: 18px;
  font-weight: 700;
  color: #22c55e; /* clean green */
}

/* ACTIONS */
.zxqv-actions-91x {
  display: flex;
  gap: 10px;
  padding: 14px;
}

/* BUTTON BASE */
.zxqv-btn {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

/* VIEW BUTTON */
.zxqv-btn.ghost-91x {
  background: transparent;
  border: 1px solid #334155;
  color: #cbd5f5;
}

.zxqv-btn.ghost-91x:hover {
  background: #1e293b;
  color: white;
}

/* ADD BUTTON */
.zxqv-btn.primary-91x {
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
}

.zxqv-btn.primary-91x:hover {
  background: #16a34a;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

/* NOTIFY BUTTON */
.zxqv-btn.notify-91x {
  background: #f59e0b;
  color: #3f2a00;
  font-weight: 600;
}

.zxqv-btn.notify-91x:hover {
  background: #ea580c;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

/* WRAPPER */
.nx-home-wrapper-92a {
  padding: 20px 16px 40px;
  max-width: 1400px;
  margin: auto;
}

/* HERO */
.nx-home-hero-92a {
  margin-bottom: 10px;
}

/* TOTAL BAR */
.nx-total-bar-92a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  margin: 10px auto 20px;
  max-width: 1400px;
  border-radius: 12px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nx-total-label-92a {
  color: #94a3b8;
  font-size: 14px;
}

.nx-total-count-92a {
  font-weight: 700;
  font-size: 18px;
  color: #22c55e;
}

/* SECTION */
.nx-section-92a {
  margin-bottom: 35px;
}

.nx-section-head-92a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.nx-section-head-92a h2 {
  font-size: 18px;
  font-weight: 600;
  color: #f1f5f9;
  cursor: pointer;
}

.nx-section-head-92a span {
  font-size: 13px;
  color: #0b5474;
  cursor: pointer;
}

/* HORIZONTAL SCROLL */
.nx-scroll-row-92a {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.nx-scroll-row-92a::-webkit-scrollbar {
  display: none;
}

.nx-scroll-item-92a {
  min-width: 250px;
  scroll-snap-align: start;
}

/* GRID */
.nx-grid-92a {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* LOAD MORE */
.nx-load-wrap-92a {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.nx-load-btn-92a {
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  background: #1e293b;
  color: #e2e8f0;
  font-weight: 600;
  transition: all 0.25s ease;
}

.nx-load-btn-92a:hover {
  background: #334155;
  transform: translateY(-2px);
}

/* 🔥 MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .nx-section-head-92a h2 {
    font-size: 16px;
  }

  .nx-scroll-item-92a {
    min-width: 220px;
  }

  .nx-grid-92a {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .nx-total-bar-92a {
    padding: 12px 14px;
  }
}

/* 🔥 SMALL MOBILE */
@media (max-width: 480px) {
  .nx-grid-92a {
    grid-template-columns: 1fr 1fr;
  }

  .nx-scroll-item-92a {
    min-width: 200px;
  }
}

/* ROOT */
.qx-shop-root-77z {
  background: #020617;
  min-height: 100vh;
  color: #e2e8f0;
}

/* HERO */
.qx-shop-hero-77z {
  margin-bottom: 10px;
}

/* BODY */
.qx-shop-body-77z {
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 1400px;
  margin: auto;
}

/* SIDEBAR */
.qx-filter-panel-77z {
  width: 260px;
  background: #0f172a;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: fit-content;
  position: sticky;
  top: 20px;
}

/* FILTER BLOCK */
.qx-filter-block-77z {
  margin-bottom: 25px;
}

.qx-filter-block-77z h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CHECKBOX */
.qx-check-77z {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.qx-check-77z:hover {
  background: #1e293b;
}

.qx-check-77z span {
  font-size: 13px;
}

/* RADIO */
.qx-radio-77z {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  cursor: pointer;
}

.qx-radio-77z:hover {
  background: #1e293b;
}

/* RESET BUTTON */
.qx-reset-btn-77z {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  background: #ef4444;
  color: white;
  font-weight: 600;
  margin-top: 10px;
  transition: all 0.25s ease;
}

.qx-reset-btn-77z:hover {
  background: #dc2626;
}

/* PRODUCT AREA */
.qx-product-area-77z {
  flex: 1;
}

/* HEADER */
.qx-product-header-77z {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.qx-product-header-77z h3 {
  font-size: 18px;
  font-weight: 600;
}

.qx-product-header-77z span {
  font-size: 13px;
  color: #94a3b8;
}

/* GRID */
.qx-product-grid-77z {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* 🔥 RESPONSIVE */
@media (max-width: 900px) {
  .qx-shop-body-77z {
    flex-direction: column;
  }

  .qx-filter-panel-77z {
    width: 100%;
    position: static;
  }
}

@media (max-width: 600px) {
  .qx-product-grid-77z {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .qx-shop-body-77z {
    padding: 12px;
  }
}

/* FORCE TEXT VISIBILITY */
.qx-radio-text-77z {
  color: #e2e8f0 !important; /* visible light text */
  font-size: 13px;
}

/* RADIO CONTAINER */
.qx-radio-77z {
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  transition: all 0.2s ease;
}

/* HOVER */
.qx-radio-77z:hover {
  background: #1e293b;
}

/* ANT RADIO OVERRIDE */
.qx-filter-panel-77z .ant-radio-wrapper {
  color: #e2e8f0 !important;
}

/* RADIO DOT COLOR */
.qx-filter-panel-77z .ant-radio-checked .ant-radio-inner {
  border-color: #22c55e;
  background-color: #22c55e;
}

/* RADIO BORDER */
.qx-filter-panel-77z .ant-radio-inner {
  border-color: #64748b;
}

/* ROOT (same as shop) */
.rx-home-root-11x {
  background: #020617;
  min-height: 100vh;
  color: #e2e8f0;
}

/* HERO */
.rx-home-hero-11x {
  margin-bottom: 10px;
}

/* 🔥 SAME AS SHOP BODY */
.rx-home-body-11x {
  padding: 20px;
  max-width: 1400px;
  margin: auto;
}

/* SECTION */
.rx-section-11x {
  margin-bottom: 35px;
}

/* HEADER */
.rx-section-head-11x {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.rx-section-head-11x h2 {
  font-size: 18px;
  font-weight: 600;
  color: #f1f5f9;
  cursor: pointer;
}

.rx-section-head-11x span {
  font-size: 13px;
  color: #38bdf8;
  cursor: pointer;
}

/* SCROLL */
.rx-scroll-11x {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.rx-scroll-11x::-webkit-scrollbar {
  display: none;
}

.rx-scroll-item-11x {
  min-width: 250px;
  scroll-snap-align: start;
}

/* GRID */
.rx-grid-11x {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* LOAD MORE */
.rx-load-wrap-11x {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.rx-load-btn-11x {
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  background: #1e293b;
  color: #e2e8f0;
  font-weight: 600;
  transition: all 0.25s ease;
}

.rx-load-btn-11x:hover {
  background: #334155;
  transform: translateY(-2px);
}

/* MOBILE (same as shop) */
@media (max-width: 768px) {
  .rx-scroll-item-11x {
    min-width: 220px;
  }

  .rx-grid-11x {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .rx-scroll-item-11x {
    min-width: 200px;
  }
}

/* 🔥 ROOT DROPDOWN */
.zx-dropdown-elite-77x {
  min-width: 240px;
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  animation: zxFadeIn77x 0.2s ease;
}

/* 🔥 ANIMATION */
@keyframes zxFadeIn77x {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 🔥 ITEMS */
.zx-dropdown-elite-77x .dropdown-item {
  color: #cbd5f5;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 4px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 🔥 HOVER EFFECT */
.zx-dropdown-elite-77x .dropdown-item:hover {
  background: rgba(56, 189, 248, 0.12);
  color: #ffffff;
  transform: translateX(4px);
}

/* 🔥 ACTIVE */
.zx-dropdown-elite-77x .dropdown-item:active {
  background: rgba(56, 189, 248, 0.2);
}

/* 🔥 FIRST ITEM (All Categories highlight) */
.zx-dropdown-elite-77x .dropdown-item.fw-bold {
  font-weight: 600;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
}

/* 🔥 DIVIDER STYLE (optional if you add hr later) */
.zx-dropdown-elite-77x hr {
  border-color: rgba(255, 255, 255, 0.06);
  margin: 6px 0;
}

/* 🔥 SCROLLABLE IF MANY ITEMS */
.zx-dropdown-elite-77x {
  max-height: 320px;
  overflow-y: auto;
}

.zx-dropdown-elite-77x::-webkit-scrollbar {
  width: 6px;
}

.zx-dropdown-elite-77x::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 10px;
}

/* 🔥 DROPDOWN ARROW FIX */
.zx-dropdown-elite-77x::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #020617;
  transform: rotate(45deg);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ROOT DROPDOWN */
.zx-user-dd-77x {
  min-width: 220px;
  padding: 8px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  animation: zxDropFade77x 0.18s ease;
}

/* ANIMATION */
@keyframes zxDropFade77x {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ITEMS */
.zx-user-dd-77x .dropdown-item {
  color: #cbd5f5;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: all 0.22s ease;
}

/* HOVER */
.zx-user-dd-77x .dropdown-item:hover {
  background: rgba(56, 189, 248, 0.12);
  color: #ffffff;
  transform: translateX(3px);
}

/* ACTIVE CLICK */
.zx-user-dd-77x .dropdown-item:active {
  background: rgba(56, 189, 248, 0.2);
}

/* LOGOUT (keep red but premium) */
.zx-user-dd-77x .text-danger {
  color: #f87171 !important;
}

.zx-user-dd-77x .text-danger:hover {
  background: rgba(248, 113, 113, 0.15);
  color: #ef4444 !important;
  cursor: pointer;
}

/* REMOVE DEFAULT BOOTSTRAP BORDER */
.zx-user-dd-77x {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* SMALL ARROW */
.zx-user-dd-77x::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: #020617;
  transform: rotate(45deg);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Wrapper */
.zx-cat-wrapper {
  background: #020b30;
  min-height: 100vh;
  color: #e2e8f0;
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
}

/* Dark overlay */
.zx-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 0, 17, 0.75), rgba(0, 0, 0, 0.55));
  backdrop-filter: blur(6px);
  z-index: 0;
}

/* Grid above overlay */
.zx-cat-grid {
  position: relative;
  z-index: 2;
}

/* Card */
.zx-cat-card {
  display: block;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* Inner glass card */
.zx-cat-inner {
  padding: 35px 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);

  color: #fff;
  text-align: center;

  transition: all 0.4s ease;
  position: relative;
}

/* Title */
.zx-cat-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* Hidden hover text */
.zx-cat-hover {
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
  transition: all 0.3s ease;
}

/* Hover Effects */
.zx-cat-card:hover .zx-cat-inner {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.6), rgba(0, 200, 255, 0.4));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Text animation */
.zx-cat-card:hover .zx-cat-hover {
  opacity: 1;
  transform: translateY(0);
}

/* Glow border effect */
.zx-cat-card:hover .zx-cat-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: glowPulse 1.5s infinite alternate;
}

/* Glow animation */
@keyframes glowPulse {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 0.8;
  }
}

.rx-home-root-11x {
  background: #020617;
  min-height: 100vh;
  color: #e2e8f0;
}

/* ROOT */
.zxv91k-root {
  background: linear-gradient(135deg, #020617, #020617 60%, #050a1f);
  min-height: 100vh;
  color: #e2e8f0;
}

/* HERO */
.zxv91k-hero {
  margin-bottom: 12px;
}

/* OUTER BODY (left-right margin feel) */
.zxv91k-body-wrap {
  padding: 20px;
}

/* CENTERED CONTENT */
.zxv91k-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* HEADER */
.zxv91k-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.zxv91k-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.zxv91k-count {
  font-size: 13px;
  color: #94a3b8;
}

/* GRID */
.zxv91k-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}

/* CARD WRAPPER */
.zxv91k-card-shell {
  transition: all 0.28s ease;
}

.zxv91k-card-shell:hover {
  transform: translateY(-8px) scale(1.015);
}

/* EMPTY STATE */
.zxv91k-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.zxv91k-empty h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.zxv91k-empty p {
  color: #94a3b8;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .zxv91k-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ROOT */
.vpx99x-root {
  background: linear-gradient(135deg, #020617, #020617 60%, #050a1f);
  min-height: 100vh;
  color: #e2e8f0;
}

/* CENTERED CONTAINER */
.vpx99x-container {
  max-width: 1400px;
  margin: auto;
  padding: 20px;
  display: flex;
  gap: 30px;
}

/* LEFT */
.vpx99x-left {
  flex: 1.2;
}

/* RIGHT */
.vpx99x-right {
  flex: 1;
}

/* CARD */
.vpx99x-card {
  display: flex;
  gap: 25px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* IMAGE */
.vpx99x-img-wrap img {
  width: 320px;
  border-radius: 14px;
  object-fit: cover;
}

/* CONTENT */
.vpx99x-content {
  flex: 1;
}

/* TITLE */
.vpx99x-title {
  font-size: 26px;
  font-weight: 700;
}

/* RATING */
.vpx99x-rating {
  margin: 8px 0;
  color: #facc15;
  font-size: 14px;
}

/* DESC */
.vpx99x-desc {
  color: #94a3b8;
  margin: 10px 0 15px;
}

/* PRICE */
.vpx99x-price {
  font-size: 28px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 15px;
}

/* FEATURES */
.vpx99x-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-size: 13px;
  margin-bottom: 15px;
}

/* BADGES */
.vpx99x-badges span {
  margin-right: 10px;
  font-size: 12px;
  background: #1e293b;
  padding: 6px 10px;
  border-radius: 8px;
}

/* BUTTON */
.vpx99x-btn {
  margin-top: 15px;
  padding: 12px;
  width: 100%;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: white;
  font-weight: 600;
  transition: all 0.25s ease;
}

.vpx99x-btn:hover {
  transform: scale(1.03);
}

/* RELATED */
.vpx99x-related-title {
  margin-bottom: 15px;
  font-size: 18px;
}

/* GRID */
.vpx99x-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .vpx99x-container {
    flex-direction: column;
  }

  .vpx99x-card {
    flex-direction: column;
  }

  .vpx99x-img-wrap img {
    width: 100%;
  }
}

/* ROOT BACKGROUND */
.pqxyz-root {
  background: linear-gradient(135deg, #020617, #020617 60%, #050a1f);
  min-height: 100vh;
  color: #e2e8f0;
}

/* HERO */
.pqxyz-hero {
  margin-bottom: 10px;
  background: radial-gradient(circle at 20% 20%, #1e293b, #020617 70%);
}

.pqxyz-hero-inner {
  max-width: 1400px;
  margin: auto;
  padding: 10px 20px;
}

/* MAIN CONTAINER */
.pqxyz-container {
  max-width: 1400px;
  margin: auto;
  padding: 20px;
}

/* HEADER */
.pqxyz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.pqxyz-header h2 {
  font-size: 22px;
  font-weight: 700;
}

.pqxyz-header span {
  font-size: 13px;
  color: #94a3b8;
}

/* EMPTY TOP BUTTON */
.pqxyz-empty-top button {
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  background: #22c55e;
  color: white;
  font-weight: 600;
  transition: 0.2s;
}

.pqxyz-empty-top button:hover {
  transform: scale(1.05);
}

/* LAYOUT */
.pqxyz-layout {
  display: flex;
  gap: 25px;
}

/* LEFT SIDE */
.pqxyz-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* RIGHT SIDE */
.pqxyz-right {
  flex: 1;
  position: sticky;
  top: 20px;
  height: fit-content;
  background: rgba(86, 88, 206, 0.575);
}

/* ITEM WRAPPER */
.pqxyz-item-wrap {
  background: rgba(17, 182, 86, 0.04);
  border-radius: 16px;
  padding: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.25s ease;
}

.pqxyz-item-wrap:hover {
  transform: translateY(-4px);
}

/* EMPTY */
.pqxyz-empty {
  margin-top: 40px;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pqxyz-layout {
    flex-direction: column;
  }

  .pqxyz-right {
    position: static;
  }
}

/* CARD */
.rtx91-card {
  display: flex;
  gap: 16px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}

.rtx91-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.rtx91-img-wrap img {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
}

/* CONTENT */
.rtx91-content {
  flex: 1;
}

/* TOP */
.rtx91-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rtx91-title {
  font-size: 15px;
  font-weight: 600;
}

.rtx91-price {
  font-size: 16px;
  font-weight: 700;
  color: #22c55e;
}

/* DESC */
.rtx91-desc {
  font-size: 12px;
  color: #94a3b8;
  margin: 6px 0 10px;
}

/* ACTIONS */
.rtx91-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* QTY */
.rtx91-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1e293b;
  padding: 5px 10px;
  border-radius: 10px;
}

.rtx91-qty span {
  color: #e4e7ec;
}

.rtx91-qty button {
  background: none;
  border: none;
  color: #e2e8f0;
  cursor: pointer;
}

/* REMOVE */
.rtx91-remove {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 12px;
  cursor: pointer;
}

/* TIME */
.rtx91-time {
  margin-top: 6px;
  font-size: 11px;
  color: #64748b;
}

/* CARD */
.kly72-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(52, 50, 59, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

/* TITLE */
.kly72-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* TOTAL */
.kly72-total {
  font-size: 22px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 15px;
}

/* BLOCK */
.kly72-block {
  margin-bottom: 20px;
}

.kly72-block h5 {
  font-size: 13px;
  margin-bottom: 6px;
  color: #94a3b8;
}

/* BUTTON */
.kly72-btn {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  margin-top: 10px;
  font-weight: 600;
  cursor: pointer;
}

.kly72-btn.outline {
  background: transparent;
  border: 1px solid #22c55e;
  color: #22c55e;
}

.kly72-btn.danger {
  background: #ef4444;
  color: white;
}

.kly72-btn.buy {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: white;
}

/* DROPIN */
.kly72-dropin {
  margin: 10px 0;
}

/* NOTE */
.kly72-note {
  font-size: 11px;
  color: #64748b;
  margin-top: 6px;
}

/* ROOT — SAME AS OTHER PAGES */
.pmerp-root {
  background: linear-gradient(135deg, #020617, #020617 60%, #050a1f);
  min-height: 100vh;
  color: #e2e8f0;
}

/* HERO — NO RANDOM BG */
.pmerp-hero {
  margin-bottom: 10px;
}

.pmerp-hero-inner {
  max-width: 1400px;
  margin: auto;
  padding: 10px 20px;
}

/* MAIN CONTAINER */
.pmerp-container {
  max-width: 1400px;
  margin: auto;
  padding: 20px;
}

/* CARDS */
.pmerp-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.pmerp-card {
  flex: 1;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}

.pmerp-card:hover {
  transform: translateY(-5px);
}

/* FLEX */
.pmerp-flex {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}

/* FORM */
.pmerp-form {
  flex: 2;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.pmerp-form input,
.pmerp-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #1e293b;
  color: white;
}

/* BUTTON */
.pmerp-form button {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: white;
}

/* INFO */
.pmerp-info {
  flex: 1;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

/* FAQ */
.pmerp-faq-item {
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.pmerp-faq-q {
  display: flex;
  justify-content: space-between;
}

.pmerp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: 0.25s ease;
}

.pmerp-faq-item.open .pmerp-faq-a {
  max-height: 100px;
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pmerp-flex {
    flex-direction: column;
  }

  .pmerp-cards {
    flex-direction: column;
  }
}

/* ROOT */
.empx99-root {
  background: linear-gradient(135deg, #020617, #020617 60%, #050a1f);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTAINER */
.empx99-container {
  max-width: 1800px;
  text-align: center;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

/* IMAGE */
.empx99-img-wrap img {
  width: 320px;
  margin-bottom: 20px;
  border-radius: 10px;
}

/* TITLE */
.empx99-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* SUB */
.empx99-sub {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 25px;
}

/* ACTIONS */
.empx99-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* BUTTONS */
.empx99-actions button {
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

/* PRIMARY */
.empx99-actions button:nth-child(1) {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: white;
}

/* SECONDARY */
.empx99-actions button:nth-child(2) {
  background: #1e293b;
  color: #e2e8f0;
}

/* TERTIARY */
.empx99-actions button:nth-child(3) {
  background: transparent;
  border: 1px solid #22c55e;
  color: #22c55e;
}

/* HOVER */
.empx99-actions button:hover {
  transform: translateY(-3px) scale(1.02);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .empx99-container {
    padding: 25px;
  }

  .empx99-img-wrap img {
    width: 180px;
  }
}

/* 🔥 TAB SWITCH */
.byuip-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  background: #f1f1f1;
  padding: 5px;
  border-radius: 30px;
}

.byuip-tab {
  flex: 1;
  border: none;
  padding: 10px;
  border-radius: 30px;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.byuip-tab.active {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: white;
  box-shadow: 0 3px 10px rgba(0, 114, 255, 0.4);
}

/* 📱 PHONE BOX */
.byuip-phone-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* INPUT */
.byuip-input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.byuip-input:focus {
  border-color: #0072ff;
  box-shadow: 0 0 8px rgba(0, 114, 255, 0.3);
  outline: none;
}

/* BUTTON */
.byuip-btn {
  padding: 12px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.byuip-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 114, 255, 0.5);
}

.byuip-btn.success {
  background: linear-gradient(45deg, #00b09b, #96c93d);
}

/* PAGE WRAPPER */
.huiweu-admin-shell {
  padding: 30px 20px 50px;
  background: linear-gradient(180deg, #eef4ff, #f7fbff);
  min-height: auto;
}

/* LEFT PANEL */
.huiweu-left-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.9));

  border-radius: 30px;
  padding: 22px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

  border: 1px solid rgba(90, 120, 255, 0.12);
}

/* RIGHT CONTENT */
.huiweu-main-panel {
  background: white;
  border-radius: 30px;
  padding: 28px;

  min-height: 85vh;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);

  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* SIDEBAR */
.huiweu-sidebar-wrap {
  width: 100%;
}

/* BRAND */
.huiweu-brand-card {
  padding: 28px;
  border-radius: 28px;

  background: linear-gradient(135deg, #0b1f67, #3967ff);

  color: white;
  margin-bottom: 30px;

  box-shadow: 0 15px 40px rgba(57, 103, 255, 0.35);

  position: relative;
  overflow: hidden;
}

.huiweu-brand-orb {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -60px;
  top: -50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.huiweu-brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.huiweu-brand-icon {
  font-size: 42px;
}

.huiweu-brand-card h4 {
  margin: 0;
  font-weight: 700;
}

.huiweu-brand-card p {
  margin: 0;
  opacity: 0.85;
}

/* SECTION BOX */
.huiweu-menu-box,
.huiweu-admin-block {
  margin-bottom: 30px;
}

.huiweu-menu-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-left: 10px;
  color: #3556df;
}

/* MENU */
.huiweu-menu-list {
  padding: 0;
  margin: 0;
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* LINKS */
.huiweu-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 15px 18px;

  text-decoration: none;
  color: #22315d;

  background: #fff;

  border-radius: 18px;

  font-weight: 600;

  transition: 0.35s;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.huiweu-nav-link svg {
  font-size: 17px;
}

.huiweu-nav-link:hover {
  transform: translateX(8px);

  background: linear-gradient(90deg, #edf4ff, white);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.huiweu-active {
  background: linear-gradient(135deg, #2f66ff, #6d7cff);

  color: #fff;

  box-shadow: 0 15px 35px rgba(47, 102, 255, 0.35);
}

/* FOOTER MINI CARD */
.huiweu-side-footer {
  padding: 22px;
  border-radius: 22px;

  background: linear-gradient(135deg, #111827, #203557);

  color: white;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.huiweu-side-footer h6 {
  margin-bottom: 8px;
  font-size: 17px;
}

.huiweu-side-footer span {
  opacity: 0.82;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .huiweu-main-panel {
    min-height: auto;
  }

  .huiweu-left-panel {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .huiweu-admin-shell {
    padding: 20px 12px 40px;
  }

  .huiweu-left-panel,
  .huiweu-main-panel {
    border-radius: 22px;
    padding: 18px;
  }

  .huiweu-nav-link {
    padding: 14px;
    font-size: 14px;
  }

  .huiweu-nav-link:hover {
    transform: none;
  }
}

@media (max-width: 576px) {
  .huiweu-brand-row {
    flex-direction: column;
    text-align: center;
  }

  .huiweu-menu-heading {
    text-align: center;
    padding-left: 0;
  }

  .huiweu-nav-link {
    justify-content: center;
  }
}


