/* ====================================================
   RJ POWER â€” COMPLETE DESIGN SYSTEM (Modern & Final)
   ==================================================== */

:root {
  --primary: #ef4444;
  /* RJ Power Red */
  --primary-l: #f87171;
  --accent: #dc2626;
  --bg: #0d1117;
  --bg2: #161b22;
  --bg3: #1d2433;
  --text1: #f8fafc;
  --text2: #cbd5e1;
  --text3: #64748b;
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.12);
  --nav-h: 104px;
  --red: #ef4444;
  --green: #22c55e;
  --glass: rgba(13, 17, 23, 0.85);
  --radius: 12px;
  --radius-lg: 20px;
  --accent-br: #ef4444;
  /* Force red */
}

.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: var(--bg);
  color: var(--text1);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding-top: var(--nav-h);
  line-height: 1.5;
  font-size: clamp(13px, 1.8vw, 15px);
  overflow-x: hidden;
}


/* ... existing ... */

.variant-section {
  margin-bottom: 24px;
}

.variant-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 10px;
}

.variant-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-chip {
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.variant-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  color: #fff;
}

.variant-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.container {
  width: 96%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    width: 100%;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: 0.2s;
}

/* â”€â”€ NAVBAR (Glassmorphism + Blue Bar) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  width: 100% !important;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: 0.3s;
}

.logo-text {
  font-size: 22px;
  font-weight: 1000;
  /* Max prominence */
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-text strong {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-l) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-search-premium {
  flex: 1;
  max-width: 520px;
  margin: 0 40px;
  position: relative;
  display: flex;
  align-items: center;
}

.input-search-new {
  width: 100%;
  height: 48px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 0 54px 0 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.input-search-new:focus {
  border-color: var(--primary);
  background: #000;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
}

.search-icon-right {
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
  color: var(--text3);
  pointer-events: none;
  transition: 0.3s;
}

.input-search-new:focus+.search-icon-right {
  color: var(--primary);
  transform: scale(1.1);
}

.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  margin-top: 8px;
  max-height: 480px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  z-index: 1001;
  padding: 8px;
}

.search-results-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.nav-actions-premium {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-user-premium {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  padding: 4px 12px;
  border-radius: 40px;
  transition: 0.3s;
  border: 1px solid transparent;
}

.btn-user-premium:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border);
}

.avatar-circle {
  width: 44px;
  height: 44px;
  background: var(--bg2);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  transition: 0.3s;
}

.btn-user-premium:hover .avatar-circle {
  border-color: var(--primary);
  color: var(--primary);
  background: #000;
}

.user-label-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.user-label {
  font-size: 14px;
  font-weight: 1000;
  color: #fff;
  letter-spacing: 0.5px;
}

.user-sublabel {
  font-size: 10px;
  font-weight: 800;
  color: var(--text3);
  text-transform: uppercase;
}

/* PREMIUM CATEGORY BAR (Glass & Dark) */
.nav-cat-bar {
  height: 40px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  position: sticky;
  top: 64px;
  /* right below main navbar */
  z-index: 990;
  backdrop-filter: blur(12px);
}

.cat-bar-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.cat-bar-btn {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 0 20px;
  height: 100%;
  color: var(--text2) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  background: transparent;
  border: none;
}

.cat-bar-btn svg {
  color: var(--primary-l);
  transition: 0.3s;
}

.cat-bar-btn:hover {
  background: rgba(139, 92, 246, 0.08) !important;
  color: #fff !important;
}

.cat-bar-btn:hover svg {
  transform: translateY(1.5px);
  color: #fff;
}

.cat-bar-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
}

.cat-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 4px;
}

/* PREMIUM MEGAMENU */
.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #0d1117;
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 12px 0;
  z-index: 1000;
}

.megamenu-trigger:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.megamenu-grid {
  display: grid;
  grid-template-columns: 320px 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 12px 0;
  align-items: flex-start;
}

.brand-col {
  border-right: 1px solid var(--border);
  padding-right: 40px;
}

.megamenu-brand h4 {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.megamenu-brand p {
  font-size: 14px;
  color: var(--text3);
  line-height: 1.6;
  margin-bottom: 24px;
}

.megamenu-cat-header {
  font-size: 13px;
  font-weight: 900;
  color: var(--primary-l);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
  transition: 0.3s;
}

.megamenu-cat-header:hover {
  border-color: #fff;
  color: #fff;
}

.megamenu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.megamenu-list li {
  font-size: 15px;
  color: #94a3b8;
  cursor: pointer;
  transition: 0.25s;
  padding: 2px 0;
  border-radius: 4px;
}

.megamenu-list li:hover {
  color: #fff;
  transform: translateX(8px);
}

.special-list {
  margin-top: 4px;
}

.special-item {
  font-weight: 900 !important;
  color: #fff !important;
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 15px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.special-item:hover {
  color: var(--primary-l) !important;
}

.special-item svg {
  color: var(--primary-l);
}

/* â”€â”€ NAV LINKS & ACTIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-btn {
  color: var(--text2);
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 800;
  min-width: 90px;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.nav-btn svg {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  stroke-width: 2.2px;
}

.cart-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff0055;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  height: 20px;
  min-width: 20px;
  padding: 0 6px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 0, 85, 0.4);
  border: 2px solid var(--bg);
  z-index: 2;
  transition: 0.3s;
}

.avatar-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  border: 1px solid var(--border2);
  flex-shrink: 0;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 4px;
}

.avatar-sm.colored {
  background: linear-gradient(135deg, var(--p-color, #8b5cf6), #2d005f);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.nav-btn:hover .avatar-sm {
  transform: scale(1.1);
}

/* The container inside megamenu (Grid remains same) */
.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 40px;
  align-items: flex-start;
}

.megamenu-col h4 {
  font-size: 14px;
  font-weight: 800;
  color: #333 !important;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid #eee;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  padding: 40px 0;
  background: radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.08), transparent 50%);
  text-align: center;
}

