/* c:/xampp/htdocs/ng/ngone/assets/css/storefront.css */

/* Top Announcement Bar */
.top-announcement-bar {
  background: linear-gradient(90deg, #0040a8 0%, #0052cc 50%, #0080ff 100%);
  color: #ffffff;
  padding: 0.45rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.announcement-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.announcement-text {
  flex: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
}

.announcement-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.8rem;
  white-space: nowrap;
}
.announcement-link:hover {
  color: #e0f2fe;
}
.announcement-link-short {
  display: none;
}

@media (max-width: 800px) {
  .announcement-text { display: none; }
  .announcement-link-full { display: none; }
  .announcement-link-short { display: inline; }
}

/* LMS Navbar */
.lms-navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #e8edf5;
  padding: 0.6rem 0;
  box-shadow: 0 1px 12px rgba(15, 23, 42, 0.06);
}

/* ── Tagda Search Bar ── */
.tagda-search-wrap {
  position: relative;
  flex: 1;
  max-width: 440px;
}

.tagda-search-wrap .nav-search-input {
  width: 100%;
  padding: 0.6rem 2.8rem 0.6rem 2.5rem;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 9999px;
  color: #0f172a;
  font-size: 0.875rem;
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  transition: all 0.18s ease;
  outline: none;
}

.tagda-search-wrap .nav-search-input:focus {
  border-color: #0052cc;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.tagda-search-wrap .nav-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  display: flex;
}

.tagda-search-wrap .nav-search-kbd {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  color: #94a3b8;
  background: #e2e8f0;
  padding: 2px 5px;
  border-radius: 4px;
  pointer-events: none;
  font-family: monospace;
}

/* ── Teach & Sell CTA Button ── */
.tagda-seller-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: 9999px;
  color: #b45309;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.tagda-seller-btn:hover {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #92400e;
}

.tagda-cut-badge {
  font-size: 0.65rem;
  font-weight: 800;
  background: #f59e0b;
  color: #ffffff;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* ── Cart Button ── */
.tagda-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: #475569;
  text-decoration: none;
  transition: all 0.18s ease;
  flex-shrink: 0;
}

.tagda-cart-btn:hover {
  background: #eff6ff;
  border-color: #0052cc;
  color: #0052cc;
}

/* ── Sign In Button ── */
.tagda-signin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1.5px solid #e2e8f0;
  border-radius: 9999px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.tagda-signin-btn:hover {
  border-color: #0052cc;
  color: #0052cc;
  background: #f0f6ff;
}

/* ── Get Started / Join Button ── */
.tagda-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: linear-gradient(135deg, #0052cc 0%, #0080ff 100%);
  border: none;
  border-radius: 9999px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.18s ease;
  box-shadow: 0 3px 12px rgba(0, 82, 204, 0.25);
  white-space: nowrap;
}

.tagda-join-btn:hover {
  background: linear-gradient(135deg, #003d99 0%, #0066cc 100%);
  box-shadow: 0 4px 16px rgba(0, 82, 204, 0.35);
  transform: translateY(-1px);
}

/* ── Desktop Nav Actions ── */
.desktop-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ── Mobile: hide search bar in header, show hamburger ── */
@media (max-width: 768px) {
  .tagda-search-wrap {
    display: none;
  }
  .desktop-nav-actions {
    display: none;
  }
}


.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 82, 204, 0.15));
}

.brand-text-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1;
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 6px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 82, 204, 0.18);
  letter-spacing: 0.05em;
  line-height: 1;
}

/* Category Quick Dropdown */
.nav-category-menu {
  position: relative;
}

.nav-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  color: #334155;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-cat-btn:hover {
  background: #e2e8f0;
  color: var(--primary);
  border-color: #cbd5e1;
}

.nav-cat-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 310px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 1000;
}

.nav-category-menu:hover .nav-cat-dropdown {
  display: flex;
}

.nav-cat-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  text-decoration: none;
}

.nav-cat-item:hover {
  background: #f8fafc;
}

