/* ============================================
   ELECTRO MARK - FULLY RESPONSIVE CSS
   Mobile | Tablet | Desktop - Same Look, Smaller Size
   ============================================ */

/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #121212;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.8)), 
                    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1920&auto=format&fit=crop') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
  min-height: 100vh;
}

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

.layout-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: transparent !important;
}

.main-content {
  flex: 1;
  background: transparent !important;
}

/* ============================================
   HEADER - KEEPS SAME LOOK, SCALES DOWN
   ============================================ */

.premium-header-wrapper {
  position: sticky;
  top: 1.5rem;
  z-index: 1000;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  padding: 0 1.5rem;
}

.glass-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0.5rem;
}

.glass-nav:hover {
  border-color: rgba(56, 189, 248, 0.25);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.4),
              0 0 24px rgba(56, 189, 248, 0.15);
}

/* BRAND - Always Visible */
.brand-section {
  display: flex;
  flex-shrink: 0;
  padding-left: 0.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.brand-icon {
  width: 20px;
  height: 20px;
  fill: #38bdf8;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.5));
  flex-shrink: 0;
}

.brand-text {
  display: inline-block;
  white-space: nowrap;
}

/* CENTER NAV */
.center-nav {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.3rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  flex-shrink: 0;
}

.nav-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 99px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

.nav-link.admin-link {
  color: #38bdf8;
}

.nav-link.admin-link:hover,
.nav-link.admin-link.active {
  background: rgba(56, 189, 248, 0.15);
  color: #7dd3fc;
}

/* RIGHT ACTIONS */
.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.icon-btn:hover,
.icon-btn.active {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  transform: translateY(-2px);
}

.icon-btn svg {
  width: 17px;
  height: 17px;
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: linear-gradient(135deg, #ef4444, #f43f5e);
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0f172a;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.6);
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  filter: brightness(1.1);
}

.cta-btn svg {
  width: 15px;
  height: 15px;
}

/* ============================================
   LOGIN PAGE
   ============================================ */

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 2rem 1rem;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: rgba(20, 24, 33, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-icon-badge {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #0070f3, #00c6ff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 8px 20px rgba(0, 112, 243, 0.35);
}

.login-icon-badge svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.login-header h2 {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.login-header p {
  color: #94a3b8;
  font-size: 0.875rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.input-group label {
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 500;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  color: #64748b;
  pointer-events: none;
}

.input-wrapper input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.input-wrapper input:focus {
  border-color: #0070f3;
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.2);
  background: rgba(15, 23, 42, 0.85);
}

.error-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.error-message svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-login-submit {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, #0070f3, #0051a8);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.3);
  margin-top: 0.5rem;
}

.btn-login-submit:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.btn-back-home {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.4rem;
  transition: color 0.3s ease;
}

.btn-back-home:hover {
  color: #fff;
}

/* ============================================
   ADMIN DASHBOARD
   ============================================ */

.admin-wrapper {
  display: flex;
  min-height: calc(100vh - 80px);
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
  padding: 2rem 1rem;
}

.admin-sidebar {
  width: 270px;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: fit-content;
  flex-shrink: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0070f3, #00c6ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.sidebar-header h4 {
  margin: 0;
  font-size: 0.95rem;
  color: #fff;
}

.admin-badge {
  font-size: 0.75rem;
  color: #94a3b8;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  background: transparent;
  border: none;
  border-radius: 12px;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.sidebar-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sidebar-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.sidebar-btn.active {
  background: linear-gradient(135deg, #0070f3, #0051a8);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.3);
}

.btn-logout {
  margin-top: auto;
  color: #ef4444;
}

.btn-logout:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
}

.admin-content {
  flex: 1;
  min-width: 0;
}

.dashboard-welcome-card,
.admin-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.max-w-md {
  max-width: 500px;
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-header h3 {
  color: #fff;
  font-size: 1.4rem;
  margin: 0 0 0.4rem 0;
}

.card-header p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin: 0;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #0070f3;
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.2);
}

.file-drop-zone {
  position: relative;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  background: rgba(15, 23, 42, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-drop-zone:hover {
  border-color: #0070f3;
  background: rgba(0, 112, 243, 0.05);
}

.file-drop-zone svg {
  width: 38px;
  height: 38px;
  color: #0070f3;
  margin-bottom: 0.5rem;
}

.file-drop-zone p {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0;
}

.file-drop-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.btn-primary {
  padding: 0.9rem;
  background: linear-gradient(135deg, #0070f3, #0051a8);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.3);
  margin-top: 0.5rem;
}

.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */

.products-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.products-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.products-subtitle {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.search-box-wrapper {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 18px;
  width: 22px;
  height: 22px;
  color: #0070f3;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 1rem 1.2rem 1rem 3.2rem;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: #0070f3;
  box-shadow: 0 0 20px rgba(0, 112, 243, 0.3);
  background: rgba(17, 24, 39, 0.9);
}

.search-input::placeholder {
  color: #64748b;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.product-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 112, 243, 0.25);
}

.product-image-box {
  width: 100%;
  height: 200px;
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.4rem 0;
}

.product-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0 0 1rem 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.current-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0070f3;
}

.old-price {
  font-size: 0.9rem;
  color: #64748b;
  text-decoration: line-through;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.btn-action {
  flex: 1;
  padding: 0.65rem 0.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-add-cart {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-add-cart:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-buy-now {
  background: linear-gradient(135deg, #0070f3, #0051a8);
  color: #fff;
}

.btn-buy-now:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

.footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  padding: 4rem 2rem 2rem 2rem;
  color: #fff;
}

.btn-social-icon {
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-social-icon svg {
  width: 20px;
  height: 20px;
}

.btn-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* ============================================
   HOME PAGE SECTIONS - SCALE DOWN ON MOBILE
   ============================================ */

/* Hero Slider - Keep same look, smaller */
@media (max-width: 768px) {
  /* Make all inline-styled sections scale better */
  
  /* Hero slider container */
  div[style*="height: '650px'"] {
    height: 400px !important;
  }
  
  /* Hero slide text */
  div[style*="padding: '0 4rem'"] {
    padding: 0 1.5rem !important;
  }
  
  /* Hero title */
  h1[style*="fontSize: '3.8rem'"] {
    font-size: 2rem !important;
  }
  
  /* Hero subtitle */
  p[style*="fontSize: '1.2rem'"] {
    font-size: 0.95rem !important;
  }
  
  /* Feature cards grid - 1 column on mobile */
  div[style*="gridTemplateColumns: 'repeat(auto-fit, minmax(260px, 1fr))'"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  
  /* 3-column grid on home */
  div[style*="gridTemplateColumns: 'repeat(3, 1fr)'"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ---------- LARGE DESKTOP (1200px and above) ---------- */
@media (min-width: 1201px) {
  .premium-header-wrapper {
    padding: 0 1.5rem;
  }
  
  .brand-logo {
    font-size: 1.15rem;
  }
  
  .brand-icon {
    width: 24px;
    height: 24px;
  }
  
  .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 1.1rem;
  }
  
  .icon-btn {
    width: 42px;
    height: 42px;
  }
  
  .icon-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .cta-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
  }
  
  .cta-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* ---------- DESKTOP (1025px - 1200px) ---------- */
@media (max-width: 1200px) {
  .premium-header-wrapper {
    padding: 0 1.25rem;
  }
  
  .brand-logo {
    font-size: 1.1rem;
  }
  
  .nav-link {
    font-size: 0.82rem;
    padding: 0.45rem 1rem;
  }
}

/* ---------- TABLET (769px - 1024px) ---------- */
@media (max-width: 1024px) {
  .premium-header-wrapper {
    padding: 0 1rem;
    top: 1rem;
    margin-bottom: 1.5rem;
  }

  .glass-nav {
    padding: 0.5rem 0.6rem;
    gap: 0.4rem;
  }

  .brand-logo {
    font-size: 1rem;
  }

  .brand-icon {
    width: 20px;
    height: 20px;
  }

  .nav-link {
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
  }

  .icon-btn {
    width: 38px;
    height: 38px;
  }

  .icon-btn svg {
    width: 18px;
    height: 18px;
  }

  .cta-btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
  }

  .admin-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .admin-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }

  .sidebar-header {
    padding-bottom: 0;
    border-bottom: none;
    flex: 1;
    min-width: 200px;
  }

  .sidebar-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 2;
  }

  .sidebar-btn {
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
  }

  .btn-logout {
    margin-top: 0;
    flex: 0 0 auto;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
}

/* ---------- MOBILE LANDSCAPE / SMALL TABLET (max 900px) ---------- */
@media (max-width: 900px) {
  .premium-header-wrapper {
    padding: 0 0.85rem;
  }

  .glass-nav {
    padding: 0.45rem 0.55rem;
    gap: 0.35rem;
  }

  .brand-logo {
    font-size: 0.95rem;
    gap: 0.35rem;
  }

  .brand-icon {
    width: 18px;
    height: 18px;
  }

  .nav-link {
    padding: 0.38rem 0.7rem;
    font-size: 0.72rem;
  }

  .icon-btn {
    width: 34px;
    height: 34px;
  }

  .icon-btn svg {
    width: 16px;
    height: 16px;
  }

  .cart-badge {
    min-width: 15px;
    height: 15px;
    font-size: 0.58rem;
  }

  .cta-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
    gap: 0.35rem;
  }

  .cta-btn svg {
    width: 14px;
    height: 14px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }
}

/* ---------- MOBILE PORTRAIT (max 768px) ---------- */
@media (max-width: 768px) {
  /* HEADER - Keep all visible, just smaller */
  .premium-header-wrapper {
    padding: 0 0.6rem;
    top: 0.6rem;
    margin-bottom: 1rem;
  }

  .glass-nav {
    padding: 0.4rem 0.5rem;
    gap: 0.3rem;
    border-radius: 50px;
    flex-wrap: nowrap;
  }

  .brand-section {
    padding-left: 0.15rem;
  }

  .brand-logo {
    font-size: 0.85rem;
    gap: 0.3rem;
    letter-spacing: 0.2px;
  }

  .brand-icon {
    width: 16px;
    height: 16px;
  }

  .brand-text {
    display: inline-block !important;
    font-size: 0.85rem;
  }

  .center-nav {
    padding: 0.25rem;
    gap: 0.1rem;
  }

  .nav-link {
    padding: 0.35rem 0.6rem;
    font-size: 0.68rem;
  }

  .nav-actions {
    gap: 0.35rem;
  }

  .icon-btn {
    width: 32px;
    height: 32px;
  }

  .icon-btn svg {
    width: 15px;
    height: 15px;
  }

  .cart-badge {
    min-width: 14px;
    height: 14px;
    font-size: 0.55rem;
    top: -2px;
    right: -2px;
  }

  .cta-btn {
    padding: 0.45rem 0.75rem;
    font-size: 0.7rem;
    gap: 0.3rem;
  }

  .cta-btn svg {
    width: 13px;
    height: 13px;
  }

  /* LOGIN */
  .login-wrapper {
    padding: 1.5rem 1rem;
    min-height: 60vh;
  }

  .login-card {
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
  }

  .login-icon-badge {
    width: 48px;
    height: 48px;
  }

  .login-icon-badge svg {
    width: 22px;
    height: 22px;
  }

  .login-header h2 {
    font-size: 1.3rem;
  }

  .login-header p {
    font-size: 0.8rem;
  }

  .input-wrapper input {
    padding: 0.8rem 0.9rem 0.8rem 2.6rem;
    font-size: 0.9rem;
  }

  .btn-login-submit {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  /* ADMIN */
  .admin-wrapper {
    padding: 1rem 0.75rem;
    gap: 1rem;
  }

  .admin-sidebar {
    flex-direction: column;
    padding: 1rem;
    border-radius: 16px;
  }

  .sidebar-header {
    width: 100%;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .sidebar-menu {
    flex-direction: column;
    width: 100%;
  }

  .sidebar-btn {
    width: 100%;
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }

  .btn-logout {
    width: 100%;
    margin-top: 0.5rem;
  }

  .admin-content {
    width: 100%;
  }

  .admin-card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .card-header h3 {
    font-size: 1.2rem;
  }

  /* PRODUCTS */
  .products-page-container {
    padding: 1.5rem 0.75rem;
  }

  .products-title {
    font-size: 1.75rem;
  }

  .products-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .search-input {
    padding: 0.85rem 0.9rem 0.85rem 2.8rem;
    font-size: 0.9rem;
  }

  .search-icon {
    left: 14px;
    width: 20px;
    height: 20px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-image-box {
    height: 180px;
  }

  .product-details {
    padding: 0.9rem;
  }

  .product-name {
    font-size: 1rem;
  }

  .current-price {
    font-size: 1.1rem;
  }

  .btn-action {
    padding: 0.55rem 0.4rem;
    font-size: 0.78rem;
  }

  /* FOOTER */
  .footer {
    padding: 2.5rem 1rem 1.5rem 1rem;
  }
}

/* ---------- SMALL MOBILE (max 600px) ---------- */
@media (max-width: 600px) {
  .premium-header-wrapper {
    padding: 0 0.5rem;
    top: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .glass-nav {
    padding: 0.35rem 0.4rem;
    gap: 0.25rem;
  }

  .brand-logo {
    font-size: 0.8rem;
  }

  .brand-icon {
    width: 15px;
    height: 15px;
  }

  .brand-text {
    font-size: 0.8rem;
  }

  .center-nav {
    padding: 0.2rem;
  }

  .nav-link {
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
  }

  .icon-btn {
    width: 30px;
    height: 30px;
  }

  .icon-btn svg {
    width: 14px;
    height: 14px;
  }

  .cta-btn {
    padding: 0.4rem 0.65rem;
    font-size: 0.65rem;
  }

  .cta-btn svg {
    width: 12px;
    height: 12px;
  }

  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .product-image-box {
    height: 220px;
  }

  .products-title {
    font-size: 1.5rem;
  }

  .products-subtitle {
    font-size: 0.85rem;
  }
}

/* ---------- EXTRA SMALL MOBILE (max 480px) ---------- */
@media (max-width: 480px) {
  .premium-header-wrapper {
    padding: 0 0.4rem;
    top: 0.4rem;
  }

  .glass-nav {
    padding: 0.3rem 0.35rem;
    gap: 0.2rem;
    border-radius: 40px;
  }

  .brand-logo {
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .brand-icon {
    width: 14px;
    height: 14px;
  }

  .brand-text {
    font-size: 0.75rem;
    letter-spacing: 0.1px;
  }

  .center-nav {
    padding: 0.15rem;
    gap: 0.05rem;
  }

  .nav-link {
    padding: 0.28rem 0.45rem;
    font-size: 0.6rem;
  }

  .nav-actions {
    gap: 0.25rem;
  }

  .icon-btn {
    width: 28px;
    height: 28px;
  }

  .icon-btn svg {
    width: 13px;
    height: 13px;
  }

  .cart-badge {
    min-width: 12px;
    height: 12px;
    font-size: 0.5rem;
    border-width: 1.5px;
  }

  .cta-btn {
    padding: 0.35rem 0.55rem;
    font-size: 0.6rem;
    gap: 0.2rem;
  }

  .cta-btn svg {
    width: 11px;
    height: 11px;
  }

  .login-card {
    padding: 1.5rem 1rem;
  }

  .login-header h2 {
    font-size: 1.2rem;
  }

  .admin-avatar {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .sidebar-header h4 {
    font-size: 0.9rem;
  }

  .products-page-container {
    padding: 1.25rem 0.5rem;
  }

  .products-title {
    font-size: 1.4rem;
  }

  .search-input {
    padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    font-size: 0.85rem;
  }

  .search-icon {
    left: 12px;
    width: 18px;
    height: 18px;
  }

  .product-image-box {
    height: 200px;
  }

  .product-name {
    font-size: 0.95rem;
  }

  .current-price {
    font-size: 1.05rem;
  }
}

/* ---------- TINY MOBILE (max 380px) ---------- */
@media (max-width: 380px) {
  .brand-logo {
    font-size: 0.7rem;
  }

  .brand-text {
    font-size: 0.7rem;
  }

  .nav-link {
    padding: 0.25rem 0.4rem;
    font-size: 0.55rem;
  }

  .icon-btn {
    width: 26px;
    height: 26px;
  }

  .icon-btn svg {
    width: 12px;
    height: 12px;
  }

  .cta-btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.55rem;
  }

  .cta-btn svg {
    width: 10px;
    height: 10px;
  }

  .products-title {
    font-size: 1.25rem;
  }
}

/* ============================================
   HOME PAGE INLINE STYLE OVERRIDES
   (For sections with inline styles in JSX)
   ============================================ */

@media (max-width: 1024px) {
  /* Hero Slider */
  .home-wrapper {
    padding: 0 1rem !important;
    margin-top: 1.5rem !important;
  }

  /* Slider container height */
  .home-wrapper > div:first-of-type {
    height: 500px !important;
    border-radius: 24px !important;
  }

  /* Hero slide content */
  .home-wrapper > div:first-of-type > div {
    padding: 0 2.5rem !important;
  }

  /* Hero title */
  .home-wrapper h1 {
    font-size: 2.8rem !important;
  }

  /* Hero subtitle */
  .home-wrapper p {
    font-size: 1.05rem !important;
  }

  /* Hero buttons */
  .home-wrapper button {
    padding: 0.9rem 1.8rem !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 768px) {
  .home-wrapper {
    padding: 0 0.75rem !important;
    margin-top: 1rem !important;
  }

  /* Slider container */
  .home-wrapper > div:first-of-type {
    height: 380px !important;
    border-radius: 20px !important;
  }

  /* Slide content */
  .home-wrapper > div:first-of-type > div {
    padding: 0 1.5rem !important;
  }

  /* Hero title */
  .home-wrapper h1 {
    font-size: 1.8rem !important;
    margin-bottom: 0.8rem !important;
  }

  /* Hero subtitle */
  .home-wrapper p {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
  }

  /* Hero buttons */
  .home-wrapper button {
    padding: 0.7rem 1.2rem !important;
    font-size: 0.85rem !important;
  }

  /* Feature Cards Grid - Single Column */
  .home-wrapper div[style*="gridTemplateColumns"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Feature Cards - Glass Outer Card */
  .home-wrapper div[style*="gridTemplateColumns"] > div {
    padding: 1.25rem !important;
  }

  /* Section Headings */
  .home-wrapper h2 {
    font-size: 1.8rem !important;
  }

  .home-wrapper h3 {
    font-size: 1.3rem !important;
  }

  /* Product Showcase Grids */
  .home-wrapper div[style*="gridTemplateColumns: 'repeat(3, 1fr)'"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  /* Zig-Zag Feature Rows */
  .home-wrapper div[style*="flexWrap: 'wrap'"] {
    padding: 1.5rem !important;
    gap: 1.5rem !important;
    border-radius: 24px !important;
  }

  /* Feature Row Images */
  .home-wrapper div[style*="flex: '1 1 450px'"][style*="height: '380px'"] {
    height: 250px !important;
  }

  /* Feature Row Headings */
  .home-wrapper div[style*="flex: '1 1 450px'"] h2 {
    font-size: 1.5rem !important;
  }

  /* Feature Row Text */
  .home-wrapper div[style*="flex: '1 1 450px'"] p {
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
  }

  /* Circle Slider */
  .home-wrapper .slider-track {
    gap: 2rem !important;
  }

  .home-wrapper .circle-img-box {
    width: 100px !important;
    height: 100px !important;
  }

  .home-wrapper .circle-label {
    font-size: 0.75rem !important;
    padding: 5px 12px !important;
  }

  /* Comparison Table */
  .em-table-inner {
    padding: 2rem 1rem !important;
  }

  .em-table-title {
    font-size: 1.5rem !important;
  }

  .em-table-subtitle {
    font-size: 0.9rem !important;
  }

  .em-custom-table th,
  .em-custom-table td {
    padding: 0.8rem 0.6rem !important;
    font-size: 0.8rem !important;
  }

  /* FAQ Section */
  .home-wrapper div[style*="maxWidth: '900px'"] h2 {
    font-size: 1.75rem !important;
  }

  /* Newsletter / Contact Section */
  .home-wrapper div[style*="maxWidth: '700px'"] h2 {
    font-size: 1.8rem !important;
  }

  .home-wrapper div[style*="maxWidth: '700px'"] p {
    font-size: 0.9rem !important;
  }

  /* Product Detail Page */
  .product-detail-container {
    padding: 1rem 0.75rem !important;
  }

  /* Product Detail Title */
  .product-detail-container h1 {
    font-size: 1.8rem !important;
  }

  /* Product Detail Price */
  .product-detail-container div[style*="fontSize: '3.8rem'"] {
    font-size: 2rem !important;
  }

  /* Related Products Grid */
  .product-detail-container div[style*="gridTemplateColumns: 'repeat(3, 1fr)'"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Checkout Page */
  .checkout-page-container {
    padding: 1rem 0.75rem !important;
  }

  .checkout-page-container h2 {
    font-size: 1.75rem !important;
  }

  /* Cart Page */
  .product-detail-container h2 {
    font-size: 1.75rem !important;
  }
}

@media (max-width: 480px) {
  .home-wrapper > div:first-of-type {
    height: 320px !important;
  }

  .home-wrapper h1 {
    font-size: 1.5rem !important;
  }

  .home-wrapper p {
    font-size: 0.85rem !important;
  }

  .home-wrapper button {
    padding: 0.6rem 1rem !important;
    font-size: 0.8rem !important;
  }

  .home-wrapper h2 {
    font-size: 1.5rem !important;
  }

  .home-wrapper h3 {
    font-size: 1.15rem !important;
  }

  /* Product cards single column */
  .home-wrapper div[style*="gridTemplateColumns: 'repeat(3, 1fr)'"] {
    grid-template-columns: 1fr !important;
  }

  /* Circle slider smaller */
  .home-wrapper .circle-img-box {
    width: 80px !important;
    height: 80px !important;
  }

  .home-wrapper .circle-label {
    font-size: 0.7rem !important;
    padding: 4px 10px !important;
  }

  /* Feature row images */
  .home-wrapper div[style*="flex: '1 1 450px'"][style*="height: '380px'"] {
    height: 200px !important;
  }

  /* Comparison table scrollable */
  .em-table-inner {
    padding: 1.5rem 0.75rem !important;
  }

  .em-custom-table {
    min-width: 500px !important;
  }

  .em-table-title {
    font-size: 1.3rem !important;
  }
}

/* ============================================
   UTILITY - Prevent overflow & scroll issues
   ============================================ */

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Better touch targets on mobile */
@media (max-width: 768px) {
  button,
  a {
    -webkit-tap-highlight-color: transparent;
  }

  button:active,
  a:active {
    transform: scale(0.98);
  }
}

/* Fix iOS input zoom */
@media (max-width: 768px) {
  input,
  textarea,
  select {
    font-size: 16px !important;
  }
}

/* Smooth transitions for all */
* {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* ============================================
   FIX FOR STICKY HEADER ON MOBILE
   ============================================ */

@media (max-width: 768px) {
  .premium-header-wrapper {
    position: sticky;
    top: 0.5rem;
  }
}

/* ============================================
   HORIZONTAL SCROLL FOR TABLES ON MOBILE
   ============================================ */

@media (max-width: 768px) {
  div[style*="overflowX: 'auto'"],
  .em-table-inner > div {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}

/* ============================================
   PRODUCT DETAIL PAGE MOBILE
   ============================================ */

@media (max-width: 768px) {
  /* Main hero flex container */
  .product-detail-container > div > div {
    gap: 2rem !important;
  }

  /* Product image */
  .product-detail-container img[style*="maxWidth: '500px'"] {
    max-width: 100% !important;
    max-height: 350px !important;
  }

  /* Detail specs grid */
  .product-detail-container div[style*="minmax(350px, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Reviews section */
  .product-detail-container div[style*="minmax(380px, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   CHECKOUT PAGE MOBILE
   ============================================ */

@media (max-width: 768px) {
  .checkout-page-container > div {
    flex-direction: column !important;
  }

  .checkout-page-container div[style*="position: 'sticky'"] {
    position: static !important;
  }
}

/* ============================================
   CART PAGE MOBILE
   ============================================ */

@media (max-width: 768px) {
  /* Cart items */
  div[style*="flex: '2 1 600px'"] {
    flex: 1 1 100% !important;
  }

  /* Order summary */
  div[style*="flex: '1 1 300px'"] {
    flex: 1 1 100% !important;
  }
}

/* ============================================
   ANIMATIONS - Performance on mobile
   ============================================ */

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

/* ============================================
   PRINT STYLES (Optional)
   ============================================ */

@media print {
  .premium-header-wrapper,
  .footer,
  .icon-btn,
  .cta-btn {
    display: none !important;
  }
}
/* ============================================
   FEATURES GRID - FULLY RESPONSIVE
   Mobile: 1 column | Tablet: 2 columns | Desktop: 4 columns
   ============================================ */

/* ---------- DEFAULT (Desktop) ---------- */
.features-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* 💎 Premium Animated Glassmorphic Card Body */
.feature-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.01) 100%), rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 2.2rem 1.8rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5),
              inset 0 0 20px rgba(255, 255, 255, 0.03);
}

/* 🌈 Moving Dynamic Gradient Background Mesh */
.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.15), rgba(129, 140, 248, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(0.8);
  pointer-events: none;
  z-index: 0;
}

/* ⚡ Top Border Highlight Ray Animation */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, #818cf8, transparent);
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7),
              0 0 40px -5px rgba(56, 189, 248, 0.25),
              inset 0 0 25px rgba(56, 189, 248, 0.1);
}

.feature-card:hover::after {
  opacity: 1;
  transform: scale(1) rotate(10deg);
}

.feature-card:hover::before {
  left: 100%;
}

/* 🎨 Ultra-Glossy Animated Icon Box */
.icon-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(37, 99, 235, 0.1));
  border: 1px solid rgba(56, 189, 248, 0.3);
  margin-bottom: 1.5rem;
  color: #38bdf8;
  box-shadow: 0 10px 25px -5px rgba(56, 189, 248, 0.3),
              inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .icon-wrapper {
  transform: scale(1.15) rotate(-6deg);
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.5),
              0 0 20px rgba(255, 255, 255, 0.4);
}

.icon-wrapper svg {
  width: 28px;
  height: 28px;
  transition: all 0.4s ease;
}

/* Icon Animations */
@keyframes pulse-lightning {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(56,189,248,0.5)); }
  50% { transform: scale(1.18); filter: drop-shadow(0 0 10px rgba(56,189,248,0.9)); }
}
.feature-card:hover .delivery-icon {
  animation: pulse-lightning 1.2s infinite ease-in-out;
}

@keyframes shield-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px) scale(1.05); }
}
.feature-card:hover .shield-icon {
  animation: shield-bounce 1s infinite ease-in-out;
}

@keyframes card-flip {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(12deg) scale(1.1); }
}
.feature-card:hover .cash-icon {
  animation: card-flip 1s infinite ease-in-out;
}

@keyframes headset-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}
.feature-card:hover .support-icon {
  animation: headset-wiggle 0.8s infinite ease-in-out;
}

/* 📝 Typography & Layering */
.card-content-box {
  position: relative;
  z-index: 1;
}

.card-title {
  color: #f8fafc;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.6rem 0;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card-description {
  color: #94a3b8;
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
}

/* ============================================
   📱 TABLET (Max Width: 1024px) - 2 Columns
   ============================================ */
@media (max-width: 1024px) {
  .features-grid-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
    padding: 1.5rem 0 !important;
  }

  .feature-card {
    padding: 1.8rem 1.5rem;
    border-radius: 24px;
  }

  .icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    margin-bottom: 1.2rem;
  }

  .icon-wrapper svg {
    width: 24px;
    height: 24px;
  }

  .card-title {
    font-size: 1.15rem;
  }

  .card-description {
    font-size: 0.88rem;
  }
}

/* ============================================
   📱 MOBILE (Max Width: 768px) - 1 Column (ONE BY ONE)
   ============================================ */
@media (max-width: 768px) {
  .features-grid-wrapper {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    padding: 1rem 0.5rem !important;
    max-width: 100% !important;
  }

  .feature-card {
    padding: 1.6rem 1.4rem;
    border-radius: 22px;
    /* Mobile par hover effect hatao - touch device hai */
    transform: none !important;
  }

  .feature-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7),
                0 0 30px -5px rgba(56, 189, 248, 0.25);
  }

  .feature-card:hover::before {
    left: -100%; /* Mobile par top ray animation off */
  }

  /* Icon + Text side by side on mobile for compact look */
  .feature-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .icon-wrapper {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .icon-wrapper svg {
    width: 22px;
    height: 22px;
  }

  .card-content-box {
    flex: 1;
    min-width: 0;
  }

  .card-title {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    line-height: 1.3;
  }

  .card-description {
    font-size: 0.85rem;
    line-height: 1.55;
  }
}

/* ============================================
   📱 SMALL MOBILE (Max Width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .features-grid-wrapper {
    gap: 1rem !important;
    padding: 0.75rem 0.25rem !important;
  }

  .feature-card {
    padding: 1.3rem 1.1rem;
    border-radius: 18px;
    gap: 1rem;
  }

  .icon-wrapper {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
  }

  .icon-wrapper svg {
    width: 20px;
    height: 20px;
  }

  .card-title {
    font-size: 0.98rem;
    margin-bottom: 0.3rem;
  }

  .card-description {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* ============================================
   📱 EXTRA SMALL MOBILE (Max Width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .feature-card {
    padding: 1.1rem 0.9rem;
    border-radius: 16px;
    gap: 0.85rem;
  }

  .icon-wrapper {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
  }

  .icon-wrapper svg {
    width: 18px;
    height: 18px;
  }

  .card-title {
    font-size: 0.9rem;
  }

  .card-description {
    font-size: 0.75rem;
    line-height: 1.45;
  }
}

/* ============================================
   📱 VERTICAL LAYOUT (Optional - agar icon upar chahiye)
   Agar aap mobile par icon UPAR aur text NEECHE chahte ho,
   to ye class use karo. Default horizontal hai (icon + text side by side)
   ============================================ */
@media (max-width: 768px) {
  /* Uncomment karo agar vertical layout chahiye */
  /*
  .feature-card {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  
  .icon-wrapper {
    margin-bottom: 1rem !important;
  }
  */
}
/* ============================================
   SUPER CARDS GRID - MOBILE SPECIAL LAYOUT
   Desktop: Center big + 4 corner cards
   Mobile: Center big + 2 up + 2 down
   ============================================ */

/* ---------- Background Cyberpunk Grid Floor Effect ---------- */
.super-grid-bg {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background-image: 
    linear-gradient(rgba(168, 85, 247, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(600px) rotateX(60deg);
  pointer-events: none;
  z-index: 0;
}

@keyframes superGlowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
}

@keyframes superBorderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes superFloatCenter {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-12px) scale(1.01); }
}

@keyframes superFloatSmall {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(0.8deg); }
}

/* ---------- Outer Container Grid (Desktop) ---------- */
.super-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* ---------- Main Card Shell ---------- */
.super-card {
  position: relative;
  border-radius: 28px;
  padding: 1.5px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(168, 85, 247, 0.2);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Animated Neon Gradient Border Beam */
.super-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0 300deg, #a855f7 320deg, #ec4899 340deg, #3b82f6 360deg);
  animation: superBorderRotate 8s linear infinite;
  z-index: 1;
}

.super-card-inner {
  position: relative;
  z-index: 2;
  background: #090d16;
  border-radius: 26px;
  overflow: hidden;
  height: 100%;
}

.super-card:hover {
  transform: translateY(-12px) scale(1.03) !important;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.95), 0 0 60px rgba(168, 85, 247, 0.45);
}

.super-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.15) brightness(0.92);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.super-card:hover .super-img {
  transform: scale(1.08);
}