.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary-l);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 7vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 17px;
  color: var(--text2);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* â”€â”€ CATEGORY GRID (HOME RE-DESIGN) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.home-cat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.home-cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--cat-color), transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

.home-cat-card:hover {
  border-color: var(--cat-color);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.home-cat-card:hover::before {
  opacity: 0.05;
}

.home-cat-icon {
  font-size: 42px;
  margin-bottom: 12px;
  display: block;
  transition: 0.3s;
}

.home-cat-card:hover .home-cat-icon {
  transform: scale(1.2) rotate(5deg);
}

.home-cat-name {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-cat-count {
  font-size: 11px;
  color: var(--text3);
  margin-top: 4px;
}

/* â”€â”€ PRODUCTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section {
  padding: 20px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 20px;
  font-weight: 800;
}

.section-link {
  color: var(--primary-l);
  font-size: 13px;
  font-weight: 600;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  width: 100%;
}

.product-card {
  background: var(--bg2);
  border: 1.5px solid var(--primary);
  border-radius: 24px;
  padding: 12px;
  position: relative;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(224, 30, 30, 0.25);
  transform: translateY(-4px);
}

.product-card.out-of-stock img {
  filter: grayscale(1);
  opacity: 0.7;
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
  flex-shrink: 0;
  background: #fff;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary);
  color: #fff;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  z-index: 10;
}

.product-badge.oos {
  background: var(--red);
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
  height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.product-rating {
  margin-bottom: 8px;
  height: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-status {
  height: 20px;
  /* placeholder room for 'INDISPONIVEL' */
  margin-bottom: 8px;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.product-price {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}

.product-original {
  font-size: 13px;
  color: var(--text3);
  text-decoration: line-through;
}

.btn-add-cart {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  margin-top: auto;
  transition: 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-add-cart:hover {
  background: #c41515;
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(224, 30, 30, 0.5);
}

.product-card:hover .btn-add-cart {
  background: #c41515;
  box-shadow: 0 6px 20px rgba(224, 30, 30, 0.4);
}

/* â”€â”€ OLD MODAL STYLES REMOVED FOR PREMIUM DESIGN â”€â”€ */

/* â”€â”€ DROPDOWN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.user-dropdown {
  position: absolute;
  top: calc(var(--nav-h) - 4px);
  right: 24px;
  width: 240px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow: hidden;
  padding: 16px;
}

.user-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

#dropdownNickname {
  font-weight: 900;
  font-size: 18px;
  color: #fff;
}

#dropdownEmail {
  font-size: 12px;
  color: var(--text3);
}

.dropdown-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 650;
  color: var(--text2);
  transition: 0.2s;
  cursor: pointer;
  width: 100%;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.dropdown-item svg {
  color: var(--text3);
  stroke-width: 2.2px;
}

.color-alert {
  color: #fca311 !important;
}

.color-alert svg {
  color: #fca311 !important;
}

.color-logout {
  color: #ef4444 !important;
  border: none;
  background: transparent;
}

.color-logout svg {
  color: #ef4444 !important;
}

/* â”€â”€ TOAST â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  min-width: 300px;
}

.toast.success {
  border-left: 4px solid var(--green);
}

.toast.error {
  border-left: 4px solid var(--red);
}

/* â”€â”€ LOADING â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.loading-wrap {
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text3);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* â”€â”€ ADVERTISEMENTS (Google AdSense) â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.google-ad-container {
  margin: 16px auto;
  max-width: 1100px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 10px;
  /* Reduced min-height to collapse if blocked */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Hide if blocked/empty if possible */
.google-ad-container:empty {
  display: none;
}

.google-ad-container::before {
  content: 'Publicidade';
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 10px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 1px;
  pointer-events: none;
}

.google-ad-container:empty::before {
  display: none;
}

@media (max-width: 768px) {
  .google-ad-container {
    margin: 24px auto;
  }
}

/* â”€â”€ FOOTER (Modern) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
  color: var(--text1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: var(--text2);
}

.footer-col a {
  display: block;
  color: var(--text3);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: var(--primary);
}

/* Footer Trust & Payments Stack */
.footer-trust-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 260px;
}

.footer-trust-stack.horizontal {
  flex-direction: row;
  align-items: stretch;
  width: fit-content;
}

.social-side-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.social-ico-side {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 50px;
  height: calc(50% - 4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  transition: 0.3s;
}

.social-ico-side svg {
  width: 24px;
  height: 24px;
}

.social-ico-side:hover {
  border-color: var(--primary-l);
  color: #fff;
  transform: translateY(-2px);
}

.mobile-break {
  display: none;
}

.trust-card-link {
  text-decoration: none;
  display: block;
}

.trust-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  width: 240px;
  transition: 0.3s;
}

.trust-card-link:hover .trust-card {
  border-color: var(--primary-l);
  background: var(--bg3);
}

.google-trust-badge {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.google-safe-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.google-text span {
  font-size: 11px;
  color: var(--text3);
}

.google-reviews-row {
  display: flex;
  flex-direction: column;
}

.google-rating-score {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

.google-rating-stars {
  color: #fbbc04;
  letter-spacing: 2px;
  font-size: 14px;
}

.google-customer-reviews-text {
  font-size: 11px;
  color: var(--text3);
  margin-top: 4px;
}



.google-rating-stars {
  color: #fbbc05;
}

.google-rating-score {
  font-weight: 700;
}

.google-text {
  font-weight: 700;
  color: #5f6368;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-top: 48px;
  text-align: center;
  color: var(--text3);
  font-size: 12px;
}

/* â”€â”€ BANNERS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.banner-section {
  padding: 32px 0;
}

.banner-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1200 / 450;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s ease-in-out;
}

.banner-item.active {
  opacity: 1;
  visibility: visible;
}

.banner-item.active:hover .banner-img {
  transform: scale(1.02);
}

.banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 10px;
}

/* â”€â”€ PRODUCTS LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.products-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.shop-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.sidebar-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sidebar-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--primary);
  border-radius: 4px;
}

.cat-item {
  margin-bottom: 8px;
}

.cat-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 700;
  color: var(--text2);
  background: rgba(255, 255, 255, 0.02);
}

.cat-parent:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transform: translateX(4px);
}

.cat-parent.active {
  background: rgba(224, 30, 30, 0.12) !important;
  color: var(--primary) !important;
  border-left: 3px solid var(--primary);
}

.cat-link {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 850;
  color: var(--primary-l);
  background: rgba(139, 92, 246, 0.05);
  margin-bottom: 12px;
  font-size: 15px;
}

.chevron {
  width: 14px;
  height: 14px;
  transition: 0.3s;
  color: var(--text3);
}

.cat-item.expanded .chevron {
  transform: rotate(180deg);
  color: var(--primary-l);
}

.cat-children {
  list-style: none;
  padding: 8px 0 8px 44px;
  display: none;
}

.cat-child {
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: var(--text3);
  font-size: 14px;
  display: flex !important;
  align-items: center;
}

.cat-child:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transform: translateX(4px);
}

.cat-child.active {
  color: var(--primary) !important;
  background: rgba(224, 30, 30, 0.08);
  font-weight: 800;
}

.cat-item.expanded .cat-children {
  display: block;
}

/* â”€â”€ PRODUCT DETAIL Redesign (Image Match) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  margin-top: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin: 24px auto 64px auto;
}

.detail-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  align-self: start;
}

.gallery-main {
  background: var(--bg3);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border2);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.thumb-item {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg3);
  opacity: 0.6;
}

.thumb-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.thumb-item.active {
  border-color: var(--primary);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  display: flex;
  flex-direction: column;
}

.detail-cat {
  font-size: 13px;
  font-weight: 850;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}

.detail-name {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.detail-rating .stars {
  color: #fbbc05;
  font-size: 16px;
}

.detail-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text2);
  margin-bottom: 32px;
}

.price-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border2);
  margin-bottom: 32px;
}

.detail-original {
  font-size: 18px;
  text-decoration: line-through;
  color: var(--text3);
  margin-bottom: 8px;
  font-weight: 500;
}

.detail-price {
  font-size: 60px;
  font-weight: 950;
  color: #fff;
  line-height: 1;
}

.detail-savings {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  margin-top: 14px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.installment-text {
  font-size: 14px;
  color: var(--text3);
  margin-top: 16px;
}

.empty-state {
  text-align: center;
  padding: 120px 24px;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.08), transparent 70%);
  border-radius: 56px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.empty-icon {
  font-size: 100px;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
  display: block;
}

.empty-state h3 {
  font-size: 40px;
  font-weight: 950;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--primary-l) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.empty-state p {
  color: #94a3b8;
  font-size: 19px;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.empty-state .btn-primary {
  background: linear-gradient(135deg, #7c3aed, #db2777) !important;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.4);
}

.empty-state .btn-secondary {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 48px;
  font-size: 18px;
}

/* ── SEARCH INSTANT RESULTS ──────────────────────── */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: #0c041a;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  z-index: 2000;
  max-height: 480px;
  overflow-y: auto;
  display: none;
  padding: 12px;
}

.search-results-dropdown.open {
  display: block;
  animation: slideTopIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.search-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.search-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.search-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
}

.search-item-info {
  flex: 1;
}

.search-item-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.search-item-price {
  font-size: 12px;
  color: var(--primary-l);
  font-weight: 800;
}

.qty-section {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.qty-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text3);
  margin-bottom: 10px;
  display: block;
}

.qty-box {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  height: 52px;
}

.qty-btn {
  width: 52px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--text2);
  transition: 0.2s;
  background: rgba(255, 255, 255, 0.03);
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.qty-val {
  width: 44px;
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}

.stock-count {
  font-size: 14px;
  color: var(--text3);
  font-weight: 500;
}

.action-btns {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.btn-add-cart-detail {
  height: 64px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  font-weight: 850;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.2);
}

.btn-buy-now {
  height: 64px;
  background: #00bcd4;
  color: #fff;
  border-radius: 14px;
  font-weight: 850;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0, 188, 212, 0.2);
}

.btn-add-cart-detail:hover,
.btn-buy-now:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text3);
  font-weight: 600;
}