.cat-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cat-icon-green { background: rgba(5, 150, 105, 0.1); color: #059669; }
.cat-icon-blue { background: rgba(0, 128, 255, 0.1); color: #0077e6; }
.cat-icon-rose { background: rgba(225, 29, 72, 0.1); color: #e11d48; }

.cat-item-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: #0f172a;
  line-height: 1.2;
}

.cat-item-desc {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}

.cat-dropdown-footer {
  border-top: 1px solid #f1f5f9;
  padding: 0.6rem 0.75rem 0.25rem;
  font-size: 0.775rem;
  font-weight: 700;
}
.cat-dropdown-footer a { color: var(--primary); }

/* Search Bar with Keyboard Shortcut Badge */
.nav-search-wrap {
  position: relative;
  flex: 1;
  max-width: 520px;
}

.nav-search-input {
  width: 100%;
  padding: 0.65rem 3.5rem 0.65rem 2.65rem;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-full);
  color: #0f172a;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.nav-search-input:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.12);
  outline: none;
}

.nav-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  display: flex;
}

.nav-search-kbd {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  background: #e2e8f0;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  pointer-events: none;
  font-family: monospace;
}

/* ── Live Search Dropdown Popup ── */
.search-results-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  min-width: 380px;
  max-width: 520px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(0, 82, 204, 0.08);
  z-index: 1050;
  overflow: hidden;
  max-height: 440px;
  overflow-y: auto;
}

@media (max-width: 800px) {
  .search-results-dropdown {
    min-width: 100%;
    max-width: 100%;
  }
}

.search-results-dropdown::-webkit-scrollbar {
  width: 5px;
}
.search-results-dropdown::-webkit-scrollbar-track {
  background: #f8fafc;
}
.search-results-dropdown::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.search-results-dropdown.active,
.search-results-dropdown.is-open {
  display: flex !important;
  flex-direction: column;
  animation: searchDropFade 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes searchDropFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  background: #f8fafc;
  border-bottom: 1px solid #edf2f7;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1rem;
  text-decoration: none;
  color: #0f172a;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.15s ease;
}

.search-result-item:last-of-type {
  border-bottom: none;
}

.search-result-item:hover,
.search-result-item.is-selected {
  background: #f0f7ff;
}

.search-item-thumb {
  width: 62px;
  height: 42px;
  min-width: 62px;
  max-width: 62px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-item-thumb img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.search-item-details {
  flex: 1;
  min-width: 0;
}

.search-item-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s;
}

.search-result-item:hover .search-item-title,
.search-result-item.is-selected .search-item-title {
  color: #0052cc;
}