/* Ultra Badge with Glow Dot */
.super-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 100px;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  z-index: 5;
}

.super-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 10px #a855f7, 0 0 20px #a855f7;
}

/* Center Main Card */
.super-center-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  height: 520px;
  animation: superFloatCenter 4s ease-in-out infinite alternate;
}

.super-center-card .super-badge {
  font-size: 1.05rem;
  padding: 0.8rem 2rem;
  border-color: rgba(168, 85, 247, 0.6);
  background: rgba(15, 23, 42, 0.92);
}

/* Corner Small Cards */
.super-small-card {
  height: 235px;
  animation: superFloatSmall 5s ease-in-out infinite alternate;
}

/* Ambient Background Glow */
.super-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.28) 0%, rgba(124, 58, 237, 0.12) 50%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
  animation: superGlowPulse 6s infinite alternate;
}

/* ============================================
   📱 TABLET (Max Width: 900px)
   ============================================ */
@media (max-width: 900px) {
  .super-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 2rem;
  }
  .super-center-card {
    grid-column: 1 / span 2;
    grid-row: auto;
    height: 400px;
  }
  .super-small-card {
    height: 210px;
  }
}

/* ============================================
   📱 MOBILE (Max Width: 768px)
   SPECIAL LAYOUT: 2 Top + Center Big + 2 Bottom
   ============================================ */