.trust-item svg {
  width: 20px;
  height: 20px;
}

/* â”€â”€ RESPONSIVE OVERRIDES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Tablets & Small Desktops */
@media (max-width: 1024px) {
  body {
    zoom: 0.85;
  }

  .container {
    max-width: 95%;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }


  /* Navbar Adjustments */
  .nav-inner {
    height: 64px;
    padding: 0 12px;
  }

  .logo-img {
    height: 28px;
  }

  .logo-text {
    display: none;
    /* Hide text on mobile logos */
  }

  .nav-search {
    margin: 0 8px;
    max-width: none;
  }

  .nav-search input {
    height: 36px;
    font-size: 13px;
    padding-left: 12px;
  }

  .nav-search button {
    height: 30px;
    width: 30px;
    top: 3px;
  }

  .nav-actions .nav-btn span {
    display: none;
    /* Icon only nav buttons on mobile */
  }

  .nav-btn {
    min-width: 40px;
    padding: 6px;
  }

  /* Blue Category Bar - Allow horizontal scroll */
  .nav-cat-bar {
    height: 40px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
  }

  .nav-cat-bar::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .cat-bar-inner {
    width: max-content;
    padding: 0 8px;
  }

  .cat-bar-btn {
    white-space: nowrap;
    font-size: 11px;
    padding: 0 10px;
  }

  /* Megamenu - Disable on mobile as it relies on hover */
  .megamenu {
    display: none !important;
  }

  /* Products - 2 Columns on mobile is better */
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product-card {
    padding: 10px;
    border-radius: 16px;
  }

  .product-img-wrap {
    margin-bottom: 12px;
  }

  .product-name {
    font-size: 12px;
    height: 36px;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .product-pricing {
    flex-direction: column;
    gap: 2px;
  }

  .product-price {
    font-size: 15px;
  }

  .product-original {
    font-size: 11px;
  }

  .btn-add-cart {
    padding: 8px;
    font-size: 11px;
    margin-top: 10px;
  }

  /* Product Detail Page */
  .product-detail {
    display: flex;
    /* Force vertical stacking */
    flex-direction: column;
    padding: 0;
    gap: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .detail-gallery {
    margin: 0;
    position: relative !important;
    top: auto !important;
    z-index: 1;
    width: 100%;
  }

  .gallery-main {
    border-radius: 0;
    height: 380px;
    /* Fixed height for consistency */
    background: #fff;
    border: none;
  }

  .gallery-main img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 10px;
  }

  .detail-info {
    padding: 24px 16px;
    background: var(--bg2);
    border-radius: 32px 32px 0 0;
    margin-top: -32px;
    z-index: 2;
    position: relative;
  }

  .gallery-thumbs {
    padding: 12px 16px;
    background: var(--bg2);
  }

  .thumb-item {
    width: 64px;
    height: 64px;
    border-radius: 12px;
  }

  .detail-name {
    font-size: 22px;
    margin-top: 8px;
  }

  .detail-price {
    font-size: 28px;
  }

  .action-btns {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .btn-add-cart-detail,
  .btn-buy-now {
    height: 54px;
    font-size: 15px;
    border-radius: 12px;
  }

  /* Hero adjustments */
  .hero {
    padding: 32px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  /* Modal Adjustments */
  .auth-card {
    padding: 24px;
    border-radius: 20px;
    max-width: 90%;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .social-bar {
    margin: 12px auto;
  }

  .trust-card {
    margin: 16px auto;
  }
}

.breadcrumb {
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.breadcrumb span {
  opacity: 0.4;
}

.breadcrumb a:hover {
  color: var(--primary-l);
}

/* â”€â”€ ABOUT US PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-page {
  background: var(--bg);
}

.about-hero {
  padding: 120px 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(239, 68, 68, 0.15), transparent 70%);
  border-bottom: 1px solid var(--border);
}

.about-hero h1 {
  font-size: 82px;
  font-weight: 950;
  margin-bottom: 24px;
}

.about-hero h1 span {
  color: var(--primary-l);
}

.about-tag {
  color: var(--primary-l);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 32px;
  display: block;
}

.about-hero h2 {
  font-size: 38px;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text-card {
  padding: 56px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-text-card h3 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #fff;
}

.about-text-card p {
  color: var(--text2);
  font-size: 19px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stat-item {
  padding: 48px 32px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 40px;
  text-align: center;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover {
  border-color: var(--primary);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.stat-num {
  display: block;
  font-size: 64px;
  font-weight: 950;
  color: var(--primary-l);
  line-height: 1.1;
}

.stat-label {
  font-size: 16px;
  font-weight: 750;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.value-card {
  padding: 56px 40px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 40px;
  text-align: center;
  transition: 0.4s;
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.02);
}

.value-icon {
  font-size: 56px;
  margin-bottom: 32px;
  display: block;
}

.value-card h4 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 850;
}

.value-card p {
  color: var(--text3);
  font-size: 17px;
  line-height: 1.7;
}

.contact-box {
  background: linear-gradient(135deg, #170035, #080116);
  border: 2px solid var(--primary);
  padding: 100px 40px;
  border-radius: 56px;
  text-align: center;
  margin-bottom: 120px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.about-contact h3 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 24px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #25d366;
  color: #fff !important;
  padding: 20px 48px;
  border-radius: 24px;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  width: fit-content;
  margin: 48px auto 0;
  transition: 0.3s;
}

/* ── AUTH REQUIRED / LOCKED SCREEN ──────────────── */
.auth-required-page {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: radial-gradient(circle at center, #f43f5e 0%, #4c0519 100%);
}

.auth-lock-card {
  max-width: 500px;
  width: 100%;
  text-align: center;
  padding: 60px 40px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(40px);
  border: 2px solid #fff;
  border-radius: 32px;
  box-shadow: 0 50px 150px rgba(0, 0, 0, 1);
  animation: none;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.lock-icon-aura {
  width: 100px;
  height: 100px;
  background: rgba(239, 68, 68, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--primary-l);
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.3);
  position: relative;
}

.lock-icon-aura::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px dashed rgba(239, 68, 68, 0.3);
  border-radius: 50%;
  animation: rotateSpin 10s linear infinite;
}

@keyframes rotateSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.lock-icon-aura svg {
  width: 48px;
  height: 48px;
}

.auth-lock-card h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 1000;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.auth-lock-card p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.auth-lock-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-lock-actions .btn-primary {
  height: 70px;
  font-size: 20px;
  font-weight: 1000;
  border-radius: 12px;
  background: #ffffff !important;
  color: #000000 !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
}

.auth-lock-actions .btn-primary:hover {
  background: #ff0000 !important;
  color: #ffffff !important;
  border-color: #ffffff;
  transform: scale(1.05);
}

.auth-lock-actions .btn-green-premium {
  height: 60px;
  background: #22c55e !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  font-size: 16px;
  font-weight: 850;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.auth-lock-actions .btn-green-premium:hover {
  background: #16a34a !important;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

/* ── PREMIUM AUTH MODAL ──────────────────────────── */
.auth-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.auth-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.premium-modal {
  background: #0c041a !important;
  width: 95%;
  max-width: 460px;
  border-radius: 40px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 1), 0 0 30px rgba(239, 68, 68, 0.15);
  transform: translateY(40px) scale(0.92);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  max-height: 95vh;
}

.auth-backdrop.open .premium-modal {
  transform: translateY(0) scale(1);
}

.auth-close-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 100;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(10px);
}

.premium-modal .auth-close-pill {
  position: absolute;
  top: 24px;
  right: 24px;
}

.auth-close-pill:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
  color: #ef4444;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.2);
}

.auth-close-pill svg {
  transition: 0.3s;
}

.auth-close-pill:hover svg {
  transform: rotate(90deg);
}

.premium-tabs {
  background: rgba(255, 255, 255, 0.03);
  padding: 4px;
  border-radius: 100px;
  display: flex;
  position: relative;
  margin-top: 64px;
  margin-bottom: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 8px);
  height: calc(100% - 8px);
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.5);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.auth-tab {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.4) !important;
  font-weight: 800;
  font-size: 14px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.auth-tab.active {
  color: #fff !important;
}

.auth-forms-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.auth-forms-slider {
  display: flex !important;
  width: 200% !important;
  transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  flex-direction: row !important;
}

.auth-form-content {
  width: 50% !important;
  flex: 0 0 50% !important;
  padding: 5px;
  display: block !important;
}

.auth-form-content h2 {
  font-size: 28px;
  font-weight: 950;
  margin-bottom: 12px;
  color: #fff !important;
  letter-spacing: -0.5px;
}

.legal-footer {
  font-size: 10px !important;
  color: #64748b !important;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
  opacity: 0.8;
}
.legal-footer strong {
  color: #94a3b8;
  font-weight: 850;
}

.btn-auth-primary {
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed 0%, #c026d3 100%) !important;
  border: none !important;
  border-radius: 20px;
  color: #fff !important;
  font-size: 16px;
  font-weight: 900 !important;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.btn-auth-primary:hover {
  transform: translateY(-5px) scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.6), 0 0 20px rgba(192, 38, 211, 0.3);
}

.btn-auth-primary span {
  color: #fff !important;
}

.google-btn-premium {
  width: 100%;
  height: 56px;
  background: #fff !important;
  color: #0f172a !important;
  border: none;
  border-radius: 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 750;
  margin-top: 16px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.google-btn-premium:hover {
  background: #f8fafc !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.auth-divider {
  display: flex !important;
  align-items: center;
  gap: 20px;
  margin: 32px 0;
  color: #475569;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.input-group {
  margin-bottom: 24px;
}

.input-group label {
  display: block;
  font-size: 11px;
  font-weight: 850;
  color: var(--primary-l);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.input-group input {
  width: 100%;
  height: 52px;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px;
  padding: 0 16px;
  color: #fff !important;
  font-size: 15px;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: #8b5cf6 !important;
  background: rgba(255, 255, 255, 0.06) !important;
  outline: none;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}

.forgot-pass {
  display: block;
  text-align: right;
  margin-top: -8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--primary-l);
  text-decoration: none;
  font-weight: 700;
}

.auth-terms {
  margin-top: 24px;
  font-size: 11px;
  color: #64748b;
  text-align: center;
  line-height: 1.6;
}

/* ── SHOPPING CART Redesign ── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

@media (max-width: 1100px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-main-content {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cart-items-wrap {
  padding: 40px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr 140px;
  gap: 32px;
  align-items: center;
  padding: 32px;
  border-bottom: 1px solid var(--border);
  transition: 0.3s;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item:hover {
  background: rgba(255, 255, 255, 0.01);
}

.cart-item-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 20px;
  background: var(--bg3);
}

.cart-item-name {
  font-size: 18px;
  font-weight: 850;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-l);
}

.cart-item-subtotal {
  font-size: 22px;
  font-weight: 950;
  color: #fff;
  text-align: right;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg3);
  padding: 6px;
  border-radius: 14px;
  width: fit-content;
}

.qty-ctrl button {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  transition: 0.2s;
}

.qty-ctrl button:hover:not(:disabled) {
  background: var(--primary);
}

.qty-ctrl span {
  font-weight: 900;
  font-size: 16px;
  min-width: 30px;
  text-align: center;
}

.cart-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
}

.summary-card {
  background: linear-gradient(135deg, #1e1333, #0f081d);
  border: 2px solid var(--border);
  border-radius: 36px;
  padding: 40px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.summary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.summary-card h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 32px;
  color: #fff;
  letter-spacing: -0.5px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.summary-row span:first-child {
  color: var(--text3);
  font-weight: 700;
  font-size: 15px;
}

.summary-row span:last-child {
  color: #fff;
  font-weight: 850;
  font-size: 18px;
}

.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 12px;
}

.total-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--text3);
}

.total-value {
  font-size: 40px !important;
  font-weight: 950 !important;
  color: #fff !important;
  letter-spacing: -1px;
}

.total-inst {
  font-size: 13px;
  color: var(--primary-l);
  font-weight: 700;
  margin-top: 4px;
  text-align: right;
}

.cep-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.cep-input-group input {
  flex: 1;
  height: 56px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 20px;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
}

.btn-calc-shipping {
  height: 56px;
  padding: 0 24px;
  background: var(--bg3);
  color: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s;
}

.btn-calc-shipping:hover {
  background: var(--primary);
  border-color: var(--primary-l);
}

.shipping-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.shipping-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.shipping-card:hover {
  border-color: var(--primary-l);
  background: rgba(255, 255, 255, 0.04);
}

.shipping-card.active {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
}

.discount-input-field {
  display: flex;
  gap: 10px;
  margin: 32px 0;
  padding: 20px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px dashed var(--primary);
  border-radius: 20px;
}

.discount-input-field input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
  outline: none;
}

.btn-apply-coupon {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
}



/* ====================================================
   HIGH-DPI MOBILE OVERRIDES (Fluid & Clean)
   ==================================================== */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .navbar {
    height: 60px !important;
  }

  .nav-inner {
    height: 60px !important;
    min-height: 60px;
  }

  body {
    padding-top: 60px !important;
  }

  .desktop-only {
    display: none !important;
  }

  .hamburger-btn-store {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .mobile-only {
    display: flex !important;
  }

  .mobile-search-header {
    flex: 1;
    margin: 0 12px;
    position: relative;
  }

  .mobile-search-header input {
    width: 100%;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0 40px 0 16px;
    color: #fff;
    font-size: 14px;
    outline: none;
  }

  .mobile-search-header svg {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text3);
  }

  .logo-img {
    height: 22px;
  }

  .nav-search {
    margin: 0 4px;
    max-width: 140px;
  }

  .nav-search input {
    height: 32px;
    font-size: 11px;
    padding: 0 12px;
  }

  .nav-search button {
    height: 26px;
    width: 26px;
    top: 3px;
    right: 3px;
  }

  .hero {
    padding: 32px 16px;
    margin: 0;
  }

  .section {
    padding: 24px 0;
  }

  .site-footer {
    padding: 40px 16px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px;
    text-align: left;
  }

  .social-bar {
    padding: 10px 20px;
    gap: 20px;
    margin: 10px auto;
  }

  .social-bar a svg {
    width: 24px;
    height: 24px;
  }

  .pay-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .pay-badges svg {
    width: 44px;
    height: 30px;
  }

  .mobile-break {
    display: block !important;
  }

  .footer-trust-stack.horizontal {
    flex-direction: column !important;
    align-items: center;
    width: 100%;
  }

  .social-side-col {
    flex-direction: row;
    width: 240px;
    justify-content: center;
    gap: 16px;
  }

  .social-ico-side {
    width: 112px;
    height: 50px;
  }

  /* Auto-DPI Text adjustments */

  p,
  span,
  li,
  a {
    font-size: clamp(12px, 3.2vw, 14px);
  }

  .product-name {
    font-size: 12px;
    height: 32px;
  }

  .nav-cat-bar {
    display: none !important;
  }

  .logo-text {
    display: none;
  }

  .shop-sidebar {
    display: none !important;
  }

  .products-layout {
    display: block !important;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
    gap: 12px;
  }

  .page-header {
    padding: 32px 0 16px;
    text-align: left;
  }

  .page-header h1 {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .page-header p {
    font-size: 13px;
    opacity: 0.7;
  }
}





.hamburger-btn-store {
  display: none;
  background: none;
  border: none;
  color: #fff;
  padding: 4px;
  margin-right: 8px;
  cursor: pointer;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 17, 23, 0.99);
  backdrop-filter: blur(20px);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow-y: auto;
  justify-content: flex-start;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-menu-overlay.open {
  transform: translateX(0);
}

.mobile-menu-item {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 16px;
}


/* ── AUTH SPLIT MODAL (Modern Horizontal) ─────────── */
.auth-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.auth-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.premium-split-card {
  width: 960px;
  max-width: 95%;
  height: min(700px, 95vh);
  background: var(--bg2);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  display: flex;
}

.auth-card-inner {
  display: flex;
  width: 100%;
  height: 100%;
}

.auth-header-top {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 100;
}

.auth-side-hero {
  flex: 1.1;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px;
}

.hero-overlay-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--primary) 0%, transparent 60%);
  opacity: 0.2;
}

.auth-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-logo-wrap img {
  width: 90px;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 20px var(--primary));
}