.search-item-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  color: #64748b;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-item-type {
  display: inline-flex;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.search-item-type.search-type-video {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.search-item-type.search-type-ebook {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.search-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.search-item-price span {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
  font-family: var(--font-heading, sans-serif);
}

.search-item-price small {
  font-size: 0.72rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.search-dropdown-footer {
  background: #f8fafc;
  padding: 0.65rem 1rem;
  text-align: center;
  border-top: 1px solid #edf2f7;
}

.search-dropdown-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0052cc;
  text-decoration: none;
}

.search-dropdown-footer a:hover {
  text-decoration: underline;
}

.search-match-highlight {
  background: #fef08a;
  color: #854d0e;
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 800;
}

.search-loading-state,
.search-empty-state {
  padding: 1.75rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.search-loading-spinner {
  width: 22px;
  height: 22px;
  border: 2.5px solid #e2e8f0;
  border-top-color: #0052cc;
  border-radius: 50%;
  animation: searchSpin 0.7s linear infinite;
}

@keyframes searchSpin {
  to { transform: rotate(360deg); }
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-btn-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  transition: all var(--transition-fast);
}

.cart-btn-link:hover {
  background: #ffffff;
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #e11d48;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 19px;
  height: 19px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.badge-pulse {
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.nav-signin-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
}

.nav-cta-btn {
  background: linear-gradient(135deg, #0052cc 0%, #0080ff 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.28);
}

/* User Profile Pill & Dropdown */
.nav-user-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem 0.35rem 0.4rem;
  border-radius: var(--radius-full);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  cursor: pointer;
}

.nav-user-pill:hover .user-menu-dropdown {
  display: flex;
}

.nav-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.nav-user-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-user-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
}

.nav-user-role-badge {
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.user-menu-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 230px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 1000;
}

.user-menu-header {
  padding: 0.5rem 0.75rem 0.65rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.8rem;
}
.user-menu-header strong { display: block; color: #0f172a; font-size: 0.875rem; }
.user-menu-header small { color: #64748b; }

.user-menu-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
}

.user-menu-item:hover {
  background: #f8fafc;
  color: var(--primary);
}

.user-menu-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 0.25rem 0;
}

/* Hero Section */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(0, 128, 255, 0.07) 0%, transparent 60%), #f8fafc;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--primary-light);
  border: 1px solid rgba(0, 82, 204, 0.2);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.825rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #0f172a;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #475569;
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.hero-stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.825rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 0.35rem;
}

/* Category Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.5rem;
  margin-bottom: 2rem;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: all var(--transition-fast);
}

.filter-pill:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.filter-pill.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px var(--primary-glow);
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 82, 204, 0.35);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.product-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f1f5f9;
  overflow: hidden;
}

.product-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover .product-thumb-wrap img {
  transform: scale(1.04);
}

.product-type-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.product-card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.product-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-seller {
  font-size: 0.825rem;
  color: #64748b;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.product-pricing {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding-top: 0.85rem;
  border-top: 1px solid #f1f5f9;
}

.price-current {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  font-family: var(--font-heading);
}

.price-original {
  font-size: 0.9rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.price-discount {
  font-size: 0.75rem;
  font-weight: 800;
  color: #059669;
  margin-left: auto;
}

.product-card-footer {
  padding: 0.85rem 1.35rem 1.25rem;
  display: flex;
  gap: 0.6rem;
  background: #fafbfc;
  border-top: 1px solid #f1f5f9;
}

/* Detail View Layout */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
}

/* Sticky Checkout Sidebar Card */
.sticky-buy-box {
  position: sticky;
  top: 90px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* Luxury Modern Footer */
.lms-footer {
  margin-top: auto;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 3.5rem 0 2rem;
  color: #475569;
  position: relative;
}

/* Pre-Footer Floating Newsletter Card */
.footer-newsletter-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.5rem;
  margin-top: -3.5rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 10;
}

.footer-newsletter-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .footer-newsletter-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-newsletter-card { margin-top: 2rem; padding: 1.5rem; }
}

.footer-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 82, 204, 0.08);
  border: 1px solid rgba(0, 82, 204, 0.2);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.footer-newsletter-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.footer-newsletter-desc {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

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

.footer-input-icon {
  position: absolute;
  left: 1rem;
  color: #94a3b8;
  display: flex;
  pointer-events: none;
}

.footer-newsletter-input {
  width: 100%;
  padding: 0.8rem 8.5rem 0.8rem 2.75rem;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: #0f172a;
  transition: all var(--transition-fast);
}

.footer-newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.12);
}

.footer-newsletter-btn {
  position: absolute;
  right: 5px;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
}

.footer-form-subtext {
  font-size: 0.725rem;
  color: #94a3b8;
  margin-top: 0.5rem;
  padding-left: 0.5rem;
}

/* Main Footer Columns Grid */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 1024px) {
  .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .footer-main-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Footer Brand Column */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-badge {
  background: #ffffff;
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
  display: flex;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.footer-brand-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.06em;
}

.footer-about-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.footer-security-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 0.85rem;
  box-shadow: 0 1px 3px rgba(5, 150, 105, 0.06);
}

.security-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: #10b981;
}

.footer-contact-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: #64748b;
}
.footer-contact-chip a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Footer Links Columns */
.footer-col-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
}

.footer-link-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: #475569;
  text-decoration: none;
  transition: all var(--transition-fast);
  padding: 2px 0;
}