@media (max-width: 768px) {
  /* Main wrapper padding reduce */
  div[style*="maxWidth: '1200px'"][style*="padding: '4rem 1.5rem'"] {
    padding: 2rem 0.75rem !important;
    margin: 3rem auto !important;
  }

  .super-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 1rem !important;
    padding: 0 !important;
  }

  /* 🔥 TOP 2 CARDS: Smartphone (1st) & Tablet (3rd) */
  .super-card:nth-child(1) {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .super-card:nth-child(3) {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  /* 🔥 CENTER BIG CARD: Pro Laptop (2nd) */
  .super-card:nth-child(2) {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    height: 300px !important;
    animation: superFloatCenter 4s ease-in-out infinite alternate !important;
  }

  .super-card:nth-child(2) .super-badge {
    font-size: 0.85rem !important;
    padding: 0.55rem 1.2rem !important;
  }

  /* 🔥 BOTTOM 2 CARDS: Chromebook (4th) & Smartwatch (5th) */
  .super-card:nth-child(4) {
    grid-column: 1 !important;
    grid-row: 3 !important;
  }

  .super-card:nth-child(5) {
    grid-column: 2 !important;
    grid-row: 3 !important;
  }

  /* Small cards (top & bottom) */
  .super-card:nth-child(1),
  .super-card:nth-child(3),
  .super-card:nth-child(4),
  .super-card:nth-child(5) {
    height: 150px !important;
    border-radius: 20px !important;
  }

  /* Small cards ke badges chhote karo */
  .super-card:nth-child(1) .super-badge,
  .super-card:nth-child(3) .super-badge,
  .super-card:nth-child(4) .super-badge,
  .super-card:nth-child(5) .super-badge {
    font-size: 0.65rem !important;
    padding: 0.4rem 0.85rem !important;
    bottom: 0.75rem !important;
    gap: 0.4rem !important;
  }

  .super-card:nth-child(1) .super-badge-dot,
  .super-card:nth-child(3) .super-badge-dot,
  .super-card:nth-child(4) .super-badge-dot,
  .super-card:nth-child(5) .super-badge-dot {
    width: 5px !important;
    height: 5px !important;
  }

  /* Card inner border radius */
  .super-card-inner {
    border-radius: 18px !important;
  }

  /* Center card ka inner radius */
  .super-card:nth-child(2) .super-card-inner {
    border-radius: 22px !important;
  }

  /* Ambient glow orb chhota karo */
  .super-glow-orb {
    width: 300px !important;
    height: 300px !important;
  }

  /* Grid background chhota */
  .super-grid-bg {
    background-size: 25px 25px !important;
  }

  /* Mobile par hover scale kam karo */
  .super-card:hover {
    transform: translateY(-6px) scale(1.02) !important;
  }
}

/* ============================================
   📱 SMALL MOBILE (Max Width: 480px)
   ============================================ */
@media (max-width: 480px) {
  div[style*="maxWidth: '1200px'"][style*="padding: '4rem 1.5rem'"] {
    padding: 1.5rem 0.5rem !important;
    margin: 2rem auto !important;
  }

  .super-container {
    gap: 0.75rem !important;
  }

  /* Small cards */
  .super-card:nth-child(1),
  .super-card:nth-child(3),
  .super-card:nth-child(4),
  .super-card:nth-child(5) {
    height: 130px !important;
    border-radius: 16px !important;
  }

  /* Center card */
  .super-card:nth-child(2) {
    height: 260px !important;
    border-radius: 20px !important;
  }

  /* Badges chhote */
  .super-card:nth-child(1) .super-badge,
  .super-card:nth-child(3) .super-badge,
  .super-card:nth-child(4) .super-badge,
  .super-card:nth-child(5) .super-badge {
    font-size: 0.55rem !important;
    padding: 0.3rem 0.7rem !important;
    bottom: 0.6rem !important;
  }

  .super-card:nth-child(2) .super-badge {
    font-size: 0.7rem !important;
    padding: 0.45rem 1rem !important;
    bottom: 0.85rem !important;
  }

  .super-card-inner {
    border-radius: 14px !important;
  }

  .super-card:nth-child(2) .super-card-inner {
    border-radius: 18px !important;
  }

  .super-glow-orb {
    width: 220px !important;
    height: 220px !important;
  }

  .super-grid-bg {
    background-size: 20px 20px !important;
  }
}

/* ============================================
   📱 EXTRA SMALL MOBILE (Max Width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .super-container {
    gap: 0.6rem !important;
  }

  .super-card:nth-child(1),
  .super-card:nth-child(3),
  .super-card:nth-child(4),
  .super-card:nth-child(5) {
    height: 110px !important;
    border-radius: 14px !important;
  }

  .super-card:nth-child(2) {
    height: 220px !important;
  }

  .super-card:nth-child(1) .super-badge,
  .super-card:nth-child(3) .super-badge,
  .super-card:nth-child(4) .super-badge,
  .super-card:nth-child(5) .super-badge {
    font-size: 0.5rem !important;
    padding: 0.25rem 0.6rem !important;
    gap: 0.3rem !important;
  }

  .super-card:nth-child(2) .super-badge {
    font-size: 0.65rem !important;
    padding: 0.4rem 0.85rem !important;
  }
}
/* ============================================
   FOOTER - FULLY RESPONSIVE
   Desktop: Left/Right Split | Mobile: Fully Centered
   ============================================ */

/* ---------- BASE FOOTER STYLES ---------- */
.footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  padding: 4rem 2rem 2rem 2rem;
  color: #fff;
}