.hero-title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 950;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  color: var(--text2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto 40px;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 250px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text1);
}

.b-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* FORM SIDE */
.auth-side-forms {
  flex: 1;
  background: var(--bg2);
  padding: 40px 32px;
  /* Smoother padding */
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  /* Viewport handles internal scroll */
}

.auth-tabs {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 24px;
  /* Reduced gap */
  width: 280px;
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  color: var(--text3);
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s;
  white-space: nowrap;
}

.auth-tab.active {
  color: #fff;
}

.tab-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--primary);
  border-radius: 10px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-forms-viewport {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  max-height: 450px;
  /* Constrain height to ensure scroll */
}

.auth-forms-viewport::-webkit-scrollbar {
  width: 4px;
}

.auth-forms-viewport::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 10px;
}

.auth-forms-slider {
  display: flex;
  width: 200%;
  /* Total width for 2 slides */
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-form-content {
  width: 50%;
  /* One slide = 50% of the 200% slider = 100% of viewport */
  min-width: 50%;
  max-width: 50%;
  flex-shrink: 0;
  padding: 0 10px 20px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.form-header {
  margin-bottom: 24px;
}

.form-header h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.form-header p {
  color: var(--text3);
  font-size: 13px;
}

/* MODERN FLOATING INPUTS */
.input-group-modern {
  position: relative;
  margin-bottom: 12px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.input-group-modern input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 14px 6px;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.input-group-modern input[type="date"] {
  color-scheme: dark;
}

/* Ensure date picker parts use correct colors */
.input-group-modern input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 12px;
  filter: invert(1);
  opacity: 0.5;
  cursor: pointer;
  background: transparent !important;
}

.input-group-modern input[type="date"]::-webkit-datetime-edit,
.input-group-modern input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.input-group-modern input[type="date"]::-webkit-datetime-edit-text,
.input-group-modern input[type="date"]::-webkit-datetime-edit-month-field,
.input-group-modern input[type="date"]::-webkit-datetime-edit-day-field,
.input-group-modern input[type="date"]::-webkit-datetime-edit-year-field {
  color: #fff !important;
  background: transparent !important;
}

.input-group-modern label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--text3);
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
}