.footer-link-item:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-icon-box {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-green  { background: rgba(5, 150, 105, 0.1); color: #059669; }
.icon-blue   { background: rgba(0, 128, 255, 0.1); color: #0077e6; }
.icon-rose   { background: rgba(225, 29, 72, 0.1); color: #e11d48; }
.icon-amber  { background: rgba(217, 119, 6, 0.1); color: #d97706; }
.icon-purple { background: rgba(124, 58, 237, 0.1); color: #7c3aed; }

/* Payment & Trust Strip */
.footer-payment-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.payment-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.payment-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pay-pill {
  padding: 0.3rem 0.75rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 700;
  color: #334155;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

/* Footer Bottom Copyright Strip */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy strong {
  color: #0f172a;
}

.footer-trust-tags {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-tag-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #334155;
  font-weight: 600;
}
.trust-tag-item svg {
  color: var(--primary);
}

/* ==========================================================================
   Creator Storefront Page Styles (Ultra-Modern Aesthetic)
   ========================================================================== */

.storefront-hero-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06);
  margin-bottom: 2rem;
  position: relative;
}

.storefront-cover-banner {
  height: 155px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background-size: cover;
  background-position: center;
}

.storefront-cover-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 40%, rgba(255, 255, 255, 0.18) 0%, transparent 45%),
              radial-gradient(circle at 85% 60%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.storefront-cover-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.03em;
  z-index: 2;
}

.storefront-cover-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}

.storefront-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.9);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

.storefront-edit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  background: #f8fafc;
}

.storefront-hero-body {
  padding: 0 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
}

.storefront-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  margin-top: -55px;
  z-index: 5;
}

.storefront-avatar {
  width: 104px;
  height: 104px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0052cc 0%, #2684ff 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.3rem;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  overflow: hidden;
}

.storefront-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storefront-verified-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #0052cc;
}

.storefront-details {
  flex: 1;
  min-width: 0;
  padding-top: 1rem;
}

.storefront-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.storefront-title {
  margin: 0;
  font-size: 1.85rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.creator-role-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.storefront-tagline {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0.15rem 0 0.6rem 0;
  line-height: 1.4;
}

.storefront-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 0 1.25rem 0;
}

.storefront-chips-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.storefront-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.82rem;
  color: var(--text-main);
  font-weight: 500;
  transition: all 0.2s ease;
}

.storefront-chip:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.storefront-chip strong {
  color: var(--text-main);
  font-weight: 700;
}

.storefront-chip .chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.storefront-share-bar {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.storefront-share-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  min-width: 0;
}

.storefront-share-label svg {
  color: var(--primary);
  flex-shrink: 0;
}

.share-url-text {
  font-family: monospace;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-main);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 440px;
}

.storefront-share-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buyer Guarantee Strip */
.buyer-guarantee-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 1.75rem 0;
}

.buyer-guarantee-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.buyer-guarantee-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.buyer-guarantee-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.buyer-guarantee-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.buyer-guarantee-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Storefront Filter Card & Tabs */
.storefront-filter-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.storefront-tabs {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.storefront-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  background: transparent;
  transition: all 0.2s ease;
}

.storefront-tab:hover {
  color: var(--primary);
  background: var(--bg-surface-elevated);
}

.storefront-tab.active {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25);
}

.storefront-tab .tab-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: #e2e8f0;
  color: var(--text-muted);
  padding: 1px 7px;
  border-radius: 9999px;
  line-height: 1.2;
}

.storefront-tab.active .tab-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.storefront-search-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 320px;
}

.storefront-search-input-wrap {
  position: relative;
  flex: 1;
}

.storefront-search-input-wrap .search-icon-inside {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-subtle);
  pointer-events: none;
}

.storefront-search-input-wrap input {
  padding-left: 36px;
  padding-right: 32px;
  height: 40px;
  font-size: 0.85rem;
  border-radius: 10px;
}

.clear-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-subtle);
  text-decoration: none;
  font-size: 0.8rem;
  cursor: pointer;
}

.storefront-sort-select {
  width: auto;
  height: 40px;
  font-size: 0.85rem;
  border-radius: 10px;
  padding: 0 2rem 0 0.85rem;
  background-position: right 0.7rem center;
}