.footer > div {
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- TOP SECTION (Brand + Links) ---------- */
.footer > div > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

/* Brand Column */
.footer > div > div:first-child > div:first-child {
  text-align: left;
  max-width: 420px;
}

.footer > div > div:first-child > div:first-child h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin: 0 0 1rem 0;
  color: #fff;
  text-align: left;
}

.footer > div > div:first-child > div:first-child h2 span {
  color: #38bdf8;
}

.footer > div > div:first-child > div:first-child p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
  text-align: left;
}

/* Links Columns Container */
.footer > div > div:first-child > div:last-child {
  display: flex;
  gap: 4rem;
  text-wrap: nowrap;
}

/* Each Link Column */
.footer > div > div:first-child > div:last-child > div {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: left;
}

.footer > div > div:first-child > div:last-child > div h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
}

.footer > div > div:first-child > div:last-child > div a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer > div > div:first-child > div:last-child > div a:hover {
  color: #38bdf8;
}

/* ---------- MIDDLE SECTION (Social + Admin) ---------- */
.footer > div > div:nth-child(2) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Social Icons Section */
.footer > div > div:nth-child(2) > div:first-child {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer > div > div:nth-child(2) > div:first-child > span {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer > div > div:nth-child(2) > div:first-child > div {
  display: flex;
  gap: 1rem;
}

.btn-social-icon {
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-social-icon svg {
  width: 20px;
  height: 20px;
}

.btn-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* ---------- BOTTOM SECTION (Copyright) ---------- */
.footer > div > div:last-child {
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.footer > div > div:last-child p {
  margin: 0;
}

.footer > div > div:last-child p span {
  color: #38bdf8;
  font-weight: bold;
}

/* ============================================
   📱 TABLET (Max Width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem 1.5rem;
  }

  .footer > div > div:first-child {
    gap: 2.5rem;
  }

  .footer > div > div:first-child > div:first-child h2 {
    font-size: 2rem;
  }

  .footer > div > div:first-child > div:last-child {
    gap: 3rem;
  }
}

/* ============================================
   📱 MOBILE (Max Width: 768px)
   EVERYTHING CENTERED
   ============================================ */
@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 1rem 1.5rem 1rem !important;
  }

  /* ---------- TOP SECTION: Stack & Center ---------- */
  .footer > div > div:first-child {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  /* Brand Column - Center */
  .footer > div > div:first-child > div:first-child {
    text-align: center !important;
    max-width: 100% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer > div > div:first-child > div:first-child h2 {
    font-size: 1.9rem !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    width: 100% !important;
  }

  .footer > div > div:first-child > div:first-child p {
    text-align: center !important;
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    max-width: 500px !important;
    margin: 0 auto !important;
  }

  /* Links Columns Container - Center */
  .footer > div > div:first-child > div:last-child {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: center !important;
    gap: 3rem !important;
    width: 100% !important;
    text-wrap: wrap !important;
  }

  /* Each Link Column - Center */
  .footer > div > div:first-child > div:last-child > div {
    text-align: center !important;
    align-items: center !important;
    gap: 0.6rem !important;
  }

  .footer > div > div:first-child > div:last-child > div h3 {
    text-align: center !important;
    font-size: 1rem !important;
    margin-bottom: 0.4rem !important;
  }

  .footer > div > div:first-child > div:last-child > div a {
    text-align: center !important;
    font-size: 0.88rem !important;
  }

  /* ---------- MIDDLE SECTION: Stack & Center ---------- */
  .footer > div > div:nth-child(2) {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
    padding-top: 2rem !important;
  }

  /* Social Icons Section - Center */
  .footer > div > div:nth-child(2) > div:first-child {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  .footer > div > div:nth-child(2) > div:first-child > span {
    text-align: center !important;
    font-size: 0.85rem !important;
  }

  .footer > div > div:nth-child(2) > div:first-child > div {
    justify-content: center !important;
    gap: 0.85rem !important;
  }

  .btn-social-icon {
    width: 38px !important;
    height: 38px !important;
  }

  .btn-social-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  /* Admin Button Section - Center */
  .footer > div > div:nth-child(2) > div:last-child {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .footer > div > div:nth-child(2) > div:last-child button {
    padding: 0.65rem 1.5rem !important;
    font-size: 0.85rem !important;
    justify-content: center !important;
  }

  .footer > div > div:nth-child(2) > div:last-child button svg {
    width: 16px !important;
    height: 16px !important;
  }

  /* ---------- BOTTOM SECTION: Center ---------- */
  .footer > div > div:last-child {
    text-align: center !important;
    font-size: 0.8rem !important;
    padding-top: 1.25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    line-height: 1.6 !important;
  }

  .footer > div > div:last-child p {
    text-align: center !important;
  }
}

/* ============================================
   📱 SMALL MOBILE (Max Width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .footer {
    padding: 2rem 0.75rem 1.25rem 0.75rem !important;
  }

  .footer > div > div:first-child {
    gap: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .footer > div > div:first-child > div:first-child h2 {
    font-size: 1.6rem !important;
  }

  .footer > div > div:first-child > div:first-child p {
    font-size: 0.82rem !important;
    line-height: 1.6 !important;
    padding: 0 0.5rem !important;
  }

  /* Links Columns - Stack vertically on small mobile */
  .footer > div > div:first-child > div:last-child {
    flex-direction: column !important;
    gap: 2rem !important;
    width: 100% !important;
  }

  .footer > div > div:first-child > div:last-child > div {
    width: 100% !important;
  }

  .footer > div > div:first-child > div:last-child > div h3 {
    font-size: 0.95rem !important;
  }

  .footer > div > div:first-child > div:last-child > div a {
    font-size: 0.85rem !important;
  }

  /* Middle Section */
  .footer > div > div:nth-child(2) {
    gap: 1.25rem !important;
  }

  .footer > div > div:nth-child(2) > div:first-child > span {
    font-size: 0.8rem !important;
  }

  .btn-social-icon {
    width: 36px !important;
    height: 36px !important;
  }

  .btn-social-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .footer > div > div:nth-child(2) > div:last-child button {
    padding: 0.6rem 1.25rem !important;
    font-size: 0.8rem !important;
  }

  /* Bottom */
  .footer > div > div:last-child {
    font-size: 0.75rem !important;
  }
}

/* ============================================
   📱 EXTRA SMALL MOBILE (Max Width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .footer > div > div:first-child > div:first-child h2 {
    font-size: 1.4rem !important;
  }

  .footer > div > div:first-child > div:first-child p {
    font-size: 0.78rem !important;
  }

  .footer > div > div:first-child > div:last-child > div h3 {
    font-size: 0.88rem !important;
  }

  .footer > div > div:first-child > div:last-child > div a {
    font-size: 0.8rem !important;
  }

  .btn-social-icon {
    width: 34px !important;
    height: 34px !important;
  }

  .footer > div > div:nth-child(2) > div:last-child button {
    padding: 0.55rem 1.1rem !important;
    font-size: 0.75rem !important;
  }

  .footer > div > div:last-child {
    font-size: 0.7rem !important;
  }
}
/* ============================================
   PREMIUM SHOWCASE SECTION - FULLY RESPONSIVE
   ============================================ */

/* ---------- MAIN SECTION WRAPPER ---------- */
.showcase-section {
  margin-top: 5rem;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}

/* ============================================
   SECTION HEADING
   ============================================ */
.showcase-heading {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.showcase-badge {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
}

.showcase-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(to right, #fff, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.8rem 0 0.5rem 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.showcase-description {
  color: #94a3b8;
  font-size: 1.18rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.showcase-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-empty p {
  color: #94a3b8;
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   CATEGORY BLOCK
   ============================================ */
.showcase-category-block {
  margin-bottom: 5rem;
}

/* Category Heading Wrapper */
.showcase-category-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.showcase-category-title {
  font-size: 2rem;
  font-weight: 800;
  color: #f8fafc;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.showcase-category-title .emoji {
  font-size: 1.6rem;
  opacity: 0.8;
}

.showcase-category-tag {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-size: 0.8rem;
  font-weight: bold;
  white-space: nowrap;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.showcase-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   PRODUCT CARD
   ============================================ */
.showcase-product-card {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

.showcase-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.9), 0 0 40px -5px rgba(56, 189, 248, 0.35);
}

/* Image Box */
.showcase-image-box {
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.18) 0%, rgba(15, 23, 42, 0) 70%);
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.showcase-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s ease;
}

.showcase-product-card:hover .showcase-image-box img {
  transform: scale(1.08);
}

/* Content Box */
.showcase-product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

/* Product Name */
.showcase-product-name {
  cursor: pointer;
  font-size: 1.25rem;
  color: #f8fafc;
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.showcase-product-name:hover {
  color: #38bdf8;
}

/* Ratings Row */
.showcase-ratings {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.2rem 0;
}

.showcase-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.showcase-rating-number {
  color: #f8fafc;
  font-size: 0.85rem;
  font-weight: bold;
}

.showcase-reviews-count {
  color: #64748b;
  font-size: 0.8rem;
}

/* Price Row */
.showcase-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.2rem;
  flex-wrap: wrap;
}

.showcase-currency {
  font-size: 0.85rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.showcase-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #38bdf8;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.showcase-old-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #64748b;
  margin-left: 0.3rem;
}

/* Action Buttons */
.showcase-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.showcase-btn-cart {
  flex: 1;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-weight: bold;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.showcase-btn-cart:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.showcase-btn-details {
  flex: 1;
  padding: 0.8rem;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
  transition: all 0.3s ease;
}

.showcase-btn-details:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.5);
}

/* ============================================
   VIEW ALL BUTTON
   ============================================ */
.showcase-view-all-wrap {
  text-align: center;
  margin-top: 1rem;
  padding: 0 1rem;
}

.showcase-view-all-btn {
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
  transition: transform 0.3s ease;
}

.showcase-view-all-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.6);
}

/* ============================================
   📱 TABLET (Max Width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .showcase-section {
    margin-top: 4rem;
    padding: 0 1.25rem;
  }

  .showcase-heading {
    margin-bottom: 3rem;
  }

  .showcase-title {
    font-size: 2.8rem;
  }

  .showcase-description {
    font-size: 1.08rem;
  }

  .showcase-category-block {
    margin-bottom: 4rem;
  }

  .showcase-category-title {
    font-size: 1.75rem;
  }

  .showcase-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .showcase-image-box {
    height: 220px;
  }
}

/* ============================================
   📱 MOBILE (Max Width: 768px)
   SINGLE COLUMN LAYOUT
   ============================================ */
@media (max-width: 768px) {
  .showcase-section {
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding: 0 0.85rem;
  }

  /* ---------- HEADING ---------- */
  .showcase-heading {
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }

  .showcase-badge {
    font-size: 0.7rem;
    padding: 5px 14px;
    letter-spacing: 1.5px;
    border-radius: 25px;
  }

  .showcase-title {
    font-size: 2rem;
    margin: 0.7rem 0 0.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.3px;
  }

  .showcase-description {
    font-size: 0.92rem;
    line-height: 1.6;
    padding: 0 0.25rem;
  }

  /* ---------- EMPTY STATE ---------- */
  .showcase-empty {
    padding: 2.5rem 1.25rem;
    border-radius: 18px;
  }

  .showcase-empty p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* ---------- CATEGORY BLOCK ---------- */
  .showcase-category-block {
    margin-bottom: 3rem;
  }

  .showcase-category-heading {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.85rem;
    max-width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    flex-direction: column;
    gap: 0.6rem;
  }

  .showcase-category-title {
    font-size: 1.4rem;
    gap: 8px;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .showcase-category-title .emoji {
    font-size: 1.3rem;
  }

  .showcase-category-tag {
    font-size: 0.7rem;
    padding: 4px 12px;
  }

  /* ---------- PRODUCTS GRID - SINGLE COLUMN ---------- */
  .showcase-products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 450px;
    margin: 0 auto;
  }

  /* ---------- PRODUCT CARD ---------- */
  .showcase-product-card {
    border-radius: 20px;
  }

  .showcase-image-box {
    height: 230px;
    padding: 1.25rem;
  }

  .showcase-product-content {
    padding: 1.25rem;
    gap: 0.7rem;
  }

  .showcase-product-name {
    font-size: 1.1rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
  }

  .showcase-ratings {
    gap: 0.4rem;
  }

  .showcase-stars {
    font-size: 0.85rem;
  }

  .showcase-rating-number {
    font-size: 0.8rem;
  }

  .showcase-reviews-count {
    font-size: 0.75rem;
  }

  .showcase-price-row {
    gap: 0.4rem;
  }

  .showcase-currency {
    font-size: 0.75rem;
  }

  .showcase-price {
    font-size: 1.55rem;
  }

  .showcase-old-price {
    font-size: 0.8rem;
  }

  .showcase-actions {
    gap: 0.6rem;
  }

  .showcase-btn-cart,
  .showcase-btn-details {
    padding: 0.75rem 0.5rem;
    font-size: 0.82rem;
    border-radius: 10px;
  }

  /* ---------- VIEW ALL BUTTON ---------- */
  .showcase-view-all-wrap {
    margin-top: 1.5rem;
    padding: 0 0.5rem;
  }

  .showcase-view-all-btn {
    padding: 0.95rem 1.75rem;
    font-size: 0.95rem;
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
  }
}

/* ============================================
   📱 SMALL MOBILE (Max Width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .showcase-section {
    margin-top: 2.5rem;
    padding: 0 0.65rem;
  }

  .showcase-heading {
    margin-bottom: 2rem;
    padding: 0 0.35rem;
  }

  .showcase-badge {
    font-size: 0.62rem;
    padding: 4px 12px;
    letter-spacing: 1.2px;
    border-radius: 20px;
  }

  .showcase-title {
    font-size: 1.65rem;
    margin: 0.6rem 0 0.4rem 0;
    letter-spacing: -0.2px;
  }

  .showcase-description {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .showcase-empty {
    padding: 2rem 1rem;
  }

  .showcase-empty p {
    font-size: 0.88rem;
  }

  .showcase-category-block {
    margin-bottom: 2.5rem;
  }

  .showcase-category-heading {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
  }

  .showcase-category-title {
    font-size: 1.2rem;
    gap: 6px;
  }

  .showcase-category-title .emoji {
    font-size: 1.1rem;
  }

  .showcase-category-tag {
    font-size: 0.65rem;
    padding: 3px 10px;
  }

  .showcase-products-grid {
    gap: 1rem;
    max-width: 100%;
  }

  .showcase-product-card {
    border-radius: 18px;
  }

  .showcase-image-box {
    height: 200px;
    padding: 1rem;
  }

  .showcase-product-content {
    padding: 1.1rem;
    gap: 0.6rem;
  }

  .showcase-product-name {
    font-size: 1rem;
  }

  .showcase-stars {
    font-size: 0.8rem;
  }

  .showcase-rating-number {
    font-size: 0.75rem;
  }

  .showcase-reviews-count {
    font-size: 0.7rem;
  }

  .showcase-price {
    font-size: 1.4rem;
  }

  .showcase-currency {
    font-size: 0.7rem;
  }

  .showcase-old-price {
    font-size: 0.75rem;
  }

  .showcase-btn-cart,
  .showcase-btn-details {
    padding: 0.7rem 0.4rem;
    font-size: 0.78rem;
  }

  .showcase-view-all-btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.88rem;
    border-radius: 14px;
  }
}

/* ============================================
   📱 EXTRA SMALL MOBILE (Max Width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .showcase-section {
    padding: 0 0.5rem;
  }

  .showcase-heading {
    padding: 0 0.25rem;
  }

  .showcase-title {
    font-size: 1.45rem;
  }

  .showcase-description {
    font-size: 0.78rem;
  }

  .showcase-category-title {
    font-size: 1.1rem;
  }

  .showcase-category-tag {
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  .showcase-image-box {
    height: 180px;
    padding: 0.85rem;
  }

  .showcase-product-content {
    padding: 0.95rem;
  }

  .showcase-product-name {
    font-size: 0.95rem;
  }

  .showcase-price {
    font-size: 1.25rem;
  }

  .showcase-btn-cart,
  .showcase-btn-details {
    padding: 0.65rem 0.35rem;
    font-size: 0.72rem;
  }

  .showcase-view-all-btn {
    padding: 0.8rem 1.25rem;
    font-size: 0.82rem;
  }
}

/* ============================================
   📱 TINY MOBILE (Max Width: 320px)
   ============================================ */
@media (max-width: 320px) {
  .showcase-title {
    font-size: 1.3rem;
  }

  .showcase-category-title {
    font-size: 1rem;
  }

  .showcase-product-name {
    font-size: 0.9rem;
  }

  .showcase-price {
    font-size: 1.15rem;
  }

  .showcase-btn-cart,
  .showcase-btn-details {
    font-size: 0.68rem;
    padding: 0.6rem 0.3rem;
  }
}
/* ============================================
   RELATED PRODUCTS SECTION - FULLY RESPONSIVE
   ============================================ */

/* ---------- MAIN WRAPPER ---------- */
.related-products-section {
  margin-top: 7rem;
  padding: 0 1.5rem;
}

/* ---------- HEADING ---------- */
.related-heading {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.related-badge {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  padding: 6px 20px;
  border-radius: 30px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
}

.related-title {
  font-size: 3rem;
  color: #fff;
  margin: 1rem 0 0.5rem 0;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
}

.related-subtitle {
  color: #94a3b8;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* ---------- GRID ---------- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- CARD ---------- */
.related-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.related-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.8), 0 0 30px -5px rgba(56, 189, 248, 0.25);
}

/* ---------- IMAGE BOX ---------- */
.related-image-box {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow: hidden;
  transition: background 0.3s ease;
}

.related-image-box:hover {
  background: rgba(56, 189, 248, 0.05);
}

.related-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s ease;
}

.related-image-box:hover img {
  transform: scale(1.1);
}

/* ---------- DETAILS BOX ---------- */
.related-details {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---------- PRODUCT NAME ---------- */
.related-product-name {
  cursor: pointer;
  font-size: 1.4rem;
  color: #f8fafc;
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.related-product-name:hover {
  color: #38bdf8;
}

/* ---------- PRICE ---------- */
.related-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: #38bdf8;
  margin-top: 0.5rem;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

/* ---------- ACTION BUTTONS ---------- */
.related-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.related-btn-cart {
  flex: 1;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.related-btn-cart:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.related-btn-explore {
  flex: 1;
  padding: 1rem;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.related-btn-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.5);
}

/* ============================================
   📱 TABLET (Max Width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .related-products-section {
    margin-top: 5rem;
    padding: 0 1.25rem;
  }

  .related-heading {
    margin-bottom: 3rem;
  }

  .related-title {
    font-size: 2.4rem;
  }

  .related-subtitle {
    font-size: 1.05rem;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .related-image-box {
    height: 250px;
    padding: 1.75rem;
  }

  .related-details {
    padding: 1.5rem;
  }

  .related-product-name {
    font-size: 1.25rem;
  }

  .related-price {
    font-size: 1.45rem;
  }
}

/* ============================================
   📱 MOBILE (Max Width: 768px)
   SINGLE COLUMN
   ============================================ */
@media (max-width: 768px) {
  .related-products-section {
    margin-top: 4rem;
    padding: 0 0.85rem;
  }

  /* ---------- HEADING ---------- */
  .related-heading {
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }

  .related-badge {
    font-size: 0.7rem;
    padding: 5px 14px;
    letter-spacing: 1.5px;
    border-radius: 25px;
  }

  .related-title {
    font-size: 1.9rem;
    margin: 0.7rem 0 0.5rem 0;
    letter-spacing: -0.3px;
    line-height: 1.2;
  }

  .related-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
    padding: 0 0.25rem;
  }

  /* ---------- GRID - SINGLE COLUMN ---------- */
  .related-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 450px;
    margin: 0 auto;
  }

  /* ---------- CARD ---------- */
  .related-card {
    border-radius: 18px;
  }

  .related-image-box {
    height: 240px;
    padding: 1.5rem;
  }

  .related-details {
    padding: 1.35rem;
    gap: 0.7rem;
  }

  /* ---------- PRODUCT NAME - 2 Lines Allowed ---------- */
  .related-product-name {
    font-size: 1.15rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
  }

  .related-price {
    font-size: 1.45rem;
    margin-top: 0.25rem;
  }

  /* ---------- BUTTONS ---------- */
  .related-actions {
    gap: 0.7rem;
    margin-top: 0.75rem;
  }

  .related-btn-cart,
  .related-btn-explore {
    padding: 0.8rem 0.6rem;
    font-size: 0.85rem;
    border-radius: 10px;
  }
}

/* ============================================
   📱 SMALL MOBILE (Max Width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .related-products-section {
    margin-top: 3rem;
    padding: 0 0.65rem;
  }

  .related-heading {
    margin-bottom: 2rem;
    padding: 0 0.35rem;
  }

  .related-badge {
    font-size: 0.62rem;
    padding: 4px 12px;
    letter-spacing: 1.2px;
    border-radius: 20px;
  }

  .related-title {
    font-size: 1.55rem;
    margin: 0.6rem 0 0.4rem 0;
    letter-spacing: -0.2px;
  }

  .related-subtitle {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .related-grid {
    gap: 1rem;
    max-width: 100%;
  }

  .related-card {
    border-radius: 16px;
  }

  .related-image-box {
    height: 200px;
    padding: 1.25rem;
  }

  .related-details {
    padding: 1.1rem;
    gap: 0.6rem;
  }

  .related-product-name {
    font-size: 1rem;
  }

  .related-price {
    font-size: 1.3rem;
  }

  .related-actions {
    gap: 0.6rem;
    margin-top: 0.6rem;
  }

  .related-btn-cart,
  .related-btn-explore {
    padding: 0.7rem 0.5rem;
    font-size: 0.8rem;
    border-radius: 9px;
  }
}

/* ============================================
   📱 EXTRA SMALL MOBILE (Max Width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .related-products-section {
    margin-top: 2.5rem;
    padding: 0 0.5rem;
  }

  .related-title {
    font-size: 1.35rem;
  }

  .related-subtitle {
    font-size: 0.78rem;
  }

  .related-image-box {
    height: 180px;
    padding: 1rem;
  }

  .related-product-name {
    font-size: 0.95rem;
  }

  .related-price {
    font-size: 1.15rem;
  }

  .related-btn-cart,
  .related-btn-explore {
    padding: 0.65rem 0.4rem;
    font-size: 0.75rem;
  }
}

/* ============================================
   📱 TINY MOBILE (Max Width: 320px)
   ============================================ */
@media (max-width: 320px) {
  .related-title {
    font-size: 1.2rem;
  }

  .related-product-name {
    font-size: 0.9rem;
  }

  .related-price {
    font-size: 1.05rem;
  }

  .related-btn-cart,
  .related-btn-explore {
    font-size: 0.7rem;
    padding: 0.6rem 0.3rem;
  }
}
/* ============================================
   PREMIUM BACK BUTTON - CENTERED & RESPONSIVE
   ============================================ */

/* ---------- WRAPPER (Centers the button) ---------- */
.back-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
  width: 100%;
}

/* ---------- PREMIUM BACK BUTTON ---------- */
.premium-back-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.85rem 2rem;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 50px;
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.5),
              0 0 20px -5px rgba(56, 189, 248, 0.15),
              inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