.input-group-modern input:focus {
  border-color: var(--primary) !important;
  background: rgba(239, 68, 68, 0.05);
}

.input-group-modern input:focus~label {
  top: 12px;
  font-size: 11px;
  font-weight: 850;
  color: var(--primary) !important;
}

.input-group-modern input:not(:placeholder-shown)~label {
  top: 12px;
  font-size: 11px;
  font-weight: 850;
  color: var(--text3);
}

/* Fix for Date Input showing red/active by default */
.input-group-modern input[type="date"]:not(:focus) {
  border-color: var(--border) !important;
}

.input-group-modern input[type="date"]:not(:focus)~label {
  color: var(--text3) !important;
  font-weight: 500;
}

.pass-group {
  display: flex;
  align-items: center;
}

.btn-toggle-pass {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text3);
  cursor: pointer;
  padding: 8px;
  z-index: 5;
  transition: 0.2s;
}

.btn-toggle-pass:hover {
  color: var(--primary);
}

.forgot-link-inline {
  display: block;
  text-align: right;
  font-size: 12px;
  color: var(--text3);
  text-decoration: none;
  margin: -8px 0 20px;
  font-weight: 600;
}

.forgot-link-inline:hover {
  color: var(--primary);
}

.forgot-link {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 11px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.btn-auth-red {
  width: 100%;
  padding: 18px 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: none;
  /* Shadow removed as requested */
  transition: 0.3s;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-auth-red:hover {
  filter: brightness(1.15);
  transform: none;
  /* Removed transform on hover to keep it flat as requested */
}

.auth-actions-row {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.btn-auth-red-half,
.google-btn-half {
  flex: 1;
  padding: 14px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: 0.3s;
  border: none;
  box-sizing: border-box;
}

.btn-auth-red-half {
  background: var(--primary);
  color: #fff;
  box-shadow: none;
  /* Shadow removed as requested */
}

.google-btn-half {
  background: #fff;
  color: #000;
}

.btn-auth-red-half:hover {
  transform: none;
  /* Removed transform on hover */
  filter: brightness(1.15);
}

.google-btn-half:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.register-row-split {
  display: flex;
  gap: 12px;
  width: 100%;
}

.register-row-split .input-group-modern {
  flex: 1;
}

.google-btn-minimal {
  width: 100%;
  padding: 16px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
  box-sizing: border-box;
}

.google-btn-minimal span {
  flex-shrink: 0;
}

.error-msg {
  color: #ff4d4d;
  font-size: 12px;
  font-weight: 600;
  margin-top: -8px;
  margin-bottom: 12px;
  min-height: 18px;
}

@media (max-width: 900px) {
  .premium-split-card {
    flex-direction: column;
    width: 100%;
    height: auto;
    max-height: 90vh;
  }

  .auth-side-hero {
    display: none;
  }

  .auth-side-forms {
    padding: 40px 24px;
  }

  .auth-tabs {
    width: 100%;
  }
}

/* ====================================================
   FORCE RED THEME & HIGH CONTRAST (RESTRICTED AREAS)
   ==================================================== */
.auth-required-page {
  background: #ff0000 !important;
  background: radial-gradient(circle at center, #ff0000 0%, #660000 100%) !important;
  display: flex !important;
  min-height: calc(100vh - 100px);
}

.auth-lock-card {
  background: #000000 !important;
  border: 5px solid #ffffff !important;
  box-shadow: 0 30px 100px rgba(0,0,0,0.9) !important;
  padding: 60px !important;
  border-radius: 20px !important;
  max-width: 600px !important;
}

.auth-lock-card h2 {
  color: #ffffff !important;
  font-size: 42px !important;
  font-weight: 1000 !important;
  text-shadow: 2px 2px 0px #ff0000;
}

.auth-lock-card p {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  margin-top: 20px;
}

.auth-lock-actions .btn-primary {
  background: #ffffff !important;
  color: #000000 !important;
  border: 4px solid #000000 !important;
  font-weight: 1000 !important;
  font-size: 20px !important;
  padding: 20px !important;
  height: auto !important;
  border-radius: 12px !important;
  transition: 0.2s !important;
  cursor: pointer !important;
}

.auth-lock-actions .btn-primary:hover {
  background: #ff0000 !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  transform: scale(1.05) !important;
}

.lock-icon-aura {
  background: #ff0000 !important;
  border: 3px solid #fff !important;
  box-shadow: 0 0 40px rgba(255,255,255,0.4) !important;
}

.lock-icon-aura svg {
  color: #fff !important;
}

/* ── PRODUCT DETAIL V2 ────────────────────────── */
.product-detail-page {
  padding: 40px 0;
  background: var(--bg);
  min-height: 100vh;
}

.product-grid-detail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  margin-top: 24px;
}

/* Gallery */
.product-gallery-v2 {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-stage {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

.main-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.main-stage img.oos-img {
  filter: grayscale(1);
  opacity: 0.5;
}

.detail-badge-promo {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
}

.thumb-strip {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.thumb-item {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  padding: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.thumb-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumb-item.active {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Info */
.product-main-info {
  display: flex;
  flex-direction: column;
}

.brand-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.product-title-v2 {
  font-size: 36px;
  font-weight: 1000;
  color: #fff;
  line-height:1.1;
  margin-bottom: 16px;
}

.rating-strip-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.stars-v2 {
  color: #f59e0b;
  font-size: 20px;
}

.rev-count {
  color: var(--text3);
  font-size: 14px;
  font-weight: 600;
}

.price-container-v2 {
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.price-row-v2 {
  display:flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}

.current-price-v2 {
  font-size: 42px;
  font-weight: 1000;
  color: #fff;
}

.old-price-v2 {
  font-size: 20px;
  color: var(--text3);
  text-decoration: line-through;
}

.installment-v2 {
  color: var(--text2);
  font-size: 15px;
}

/* Variant Picker */
.variant-picker-v2 {
  margin-bottom: 32px;
}

.variant-picker-v2 label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--text3);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.variant-options-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v-chip {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.v-chip:hover {
  border-color: var(--text3);
}

.v-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Stock */
.stock-info-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 700;
  color: #22c55e;
}

.stock-info-v2.oos {
  color: #ef4444;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

/* Actions */
.qty-and-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.qty-selector-v2 {
  display: flex;
  align-items: center;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
}

.qty-selector-v2 button {
  width: 44px;
  height: 54px;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.qty-selector-v2 button:hover {
  background: rgba(255,255,255,0.05);
}

.qty-selector-v2 span {
  width: 40px;
  text-align: center;
  font-weight: 800;
  font-size: 18px;
}

.buy-actions-v2 {
  flex: 1;
  display: flex;
  gap: 12px;
}

.btn-buy-v2 {
  flex: 1;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 30px;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-buy-v2:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: #fff;
}

.btn-add-v2 {
  width: 54px;
  height: 54px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add-v2:hover {
  background: var(--border);
}

.btn-add-v2 svg {
  width: 24px;
  height: 24px;
}

.btn-notify-v2 {
  width: 100%;
  padding: 18px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 32px;
}

/* Description Area */
.product-extra-tabs {
  margin-top: 80px;
}

.tab-header-v2 {
  font-size: 18px;
  font-weight: 1000;
  color: #fff;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 32px;
  letter-spacing: 1.5px;
}

.tab-content-v2 {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
}

.full-html-desc {
  margin-top: 24px;
}

/* Perks */
.product-perks-v2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text3);
  font-weight: 600;
}

.perk-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
  .product-grid-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-gallery-v2 {
    position: static;
  }
  
  .main-stage {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .product-detail-page {
    padding: 20px 0;
  }
  
  .product-title-v2 {
    font-size: 30px;
  }
  
  .current-price-v2 {
    font-size: 36px;
  }
  
  .qty-and-actions {
    flex-direction: column;
  }
  
  .qty-selector-v2 {
    justify-content: center;
  }
  
  .buy-actions-v2 {
    height: 54px;
  }
}

/* ── REFINED PRODUCT DETAIL ACTIONS ─────────── */
.qty-label-top {
  font-size: 11px;
  font-weight: 900;
  color: var(--text3);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
  margin-top: 10px;
}

.qty-selector-v3 {
  display: flex;
  align-items: center;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  width: fit-content;
  margin-bottom: 24px;
  overflow: hidden;
}

.qty-btn-v3 {
  width: 50px;
  height: 50px;
  border: none;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn-v3.minus { background: #ef4444; }
.qty-btn-v3.plus { background: #22c55e; }

.qty-btn-v3:hover { opacity: 0.8; }

.qty-val-v3 {
  width: 60px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

.buy-actions-v3 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-buy-flashy {
  width: 100%;
  height: 64px;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 1000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
  text-transform: uppercase;
}

.btn-buy-flashy:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.6);
}

.btn-buy-flashy svg { width: 22px; height: 22px; }

.btn-add-flashy {
  width: 100%;
  height: 60px;
  background: transparent;
  color: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
  text-transform: uppercase;
}

.btn-add-flashy:hover {
  background: rgba(255,255,255,0.05);
  border-color: #fff;
}

.btn-add-flashy svg { width: 20px; height: 20px; }

/* Desktop Adjustment */
@media (min-width: 992px) {
  .buy-actions-v3 {
    flex-direction: row;
    align-items: stretch;
  }
  
  .btn-buy-flashy { flex: 2; }
  .btn-add-flashy { flex: 1; }
}