.social-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.2;
}

.social-badge-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Bottom Creator Help Card */
.storefront-support-card {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  padding: 2rem;
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 4px 20px -2px rgba(0, 82, 204, 0.05);
}

/* Base desktop defaults: Mobile Drawer and Toggle are completely hidden on desktop */
.mobile-nav-toggle-wrap {
  display: none;
}
.mobile-nav-panel {
  display: none;
}
.mobile-nav-backdrop {
  display: none;
}

@media (max-width: 900px) {
  /* Navbar adjustments for mobile/tablet */
  .desktop-nav-actions {
    display: none !important;
  }
  .tagda-search-wrap {
    display: none !important;
  }
  .lms-navbar .nav-category-menu {
    display: none !important;
  }
  .lms-navbar .nav-search-wrap {
    display: none !important;
  }

  .lms-navbar {
    position: sticky;
    top: 0;
    z-index: 950;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .navbar-container {
    gap: 0.5rem;
    padding: 0 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand-logo {
    gap: 0.45rem;
    flex-shrink: 0;
  }
  .brand-img {
    height: 34px;
  }
  .brand-title {
    font-size: 1.15rem;
  }
  .brand-sub {
    display: none;
  }

  /* Mobile Header Right: Cart button + Animated Hamburger */
  .mobile-nav-toggle-wrap {
    display: flex !important;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
  }

  .mobile-cart-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #1e293b;
    position: relative;
    text-decoration: none;
    transition: all var(--transition-fast);
  }

  .mobile-cart-btn:hover,
  .mobile-cart-btn:active {
    background: #ffffff;
    border-color: var(--primary);
    color: var(--primary);
  }

  /* Animated 3-line Hamburger Button */
  .mobile-hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-hamburger-btn:hover,
  .mobile-hamburger-btn:active {
    background: #f1f5f9;
    border-color: #cbd5e1;
  }

  .mobile-hamburger-btn .hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #0f172a;
    border-radius: 2px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s ease,
                background-color 0.2s ease;
    transform-origin: center;
  }

  /* Active Hamburger Animation -> "X" icon */
  .mobile-hamburger-btn.is-active {
    background: #eff6ff;
    border-color: var(--primary);
  }

  .mobile-hamburger-btn.is-active .line-1 {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--primary);
  }

  .mobile-hamburger-btn.is-active .line-2 {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-hamburger-btn.is-active .line-3 {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--primary);
  }

  /* Dimmed Backdrop Overlay with Blur */
  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .mobile-nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Minimal Right-Side Off-Canvas Mobile Navigation Drawer */
  .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 285px;
    max-width: 82vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    box-shadow: -6px 0 25px rgba(15, 23, 42, 0.12);
    transform: translateX(105%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.2s ease,
                visibility 0.28s;
    z-index: 99999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav-panel.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  /* Slim Top Bar */
  .mobile-drawer-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .mobile-drawer-brand {
    display: flex;
    align-items: center;
  }

  .mobile-drawer-logo {
    height: 22px;
    width: auto;
    display: block;
  }

  .mobile-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    cursor: pointer;
    transition: all 0.15s ease;
    padding: 0;
  }

  .mobile-drawer-close:hover,
  .mobile-drawer-close:active {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
  }

  .mobile-nav-inner {
    padding: 0.95rem 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }

  /* Minimal Search */
  .mobile-search-wrap {
    position: relative;
    width: 100%;
  }

  .mobile-search-input {
    width: 100%;
    height: 38px;
    padding: 0 0.85rem 0 2.2rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 0.84rem;
    color: #0f172a;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
  }

  .mobile-search-input:focus {
    border-color: #0052cc;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.1);
  }

  .mobile-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    display: flex;
  }

  /* Minimal Guest Auth Buttons */
  .mobile-guest-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-minimal-signin {
    flex: 1;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: all 0.15s ease;
  }

  .btn-minimal-signin:hover {
    background: #f8fafc;
    border-color: #94a3b8;
  }

  .btn-minimal-sell {
    flex: 1.25;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0052cc;
    border: 1px solid #0052cc;
    border-radius: 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.15s ease;
  }

  .btn-minimal-sell:hover {
    background: #0041a3;
  }

  /* User Row */
  .mobile-user-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.35rem 0.2rem;
  }

  .mobile-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0052cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
  }

  .mobile-user-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-user-role {
    font-size: 0.72rem;
    color: #64748b;
  }

  /* Minimal Nav Group & Menu Items */
  .mobile-nav-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-group-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #94a3b8;
    text-transform: uppercase;
    padding: 0 0.5rem 0.35rem;
  }

  .mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.65rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 500;
    color: #334155;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .mobile-menu-item:hover,
  .mobile-menu-item:active {
    background: #f8fafc;
    color: #0f172a;
  }

  .menu-icon {
    font-size: 1rem;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .menu-title {
    flex: 1;
  }

  .menu-arrow {
    font-size: 1.15rem;
    color: #cbd5e1;
    font-weight: 300;
    line-height: 1;
  }

  .mobile-menu-item.text-danger {
    color: #ef4444;
  }

  /* Minimal Footer */
  .mobile-drawer-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid #f8fafc;
    font-size: 0.72rem;
    color: #94a3b8;
    text-align: center;
  }

  /* Announcement Top Bar Mobile Tweak */
  .top-announcement-bar {
    padding: 0.35rem 0;
  }
  .top-announcement-content {
    padding: 0 0.75rem;
    gap: 0.5rem;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .top-announcement-bar .announcement-text {
    display: none !important;
  }
  .announcement-tag {
    font-size: 0.65rem;
    padding: 2px 6px;
    flex-shrink: 0;
  }
  .announcement-link {
    font-size: 0.75rem;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   Storefront Minimalist Executive Navbar Styles (No Toggle)
   ========================================================================== */
.storefront-navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #eef2f6;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  padding: 0.52rem 0;
  transition: all 0.2s ease;
}

.storefront-navbar .navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.storefront-navbar .brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.storefront-navbar .brand-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: none !important;
  display: block;
}