/* ---------- Animated Top Light Beam ---------- */
.premium-back-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, #818cf8, transparent);
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Ambient Glow Inside ---------- */
.premium-back-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.premium-back-btn:hover {
  color: #ffffff;
  border-color: rgba(56, 189, 248, 0.7);
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.7),
              0 0 35px -5px rgba(56, 189, 248, 0.4),
              inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

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

.premium-back-btn:hover::after {
  opacity: 1;
}

.premium-back-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* ---------- Icon ---------- */
.back-btn-icon {
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  line-height: 1;
}

.premium-back-btn:hover .back-btn-icon {
  transform: translateX(-5px);
}

/* ---------- Text ---------- */
.back-btn-text {
  display: inline-block;
  transition: letter-spacing 0.3s ease;
}

.premium-back-btn:hover .back-btn-text {
  letter-spacing: 0.6px;
}

/* ============================================
   📱 TABLET (Max Width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .back-button-wrapper {
    margin-bottom: 1.75rem;
    padding: 0 1rem;
  }

  .premium-back-btn {
    padding: 0.8rem 1.75rem;
    font-size: 0.9rem;
    gap: 9px;
  }

  .back-btn-icon {
    font-size: 1.05rem;
  }
}

/* ============================================
   📱 MOBILE (Max Width: 768px)
   ============================================ */
@media (max-width: 768px) {
  .back-button-wrapper {
    margin-bottom: 1.5rem;
    padding: 0 0.75rem;
    justify-content: center;
  }

  .premium-back-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    gap: 8px;
    border-radius: 40px;
  }

  .back-btn-icon {
    font-size: 1rem;
  }

  .back-btn-text {
    font-size: 0.85rem;
  }

  /* Mobile par hover effect reduce */
  .premium-back-btn:hover {
    transform: translateY(-2px);
  }

  .premium-back-btn:active {
    transform: translateY(0) scale(0.97);
  }
}

/* ============================================
   📱 SMALL MOBILE (Max Width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .back-button-wrapper {
    margin-bottom: 1.25rem;
    padding: 0 0.5rem;
  }

  .premium-back-btn {
    padding: 0.7rem 1.35rem;
    font-size: 0.8rem;
    gap: 7px;
    border-radius: 35px;
  }

  .back-btn-icon {
    font-size: 0.95rem;
  }

  .back-btn-text {
    font-size: 0.8rem;
  }
}

/* ============================================
   📱 EXTRA SMALL MOBILE (Max Width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .back-button-wrapper {
    margin-bottom: 1rem;
    padding: 0 0.4rem;
  }

  .premium-back-btn {
    padding: 0.65rem 1.15rem;
    font-size: 0.75rem;
    gap: 6px;
    border-radius: 30px;
  }

  .back-btn-icon {
    font-size: 0.9rem;
  }

  .back-btn-text {
    font-size: 0.75rem;
  }
}

/* ============================================
   📱 TINY MOBILE (Max Width: 320px)
   ============================================ */