.storefront-navbar .storefront-nav-actions {
  display: inline-flex !important;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.storefront-navbar .cart-btn-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.storefront-navbar .cart-btn-link:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0052cc;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
  transform: translateY(-1px);
}

.storefront-navbar .cart-btn-link svg {
  width: 18px;
  height: 18px;
}

.storefront-join-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 1.25rem;
  height: 38px;
  font-family: var(--font-heading, 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 9999px;
  background: #0052cc;
  color: #ffffff !important;
  text-decoration: none;
  border: 1px solid #0047b3;
  box-shadow: 0 1px 3px rgba(0, 82, 204, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.storefront-join-btn:hover {
  background: #0047b3;
  border-color: #003d99;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.storefront-join-btn:active {
  transform: translateY(0) scale(0.98);
}

.storefront-join-btn .join-btn-text {
  font-weight: 600;
}

.storefront-join-btn .join-btn-arrow {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  stroke-width: 2.2;
}

.storefront-join-btn:hover .join-btn-arrow {
  transform: translateX(2.5px);
}

@media (max-width: 768px) {
  .storefront-navbar {
    padding: 0.42rem 0;
  }
  .storefront-navbar .brand-img {
    height: 28px;
  }
  .storefront-navbar .storefront-nav-actions {
    gap: 0.45rem;
  }
  .storefront-navbar .cart-btn-link {
    width: 35px;
    height: 35px;
  }
  .storefront-navbar .cart-btn-link svg {
    width: 16px;
    height: 16px;
  }
  .storefront-join-btn {
    height: 35px;
    padding: 0 1rem;
    font-size: 0.82rem;
    gap: 0.35rem;
  }
  .storefront-join-btn .join-btn-arrow {
    width: 12px;
    height: 12px;
  }
}

.storefront-navbar .brand-text-wrap,
.storefront-navbar .brand-sub {
  display: none !important;
}