@media (max-width: 320px) {
  .premium-back-btn {
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
    gap: 5px;
  }

  .back-btn-icon {
    font-size: 0.85rem;
  }

  .back-btn-text {
    font-size: 0.7rem;
  }
}
/* Right-Aligned Outer Container (No Upper Border Line) */
/* ============================================
   FOOTER - COMPLETE RESPONSIVE CSS
   Copyright LEFT + Apex Code RIGHT (Same Line)
   Mobile: Stacked & Centered
   ============================================ */

/* ---------- FOOTER MAIN ---------- */
.footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  padding: 4rem 2rem 2rem 2rem;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}

.footer * {
  box-sizing: border-box;
}

.footer > div {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================
   BOTTOM SECTION WRAPPER
   Copyright LEFT + Apex RIGHT (Same Line)
   ============================================ */
.footer-bottom-wrapper {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1.5rem !important;
  padding-top: 2rem !important;
  margin-top: 0.5rem !important;
  border-top: 1px dashed rgba(255, 255, 255, 0.08) !important;
  width: 100% !important;
}

/* ============================================
   LEFT SIDE: COPYRIGHT
   ============================================ */
.footer-copyright-line {
  flex: 1 !important;
  min-width: 280px !important;
  text-align: left !important;
}

.footer-copyright-text {
  color: #64748b !important;
  font-size: 0.85rem !important;
  margin: 0 !important;
  line-height: 1.6 !important;
  letter-spacing: 0.2px !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.footer-brand-highlight {
  color: #38bdf8 !important;
  font-weight: 800 !important;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.4) !important;
}

/* ============================================
   RIGHT SIDE: APEX CODE CONTAINER
   ============================================ */
.apex-right-container {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 1rem !important;
  flex-shrink: 0 !important;
}

/* ---------- PURPLE GLOWING AVATAR ---------- */
.apex-purple-glow-avatar {
  position: relative;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.apex-purple-border-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    #a855f7 90deg,
    #c084fc 180deg,
    #7c3aed 270deg,
    transparent 360deg
  );
  animation: apexRotateRing 4s linear infinite;
  opacity: 0.9;
  filter: blur(0.5px);
}

.apex-purple-border-ring-2 {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg,
    transparent 0deg,
    #d8b4fe 60deg,
    #a855f7 180deg,
    transparent 360deg
  );
  animation: apexRotateRingReverse 6s linear infinite;
  opacity: 0.7;
}

@keyframes apexRotateRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes apexRotateRingReverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

.apex-purple-avatar-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, #1e1b4b 0%, #0f172a 100%);
  border: 2px solid rgba(168, 85, 247, 0.5);
  overflow: hidden;
  z-index: 2;
  box-shadow: 
    inset 0 0 15px rgba(168, 85, 247, 0.3),
    0 0 20px rgba(168, 85, 247, 0.4);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.apex-purple-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.apex-purple-glow-avatar:hover .apex-purple-avatar-img {
  transform: scale(1.12);
}

.apex-avatar-glow {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.5) 0%, transparent 70%);
  filter: blur(18px);
  animation: apexPulseGlow 3s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes apexPulseGlow {
  0% { 
    opacity: 0.4; 
    transform: scale(0.95);
  }
  100% { 
    opacity: 0.85; 
    transform: scale(1.15);
  }
}

/* ---------- BRAND DETAILS ---------- */
.apex-clean-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.apex-clean-header {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.apex-sub-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #a855f7;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.apex-sub-line {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a855f7, transparent);
}

/* ---------- PREMIUM BRAND NAME ---------- */
.apex-main-brand {
  font-size: 1.15rem;
  font-weight: 900;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
  font-family: 'Arial Black', -apple-system, BlinkMacSystemFont, sans-serif;
}

.apex-brand-letter {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 40%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.apex-main-brand:hover .apex-brand-letter {
  filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.9));
  transform: translateY(-1px);
}

.apex-brand-space {
  display: inline-block;
  width: 7px;
}

.apex-purple-dot {
  display: inline-block;
  background: linear-gradient(135deg, #c084fc 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(168, 85, 247, 1));
  animation: apexDotPulse 2s ease-in-out infinite alternate;
  margin-left: 2px;
}

@keyframes apexDotPulse {
  0% { 
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.8));
  }
  100% { 
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 1));
  }
}

/* ---------- LINKS ---------- */
.apex-clean-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.apex-glow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 0.25rem 0.5rem;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.apex-glow-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(124, 58, 237, 0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.apex-glow-link:hover {
  color: #e9d5ff;
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 15px -3px rgba(0, 0, 0, 0.6),
    0 0 15px -3px rgba(168, 85, 247, 0.4);
}

.apex-glow-link:hover::before {
  opacity: 1;
}

.apex-link-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: #a855f7;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 4px rgba(168, 85, 247, 0.5));
}

.apex-glow-link:hover .apex-link-icon {
  color: #c084fc;
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(192, 132, 252, 0.8));
}

.apex-glow-link > span {
  position: relative;
  z-index: 1;
}

.apex-dot-divider {
  color: rgba(168, 85, 247, 0.4);
  font-size: 0.85rem;
  font-weight: 900;
  user-select: none;
}

/* ============================================
   📱 TABLET (Max Width: 1024px)
   Stack Everything, Center Align
   ============================================ */
@media (max-width: 1024px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem 1.5rem !important;
  }

  .footer-bottom-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 1.5rem !important;
    padding-top: 1.5rem !important;
  }

  .footer-copyright-line {
    text-align: center !important;
    width: 100% !important;
    flex: none !important;
    min-width: unset !important;
  }

  .footer-copyright-text {
    font-size: 0.8rem !important;
    text-align: center !important;
  }

  .apex-right-container {
    justify-content: center !important;
    width: 100% !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .apex-clean-info {
    align-items: center !important;
    text-align: center !important;
  }

  .apex-clean-header {
    align-items: center !important;
    text-align: center !important;
  }

  .apex-clean-links {
    justify-content: center !important;
  }
}

/* ============================================
   📱 MOBILE (Max Width: 768px)
   ============================================ */
@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 1rem 1.5rem 1rem !important;
  }

  .footer-bottom-wrapper {
    gap: 1.25rem !important;
    padding-top: 1.25rem !important;
  }

  .footer-copyright-text {
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
    padding: 0 0.5rem !important;
  }

  .apex-right-container {
    gap: 0.85rem !important;
    padding: 0 0.5rem !important;
  }

  .apex-purple-glow-avatar {
    width: 70px !important;
    height: 70px !important;
  }

  .apex-sub-text {
    font-size: 0.58rem !important;
    letter-spacing: 2px !important;
  }

  .apex-sub-line {
    width: 16px !important;
  }

  .apex-main-brand {
    font-size: 1.35rem !important;
    letter-spacing: 1.5px !important;
  }

  .apex-brand-space {
    width: 6px !important;
  }

  .apex-clean-links {
    gap: 0.4rem !important;
    justify-content: center !important;
  }

  .apex-glow-link {
    font-size: 0.68rem !important;
    padding: 0.3rem 0.6rem !important;
    gap: 0.35rem !important;
  }

  .apex-link-icon {
    width: 11px !important;
    height: 11px !important;
  }

  .apex-dot-divider {
    display: none !important;
  }
}

/* ============================================
   📱 SMALL MOBILE (Max Width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .footer {
    padding: 2rem 0.75rem 1.25rem 0.75rem !important;
  }

  .footer-bottom-wrapper {
    gap: 1rem !important;
    padding-top: 1rem !important;
  }

  .footer-copyright-text {
    font-size: 0.7rem !important;
    padding: 0 0.35rem !important;
  }

  .apex-right-container {
    gap: 0.85rem !important;
  }

  .apex-purple-glow-avatar {
    width: 62px !important;
    height: 62px !important;
  }

  .apex-avatar-glow {
    inset: -12px !important;
    filter: blur(14px) !important;
  }

  .apex-sub-text {
    font-size: 0.52rem !important;
    letter-spacing: 1.8px !important;
    gap: 0.35rem !important;
  }

  .apex-sub-line {
    width: 12px !important;
  }

  .apex-main-brand {
    font-size: 1.15rem !important;
    letter-spacing: 1.3px !important;
  }

  .apex-brand-space {
    width: 5px !important;
  }

  .apex-clean-links {
    flex-direction: column !important;
    gap: 0.4rem !important;
    width: 100% !important;
    align-items: center !important;
  }

  .apex-glow-link {
    font-size: 0.65rem !important;
    padding: 0.35rem 0.75rem !important;
    gap: 0.35rem !important;
    background: rgba(168, 85, 247, 0.05) !important;
    border: 1px solid rgba(168, 85, 247, 0.2) !important;
    width: 100% !important;
    max-width: 260px !important;
    justify-content: center !important;
  }

  .apex-link-icon {
    width: 11px !important;
    height: 11px !important;
  }
}

/* ============================================
   📱 EXTRA SMALL MOBILE (Max Width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .footer-copyright-text {
    font-size: 0.65rem !important;
  }

  .apex-purple-glow-avatar {
    width: 56px !important;
    height: 56px !important;
  }

  .apex-main-brand {
    font-size: 1rem !important;
    letter-spacing: 1.1px !important;
  }

  .apex-sub-text {
    font-size: 0.48rem !important;
    letter-spacing: 1.5px !important;
  }

  .apex-sub-line {
    width: 10px !important;
  }

  .apex-glow-link {
    font-size: 0.6rem !important;
    padding: 0.3rem 0.65rem !important;
    max-width: 230px !important;
  }

  .apex-link-icon {
    width: 10px !important;
    height: 10px !important;
  }
}

/* ============================================
   📱 TINY MOBILE (Max Width: 320px)
   ============================================ */
@media (max-width: 320px) {
  .footer-copyright-text {
    font-size: 0.6rem !important;
  }

  .apex-main-brand {
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
  }

  .apex-glow-link {
    font-size: 0.55rem !important;
    padding: 0.28rem 0.55rem !important;
    max-width: 200px !important;
  }
}

/* ============================================
   SOCIAL ICON (agar missing hai)
   ============================================ */
.btn-social-icon {
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.btn-social-icon svg {
  width: 20px;
  height: 20px;
}

.btn-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}
/* ===================== SHOWCASE SECTION BASE ===================== */
.showcase-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.showcase-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.showcase-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.showcase-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, #ffffff 30%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.showcase-description {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===================== CATEGORY BLOCK ===================== */
.showcase-category-block {
  margin-bottom: 3.5rem;
}

.showcase-category-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.showcase-category-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.showcase-category-tag {
  font-size: 0.75rem;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-weight: 600;
}

/* ===================== PRODUCTS GRID ===================== */
.showcase-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ===================== PRODUCT CARD ===================== */
.showcase-product-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.showcase-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.showcase-image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  background: #0b0f19;
}

.showcase-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-product-card:hover .showcase-image-box img {
  transform: scale(1.05);
}

.showcase-product-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.showcase-product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0;
  cursor: pointer;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.showcase-ratings {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
}

.showcase-stars {
  color: #fbbf24;
  letter-spacing: -0.05em;
}

.showcase-rating-number {
  color: #f1f5f9;
  font-weight: 600;
}

.showcase-reviews-count {
  color: #64748b;
}

.showcase-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.showcase-currency {
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 600;
}

.showcase-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #a855f7;
}

.showcase-old-price {
  font-size: 0.8rem;
  color: #64748b;
  text-decoration: line-through;
}

.showcase-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.showcase-btn-cart,
.showcase-btn-details {
  flex: 1;
  padding: 0.55rem 0.5rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.showcase-btn-cart {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  color: #fff;
}

.showcase-btn-cart:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.showcase-btn-details {
  background: transparent;
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
}

.showcase-btn-details:hover {
  background: rgba(168, 85, 247, 0.1);
}

/* ===================== VIEW ALL BUTTON ===================== */
.showcase-view-all-wrap {
  text-align: center;
  margin-top: 2rem;
}

.showcase-view-all-btn {
  padding: 0.9rem 2rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.showcase-view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5);
}

.showcase-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: #94a3b8;
  font-size: 1rem;
}

/* ===================== MOBILE RESPONSIVE ===================== */
@media (max-width: 768px) {
  .showcase-section {
    padding: 3rem 1rem;
  }

  .showcase-heading {
    margin-bottom: 2rem;
  }

  .showcase-title {
    font-size: 1.8rem;
  }

  .showcase-description {
    font-size: 0.9rem;
  }

  .showcase-category-block {
    margin-bottom: 2.5rem;
  }

  .showcase-category-title {
    font-size: 1.2rem;
  }

  .showcase-category-tag {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
  }

  /* 🔥 YAHAN HAI ASLI FIX — 2 PRODUCTS EK LINE ME */
  .showcase-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .showcase-product-content {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .showcase-product-name {
    font-size: 0.8rem;
  }

  .showcase-ratings {
    font-size: 0.7rem;
    gap: 0.25rem;
  }

  .showcase-price {
    font-size: 0.95rem;
  }

  .showcase-currency {
    font-size: 0.6rem;
  }

  .showcase-old-price {
    font-size: 0.7rem;
  }

  .showcase-actions {
    flex-direction: column;
    gap: 0.4rem;
  }

  .showcase-btn-cart,
  .showcase-btn-details {
    font-size: 0.7rem;
    padding: 0.5rem 0.4rem;
  }

  .showcase-view-all-btn {
    font-size: 0.85rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .showcase-title {
    font-size: 1.5rem;
  }

  .showcase-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .showcase-product-content {
    padding: 0.6rem;
    gap: 0.4rem;
  }

  .showcase-product-name {
    font-size: 0.75rem;
  }

  .showcase-ratings {
    font-size: 0.65rem;
  }

  .showcase-price {
    font-size: 0.9rem;
  }

  .showcase-btn-cart,
  .showcase-btn-details {
    font-size: 0.65rem;
    padding: 0.45rem 0.3rem;
  }

  .showcase-category-title {
    font-size: 1.05rem;
  }

  .showcase-category-heading {
    margin-bottom: 1rem;
  }
}
/* ===================== FEATURES WRAPPER ===================== */
.features-wrapper {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* ===================== FEATURE ROW BASE ===================== */
.feature-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.feature-row-reverse {
  flex-wrap: wrap-reverse;
}

/* ===================== IMAGE BOX ===================== */
.feature-image-box {
  flex: 1 1 450px;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================== TEXT BOX ===================== */
.feature-text-box {
  flex: 1 1 450px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-tag {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  width: fit-content;
  text-transform: uppercase;
}

.feature-heading {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.feature-para {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

.feature-points {
  display: flex;
  gap: 1.5rem;
  font-weight: bold;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

/* ===================== MOBILE RESPONSIVE ===================== */
@media (max-width: 768px) {
  .features-wrapper {
    margin-top: 4rem;
    gap: 2.5rem;
  }

  .feature-row,
  .feature-row-reverse {
    flex-wrap: wrap; /* Mobile par hamesha image upar, text neeche */
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 24px;
  }

  /* Mobile par pehle image, phir text — dono rows me same order */
  .feature-row-reverse .feature-image-box {
    order: -1;
  }

  .feature-image-box {
    flex: 1 1 100%;
    height: 220px;
    border-radius: 16px;
  }

  .feature-text-box {
    flex: 1 1 100%;
    gap: 0.9rem;
  }

  .feature-tag {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .feature-heading {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .feature-para {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .feature-points {
    gap: 0.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .features-wrapper {
    margin-top: 3rem;
    gap: 2rem;
  }

  .feature-row,
  .feature-row-reverse {
    gap: 1.2rem;
    padding: 1.1rem;
    border-radius: 20px;
  }

  .feature-image-box {
    height: 180px;
    border-radius: 14px;
  }

  .feature-text-box {
    gap: 0.7rem;
  }

  .feature-tag {
    font-size: 0.65rem;
    padding: 4px 10px;
  }

  .feature-heading {
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .feature-para {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .feature-points {
    gap: 0.6rem;
    font-size: 0.75rem;
    flex-direction: column;
  }
}
