:root {
  --forest-950: #040e0c;
  --forest-900: #061210;
  --forest-850: #081a16;
  --forest-800: #0a241e;
  --forest-750: #0c2e26;
  --forest-700: #0f3a2e;
  --forest-650: #124636;
  --forest-600: #1a5a44;
  --forest-500: #2d7a5c;
  --forest-400: #4a9a7c;
  --forest-300: #6dba9e;
  --forest-200: #9ad4be;

  --gold: #c9a84c;
  --gold-light: #e0c56a;
  --gold-dark: #a8882e;
  --gold-glow: rgba(201, 168, 76, 0.1);
  --gold-glow-strong: rgba(201, 168, 76, 0.18);

  --bg-primary: var(--forest-900);
  --bg-secondary: var(--forest-850);
  --bg-card: var(--forest-800);
  --bg-card-hover: var(--forest-750);
  --bg-elevated: var(--forest-700);
  --bg-input: var(--forest-850);

  --text-1: #f0efe7;
  --text-2: #c5c3b8;
  --text-3: #8a887e;
  --text-muted: #6b695e;

  --border-1: rgba(201, 168, 76, 0.1);
  --border-2: rgba(201, 168, 76, 0.2);
  --border-3: rgba(201, 168, 76, 0.3);

  --success: #34d399;
  --danger: #ef4444;
  --warning: #f59e0b;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 12px var(--gold-glow);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --tx: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --tx-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 72px;
}

* { box-sizing: border-box; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--forest-950); }
::-webkit-scrollbar-thumb { background: var(--forest-500); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--forest-400); }

::selection { background: var(--gold); color: var(--forest-950); }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-1);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height);
}

main { flex: 1; }

a { color: var(--gold); transition: var(--tx); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ============================
   MOBILE (default, <768px)
   ============================ */

/* Navbar mobile */
.navbar {
  background: linear-gradient(180deg, var(--forest-950) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-1);
  padding: 0;
  min-height: 56px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 1rem;
}

.mobile-menu-btn {
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  padding: 0.25rem 0.5rem;
  background: rgba(201, 168, 76, 0.08);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn:focus { box-shadow: none; }

.desktop-nav,
.desktop-actions { display: none; }

/* Mobile logged-in user info */
.mobile-user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-3);
  border-top: 1px solid var(--border-1);
  margin-top: 0.5rem;
}

.mobile-user-info .lucide { width: 1rem; height: 1rem; color: var(--gold); }

/* Mobile auth buttons */
.mobile-auth-section {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
}

.mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--tx);
}

.mobile-btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--forest-950) !important;
}

.mobile-btn-outline {
  border: 1px solid var(--border-2);
  color: var(--text-1) !important;
}

.mobile-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

/* Offcanvas mobile menu */
.offcanvas {
  background: var(--forest-950);
  border-left: 1px solid var(--border-1);
}

.offcanvas .btn-close { filter: invert(0.8); }

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-2);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--tx);
  text-decoration: none;
}

.mobile-nav-link .lucide { width: 1.25rem; height: 1.25rem; color: var(--gold); }

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.btn-quick-mobile {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: var(--forest-950) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-sm);
  margin: 0 1.25rem;
  padding: 0.75rem 1.25rem !important;
  text-align: center;
}

.btn-quick {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: var(--forest-950) !important;
  font-weight: 700 !important;
  text-align: center;
}

/* Alert mobile */
.alert-banner {
  background: linear-gradient(135deg, var(--forest-700), var(--forest-600));
  border: 1px solid var(--border-2);
  color: var(--gold-light);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  text-align: center;
  margin: 0.75rem;
}

/* Hero mobile */
.hero-banner {
  padding: 2rem 1rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-banner-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 60%);
  opacity: 0.4;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-banner h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero-banner p {
  color: var(--text-3);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-2);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Search mobile */
.search-section {
  padding: 0 0.75rem;
  margin-bottom: 1.25rem;
}

.search-wrapper {
  display: flex;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  overflow: hidden;
  align-items: center;
}

.search-icon {
  padding: 0 0 0 1rem;
  color: var(--text-3);
  font-size: 0.9rem;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-1);
  padding: 0.75rem 0.5rem;
  font-size: 0.9rem;
  outline: none;
  font-family: inherit;
}

.search-input::placeholder { color: var(--text-3); }

.search-select {
  background: transparent;
  border: none;
  border-left: 1px solid var(--border-1);
  color: var(--text-2);
  padding: 0.75rem 0.5rem;
  font-size: 0.85rem;
  outline: none;
  min-width: 100px;
  cursor: pointer;
  font-family: inherit;
}

.search-select option { background: var(--forest-850); color: var(--text-1); }

.search-btn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  color: var(--forest-950);
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.pill {
  padding: 0.35rem 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: 100px;
  color: var(--text-2);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tx);
  font-family: inherit;
}

.pill:hover {
  border-color: var(--border-2);
  color: var(--gold);
}

.pill.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: transparent;
  color: var(--forest-950);
  font-weight: 700;
}

/* Product grid mobile */
#products-parent { margin: 0; }

.product-item .card {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0;
}

.product-item .card.border-primary { border-color: var(--border-2) !important; }

.product-item .card-body { padding: 0.85rem; }
.product-item .card-footer {
  padding: 0.75rem 0.85rem;
  border-top: 1px solid var(--border-1);
  background: transparent;
}

.product-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--forest-800), var(--forest-750));
  position: relative;
  overflow: hidden;
}

.product-thumb .lucide {
  width: 3rem;
  height: 3rem;
  color: var(--gold);
  opacity: 0.3;
  transition: var(--tx-slow);
}

.product-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tx-slow);
}

.product-item .card:hover .product-thumb-img {
  transform: scale(1.08);
}

/* Featured spotlight mobile */
.featured-spotlight {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 0.75rem 0.5rem;
  margin-bottom: 1rem;
}

.featured-spotlight::-webkit-scrollbar { display: none; }

.featured-card {
  flex: 0 0 75%;
  scroll-snap-align: start;
  background: linear-gradient(135deg, var(--forest-800), var(--forest-750));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  transition: var(--tx);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-1);
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.featured-card .icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.featured-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .featured-img {
    width: 80px;
    height: 80px;
  }
}

/* Admin content area mobile */
@media (max-width: 767px) {
  .admin-content-wrap { padding: 0.75rem !important; }
  .admin-content-wrap h3 { font-size: 1rem; }
  .admin-content-wrap .card-body.p-4 { padding: 1rem !important; }

  .option-row .col-md-1 {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.25rem;
  }

  .option-row .col-md-1 .btn {
    width: 100%;
  }

  .admin-content-wrap .btn-lg {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .admin-content-wrap .admin-section-title {
    font-size: 0.78rem;
  }
}

/* Mobile admin sidebar */
.admin-sidebar {
  padding: 1rem 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border-1);
  background: var(--forest-950);
}

.admin-sidebar h5 { display: none; }

.admin-sidebar .nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.admin-sidebar .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 0.5rem !important;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text-2);
  text-decoration: none;
  transition: var(--tx);
}

.admin-sidebar .nav-link .lucide {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.admin-sidebar .nav-link.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--forest-950);
  border-color: var(--gold);
}

.admin-sidebar .nav-link.active .lucide { color: var(--forest-950); }

/* Admin dashboard cards */
.admin-stat-card {
  background: linear-gradient(135deg, var(--forest-800), var(--forest-750));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.admin-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.admin-stat-card.gold::before { background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark)); }
.admin-stat-card.green::before { background: linear-gradient(90deg, #1a6b3c, var(--success), #1a6b3c); }
.admin-stat-card.orange::before { background: linear-gradient(90deg, #8a5c00, var(--warning), #8a5c00); }

.admin-stat-card .stat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.admin-stat-card .stat-icon .lucide { width: 20px; height: 20px; }

.admin-stat-card .stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.15rem;
}

.admin-stat-card .stat-label {
  font-size: 0.78rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-stat-card.gold .stat-icon { background: rgba(212, 175, 55, 0.15); color: var(--gold); }
.admin-stat-card.gold .stat-number { color: var(--gold); }
.admin-stat-card.green .stat-icon { background: rgba(34, 197, 94, 0.12); color: var(--success); }
.admin-stat-card.green .stat-number { color: var(--success); }
.admin-stat-card.orange .stat-icon { background: rgba(234, 179, 8, 0.12); color: var(--warning); }
.admin-stat-card.orange .stat-number { color: var(--warning); }

/* Admin responsive tables */
.admin-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
}

.admin-table-wrap table { min-width: 460px; }

.admin-table-wrap th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  font-weight: 700;
  padding: 0.7rem 1rem !important;
  border-bottom: 1px solid var(--border-1) !important;
  background: var(--forest-900);
}

.admin-table-wrap td {
  padding: 0.7rem 1rem !important;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-1) !important;
  vertical-align: middle;
}

.admin-table-wrap tr:last-child td { border-bottom: none !important; }

@media (max-width: 767px) {
  .admin-table-wrap table,
  .admin-table-wrap thead,
  .admin-table-wrap tbody,
  .admin-table-wrap th,
  .admin-table-wrap td,
  .admin-table-wrap tr {
    display: block;
  }

  .admin-table-wrap thead { display: none; }

  .admin-table-wrap table { min-width: 0; }

  .admin-table-wrap tr {
    padding: 0.85rem;
    margin-bottom: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-1);
    border-radius: var(--radius-md);
  }

  .admin-table-wrap td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0 !important;
    border-bottom: none !important;
    font-size: 0.82rem;
    gap: 0.5rem;
  }

  .admin-table-wrap td::before {
    content: attr(data-label);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-3);
    font-weight: 600;
    flex-shrink: 0;
  }

  .admin-table-wrap td:last-child { padding-bottom: 0 !important; }
  .admin-table-wrap td:first-child { padding-top: 0 !important; }
}

.admin-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}

/* Admin stats grid: 2 cols on mobile, 4 on desktop */
.admin-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* 5-column grid for desktop */
@media (min-width: 992px) {
  .col-lg-5th { width: 20%; flex: 0 0 auto; }
}

/* Pagination */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 1.5rem 0 2rem;
}

.page-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  color: var(--text-2);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--tx);
  min-width: 36px;
  text-align: center;
}

.page-btn:hover:not([disabled]) {
  border-color: var(--gold);
  color: var(--gold);
}

.page-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  font-weight: 700;
}

.page-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

.page-btn .lucide {
  width: 16px;
  height: 16px;
}

.page-ellipsis {
  color: var(--text-3);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 0 0.2rem;
}



.featured-card h6 {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
  color: var(--text-1);
}

.featured-card .price {
  color: var(--success);
  font-weight: 700;
  font-size: 1rem;
  margin-top: auto;
}

/* Forms mobile */
.form-control, .form-select {
  background: var(--bg-input);
  border: 1px solid var(--border-1);
  color: var(--text-1);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  width: 100%;
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px var(--gold-glow) !important;
  background: var(--bg-card);
  color: var(--text-1);
}

.form-label {
  color: var(--text-2);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  display: block;
}

/* Cards mobile */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
}

.card-body { padding: 1.25rem; }

/* Buttons mobile */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--tx);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: var(--forest-950) !important;
}

.btn-outline-primary {
  background: transparent;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
}

.btn-lg { padding: 0.8rem 1.5rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 0.85rem; font-size: 0.82rem; }

/* Modal mobile */
.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
}

.modal-header {
  border-bottom: 1px solid var(--border-1);
  padding: 1rem 1.25rem;
}

.modal-header .btn-close { filter: invert(0.8); }

/* Footer mobile */
footer {
  background: linear-gradient(0deg, var(--forest-950) 0%, transparent 100%);
  border-top: 1px solid var(--border-1);
  padding: 1.5rem 0;
  text-align: center;
  margin-top: auto;
}

footer p { font-size: 0.82rem; color: var(--text-3); margin: 0; }

/* Telegram float */
.btn-float-telegram {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1d93d2, #0f6fa3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(29, 147, 210, 0.4);
  z-index: 999;
  transition: var(--tx);
}

/* Utility */
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.text-primary { color: var(--gold) !important; }
.text-success { color: var(--success) !important; }

.border-primary { border-color: var(--border-2) !important; }

.badge-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--forest-950);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  padding: 0.3em 0.7em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.badge-gold .lucide { width: 10px; height: 10px; }

.star-rating { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; }
.star-rating .star-filled { color: var(--gold); fill: var(--gold); }
.star-filled { color: var(--gold); fill: var(--gold); }
.star-input { display:flex; flex-direction:row-reverse; justify-content:flex-end; gap:0.15rem; }
.star-input input { display:none; }
.star-input label { cursor:pointer; color:var(--text-3); font-size:1.2rem; transition:color .15s; }
.star-input label:hover,
.star-input label:hover ~ label,
.star-input input:checked ~ label { color:var(--gold); }
.star-input input:checked ~ label svg,
.star-input label:hover svg,
.star-input label:hover ~ label svg { fill:var(--gold); }

.table {
  width: 100%;
  font-size: 0.85rem;
}

.table-dark {
  background: var(--bg-card);
  color: var(--text-1);
}

.table-dark th,
.table-dark td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--border-1);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-item { animation: fadeInUp 0.5s ease both; }
.product-item:nth-child(1) { animation-delay: 0.03s; }
.product-item:nth-child(2) { animation-delay: 0.07s; }
.product-item:nth-child(3) { animation-delay: 0.11s; }
.product-item:nth-child(4) { animation-delay: 0.15s; }
.product-item:nth-child(5) { animation-delay: 0.19s; }
.product-item:nth-child(6) { animation-delay: 0.23s; }
.product-item:nth-child(7) { animation-delay: 0.27s; }
.product-item:nth-child(8) { animation-delay: 0.31s; }

/* Vouch card */
.vouch-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--forest-950);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Empty state */
.empty-state-icon {
  color: var(--text-3);
  opacity: 0.5;
}

/* ============================
   TABLET (576px+)
   ============================ */
@media (min-width: 576px) {
  .search-wrapper {
    flex-direction: row;
  }
  .search-select { min-width: 140px; }
  .search-input { flex: 1; }
  .search-btn { padding: 0.75rem 1.5rem; }
  .hero-banner h1 { font-size: 2.5rem; }
  .hero-banner { padding: 2.5rem 2rem 1.5rem; }

  .featured-spotlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    overflow: visible;
    padding: 0 0.75rem;
  }

  .featured-card {
    flex: none;
  }
}

/* ============================
   DESKTOP (768px+)
   ============================ */
@media (min-width: 768px) {
  :root { --nav-height: 72px; }

  body { padding-top: var(--nav-height); }

  .container {
    max-width: 1400px;
  }

  /* --- DESKTOP NAVBAR --- */
  .navbar {
    min-height: var(--nav-height);
    background: linear-gradient(180deg, var(--forest-950) 0%, rgba(6,18,16,0.92) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .navbar .container {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .navbar-brand { margin-right: 0; }

  .mobile-menu-btn { display: none !important; }

  .desktop-nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  .nav-list {
    display: flex;
    gap: 0.15rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav-list .nav-link {
    font-size: 0.88rem;
    padding: 0.5rem 0.9rem;
    color: var(--text-2);
    font-weight: 500;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--tx);
    text-decoration: none;
  }

  .nav-list .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: transform 0.3s ease;
  }

  .nav-list .nav-link:hover::after,
  .nav-list .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

  .nav-list .nav-link:hover,
  .nav-list .nav-link.active {
    color: var(--gold) !important;
    background: rgba(201, 168, 76, 0.06);
  }

  .desktop-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .desktop-actions .nav-link {
    font-size: 0.85rem;
    padding: 0.45rem 0.8rem;
    color: var(--text-2);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--tx);
    text-decoration: none;
  }

  .desktop-actions .nav-link:hover,
  .desktop-actions .nav-link.active {
    color: var(--gold) !important;
    background: rgba(201, 168, 76, 0.06);
  }

  .user-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.8rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
  }

  .btn-quick-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-sm);
    color: var(--forest-950) !important;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--tx);
  }

  .btn-quick-sm:hover {
    box-shadow: 0 0 12px var(--gold-glow-strong);
    transform: translateY(-1px);
  }

  .cart-link {
    position: relative;
    font-size: 1.1rem !important;
    padding: 0.45rem 0.7rem !important;
  }

  /* --- DESKTOP ALERT --- */
  .alert-banner {
    margin: 1rem auto;
    max-width: 1200px;
    border-radius: var(--radius-lg);
    font-size: 0.88rem;
    padding: 0.85rem 1.25rem;
  }

  /* --- DESKTOP HERO --- */
  .hero-banner {
    padding: 5rem 0 3rem;
  }

  .hero-banner h1 {
    font-size: 4rem;
    letter-spacing: -0.04em;
  }

  .hero-banner p {
    font-size: 1.05rem;
    max-width: 540px;
  }

  @keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 5%) scale(1.1); }
  }

  /* --- DESKTOP SEARCH --- */
  .search-section {
    margin: 0 auto 2rem;
    padding: 0;
  }

  .search-wrapper {
    border-radius: var(--radius-lg);
  }

  .search-select {
    min-width: 120px;
  }

  .category-pills {
    justify-content: center;
    margin-top: 1rem;
  }

  .pill {
    font-size: 0.82rem;
    padding: 0.4rem 1rem;
  }

  /* --- DESKTOP FEATURED SPOTLIGHT --- */
  .featured-spotlight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .featured-card {
    background: linear-gradient(135deg, var(--forest-800), var(--forest-750));
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    transition: var(--tx);
    position: relative;
    overflow: hidden;
  }

  .featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  }

  .featured-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 12px var(--gold-glow);
  }

  .featured-card .icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    opacity: 0.8;
  }

  .featured-card h6 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }

  .featured-card .price {
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: auto;
  }

  .featured-card .badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
  }

  /* --- DESKTOP PRODUCT GRID --- */
  #products-parent {
    margin: 0;
  }

  .product-item {
    animation: none;
  }

  .product-item .card {
    border-radius: var(--radius-lg);
    transition: var(--tx-slow);
    position: relative;
  }

  .product-item .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 15px var(--gold-glow);
    border-color: var(--border-2);
    background: var(--bg-card-hover);
  }

  .product-item .card.border-primary {
    box-shadow: 0 0 10px var(--gold-glow);
  }

  .product-thumb {
    height: 185px;
    position: relative;
  }

  .product-thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(0deg, var(--bg-card) 0%, transparent 100%);
    opacity: 0;
    transition: var(--tx);
  }

  .product-item .card:hover .product-thumb::after { opacity: 1; }

  .product-item .card:hover .product-thumb .lucide {
    transform: scale(1.15);
    opacity: 0.5;
  }

  .product-item .card:hover .product-thumb-img {
    transform: scale(1.08);
  }

  .product-item .card-body { padding: 1rem 1.1rem 0.5rem; }
  .product-item .card-footer { padding: 0.5rem 1.1rem 1.1rem; }

  .product-item .card-footer .btn-primary {
    border-radius: var(--radius-sm) !important;
  }

  .product-item .card-footer .btn-primary:hover {
    box-shadow: 0 0 12px var(--gold-glow-strong) !important;
  }

  /* Section heading */
  .section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
  }

  .section-heading h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .section-heading .view-all {
    font-size: 0.82rem;
    color: var(--text-3);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--tx);
  }

  .section-heading .view-all:hover { color: var(--gold); }

  /* --- DESKTOP BUTTON HOVER --- */
  .btn-primary:hover {
    box-shadow: 0 0 12px var(--gold-glow-strong) !important;
    transform: translateY(-1px);
  }

  .btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
    color: var(--forest-950) !important;
    border-color: transparent !important;
  }

  /* --- DESKTOP FOOTER --- */
  footer {
    text-align: left;
    padding: 2rem 0;
  }

  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
  }

  footer .footer-links {
    display: flex;
    gap: 1.5rem;
  }

  footer .footer-links a {
    font-size: 0.82rem;
    color: var(--text-3);
    transition: var(--tx);
  }

  footer .footer-links a:hover { color: var(--gold); }

  /* --- DESKTOP MODAL --- */
  .modal-dialog { max-width: 520px; }

  /* --- DESKTOP TELEGRAM --- */
  .btn-float-telegram {
    bottom: 28px;
    right: 28px;
    width: 54px;
    height: 54px;
  }

  .btn-float-telegram:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(29, 147, 210, 0.6);
  }

  /* --- DESKTOP FORM LAYOUT --- */
  .auth-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .auth-card .card {
    border-radius: var(--radius-xl);
  }

  /* --- DESKTOP ADMIN --- */
  .admin-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: calc(100vh - var(--nav-height));
  }

  .admin-sidebar {
    background: linear-gradient(180deg, var(--forest-950) 0%, rgba(10,36,30,0.98) 100%);
    border-right: 1px solid var(--border-1);
    padding: 1.5rem 1rem;
    position: sticky;
    top: var(--nav-height);
    height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }

  .admin-sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 0.75rem 1.25rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-1);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .admin-sidebar-header .lucide {
    width: 1.3rem;
    height: 1.3rem;
    color: var(--gold);
  }

  .admin-sidebar-header span { color: var(--gold); }
  .admin-sidebar-header span span { color: var(--text-1); }

  .admin-sidebar .nav {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .admin-sidebar .nav-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    padding: 0.7rem 0.85rem !important;
    border-radius: var(--radius-md);
    margin: 0;
    border: 1px solid transparent;
    background: transparent;
    text-transform: none;
    letter-spacing: normal;
    color: var(--text-2);
    transition: all 0.2s ease;
  }

  .admin-sidebar .nav-link .lucide {
    width: 1.15rem;
    height: 1.15rem;
    color: var(--text-3);
    transition: color 0.2s ease;
  }

  .admin-sidebar .nav-link:hover {
    background: rgba(255,255,255,0.03);
    border-color: var(--border-1);
    color: var(--text-1);
  }

  .admin-sidebar .nav-link:hover .lucide { color: var(--gold); }

  .admin-sidebar .nav-link.active {
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
    border-color: rgba(212,175,55,0.25);
    color: var(--gold) !important;
    font-weight: 600;
  }

  .admin-sidebar .nav-link.active .lucide { color: var(--gold); }

  .admin-content-wrap {
    padding: 2rem 2.5rem !important;
    background: var(--bg-secondary);
  }

  .admin-content-wrap h3 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
  }

  .admin-content-wrap .card {
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  }

  .admin-content-wrap .card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }

  .admin-stats-grid {
    gap: 1rem;
  }

  .admin-stat-card {
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .admin-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  }

  .admin-stat-card .stat-number {
    font-size: 1.75rem;
  }

  .admin-table-wrap th {
    font-size: 0.7rem;
    padding: 0.85rem 1.25rem !important;
  }

  .admin-table-wrap td {
    padding: 0.85rem 1.25rem !important;
    font-size: 0.88rem;
  }

  .admin-content-wrap .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.88rem;
  }

  .admin-content-wrap .btn-primary:hover {
    box-shadow: 0 0 14px var(--gold-glow-strong);
    transform: translateY(-1px);
  }

  /* --- DESKTOP CART --- */
  .cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-1);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    transition: var(--tx);
  }

  .cart-item:hover { border-color: var(--border-2); }

  .order-summary-card {
    position: sticky;
    top: calc(var(--nav-height) + 1rem);
  }

  /* --- DESKTOP VOUCHES --- */
  .vouches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .vouch-card {
    background: var(--bg-card);
    border: 1px solid var(--border-1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--tx);
  }

  .vouch-card:hover {
    border-color: var(--border-2);
    transform: translateY(-2px);
  }

  /* --- DESKTOP PRODUCT DETAIL --- */
  .product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .product-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
  }

  .product-detail-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
  }
}

/* ============================
   NEW COMPONENTS (blikri-inspired)
   ============================ */

/* Offcanvas (mobile menu) */
.offcanvas {
  --bs-offcanvas-width: 300px;
  width: 300px;
  background: var(--forest-950);
  border-left: 1px solid var(--border-1);
}

.offcanvas-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-1);
}

.offcanvas-header .btn-close { filter: invert(0.8); }

.offcanvas-body { padding: 1rem 0; }

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  color: var(--text-2);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--tx);
  text-decoration: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.mobile-nav-link.active .lucide { color: var(--gold); }

.btn-quick-mobile .lucide { color: var(--forest-950) !important; }

.hero-banner-content { position: relative; z-index: 1; }

.search-wrapper:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.search-btn:hover {
  box-shadow: 0 0 10px var(--gold-glow-strong);
}

/* Section heading */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0 0.75rem;
}

.section-heading h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-heading .view-all {
  font-size: 0.78rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--tx);
}

.section-heading .view-all:hover { color: var(--gold); }

/* Accordion FAQ */
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a84c'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed) { color: var(--gold); }

/* ============================
   AUTH PAGES (SPLIT LAYOUT)
   ============================ */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.auth-brand-panel {
  display: none;
}

.auth-form-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem 1.5rem;
}

.auth-form-panel-inner {
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
  max-width: 400px;
}

.auth-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.auth-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.auth-header-brand .brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.auth-header-brand .brand-text {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--text-2);
}

.auth-header h2 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
  color: var(--text-1);
}

.auth-header p {
  font-size: 0.88rem;
  color: var(--text-3);
  margin: 0;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.auth-footer-link {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-3);
}

.auth-footer-link a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.auth-footer-link a:hover {
  text-decoration: underline;
}

.forgot-link {
  font-size: 0.8rem;
  color: var(--text-3);
  text-decoration: none;
}

.forgot-link:hover {
  color: var(--gold);
}

.auth-quick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-1);
  font-size: 0.83rem;
  color: var(--gold);
  text-decoration: none;
}

.auth-quick:hover {
  opacity: 0.85;
}

.auth-quick .lucide {
  width: 15px;
  height: 15px;
}

.auth-body { padding-top: 0 !important; }

.auth-page-register {
  overflow: hidden;
}

@media (min-width: 768px) {
  .auth-page {
    flex-direction: row;
    background: var(--bg-canvas);
  }

  .auth-brand-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42%;
    min-width: 380px;
    padding: 3rem;
    background: var(--forest-950);
    position: relative;
    overflow: hidden;
  }

    .auth-brand-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(255,255,255,0.02) 48px, rgba(255,255,255,0.02) 49px),
      repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(255,255,255,0.02) 48px, rgba(255,255,255,0.02) 49px);
    pointer-events: none;
  }

  .auth-brand-panel .brand-watermark {
    position: absolute;
    z-index: 0;
    pointer-events: none;
  }

  .auth-brand-panel .brand-watermark .lucide {
    width: 280px;
    height: 280px;
    color: rgba(255,255,255,0.03);
  }

  .auth-brand-panel .brand-watermark-1 {
    top: 5%;
    right: -60px;
  }

  .auth-brand-panel .brand-watermark-2 {
    bottom: -40px;
    left: -80px;
  }

  .auth-brand-panel .brand-watermark-2 .lucide {
    width: 200px;
    height: 200px;
  }

  .auth-brand-panel .brand-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }

  .auth-brand-panel .brand-circle-1 {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201,168,76,0.06);
    top: -100px;
    right: -120px;
  }

  .auth-brand-panel .brand-circle-2 {
    width: 250px;
    height: 250px;
    border: 1px solid rgba(201,168,76,0.04);
    bottom: 10%;
    left: -60px;
  }

  .auth-brand-panel .brand-circle-3 {
    width: 100px;
    height: 100px;
    background: rgba(201,168,76,0.04);
    top: 50%;
    left: 15%;
  }

  .auth-brand-content {
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .auth-brand-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .auth-brand-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.2);
  }

  .auth-brand-icon .lucide {
    width: 34px;
    height: 34px;
    color: #000;
  }

  .auth-brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }

  .auth-brand-sub {
    font-size: 0.85rem;
    color: var(--text-3);
    letter-spacing: 0.02em;
  }

  .auth-brand-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem auto;
    opacity: 0.5;
    border-radius: 1px;
  }

  .auth-brand-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 100px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 1rem;
  }

  .auth-form-panel {
    flex: 1;
    padding: 2rem;
    position: relative;
    background: radial-gradient(ellipse at 100% 100%, rgba(201,168,76,0.03) 0%, transparent 50%);
    align-items: center;
  }

  .auth-card {
    padding: 2rem;
  }
}

/* ============================
   LARGE (992px+)
   ============================ */
@media (min-width: 992px) {
  .hero-banner h1 { font-size: 4.2rem; }
  .hero-banner { padding: 5rem 2rem 3rem; }

  #products-parent .product-item { animation: none; }
}

/* ============================
   EXTRA LARGE (1200px+)
   ============================ */
@media (min-width: 1200px) {
  .container { max-width: 1400px; }
}

@media print {
  .navbar, .btn-float-telegram, .alert-banner { display: none !important; }
  body { padding-top: 0; background: white; color: black; }
}

/* ============================
   LUCIDE ICONS
   ============================ */
.lucide {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  stroke-width: 1.5;
}

.product-detail-img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

/* Context icon sizes */
.featured-card .icon .lucide { width: 1.8rem; height: 1.8rem; }
.product-thumb .lucide { width: 3rem; height: 3rem; opacity: 0.3; }
.star-rating .lucide { width: 0.65rem; height: 0.65rem; }
.cart-link .lucide { width: 1.1rem; height: 1.1rem; }
.search-icon .lucide { width: 0.9rem; height: 0.9rem; color: var(--text-3); }

/* ============================
   SKELETON LOADING
   ============================ */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

.skeleton-thumb {
  height: 160px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.skeleton-text {
  height: 14px;
  width: 80%;
  margin-bottom: 8px;
}

.skeleton-text-sm {
  height: 10px;
  width: 50%;
  margin-bottom: 6px;
}

.skeleton-price {
  height: 18px;
  width: 30%;
}

#skeleton-grid .card {
  border: 1px solid var(--border-1);
  overflow: hidden;
}

#skeleton-grid .card-body {
  padding: 0.85rem;
}

#skeleton-grid .card-footer {
  padding: 0.75rem 0.85rem;
  border-top: 1px solid var(--border-1);
}

@media (min-width: 768px) {
  .skeleton-thumb { height: 185px; }
}

/* ============================
   DEPOSIT / CRYPTO CARDS
   ============================ */
.payment-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (min-width: 576px) {
  .payment-card-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
}

.payment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 12px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-1);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 100px;
}

.payment-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-2);
  transform: translateY(-2px);
}

.payment-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-card:has(input:checked) {
  border-color: var(--gold);
  background: var(--forest-750);
  box-shadow: 0 0 16px var(--gold-glow), inset 0 0 20px var(--gold-glow);
}

.payment-card .crypto-icon-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.payment-card .crypto-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.payment-card .crypto-label {
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-2);
  line-height: 1.2;
}

.payment-card:has(input:checked) .crypto-label {
  color: var(--gold);
}

.payment-card .check-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--forest-800);
  border: 1.5px solid var(--border-1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.payment-card:has(input:checked) .check-badge {
  opacity: 1;
  background: var(--gold);
  border-color: var(--gold);
}

.payment-card .check-badge svg {
  width: 10px;
  height: 10px;
  color: var(--forest-950);
}

@media (min-width: 992px) {
  .payment-card {
    min-height: 110px;
    padding: 20px 14px;
  }
  .payment-card .crypto-icon-wrap {
    width: 44px;
    height: 44px;
  }
  .payment-card .crypto-icon-wrap svg {
    width: 26px;
    height: 26px;
  }
  .payment-card .crypto-label {
    font-size: .82rem;
  }
}

/* Balance card */
.balance-card {
  position: relative;
  overflow: hidden;
}

.balance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.balance-card .balance-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--success);
  letter-spacing: -0.03em;
  margin: 0.75rem 0;
  line-height: 1;
}

@media (min-width: 992px) {
  .balance-card .balance-amount {
    font-size: 3rem;
  }
}

/* Accepted methods badges */
.accepted-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.accepted-badges .badge-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  color: var(--text-2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .72rem;
  transition: all 0.2s;
}

.accepted-badges .badge-item:hover {
  border-color: var(--border-2);
  color: var(--text-1);
}

.accepted-badges .badge-item svg {
  width: 12px;
  height: 12px;
}

/* Deposit history cards */
.deposit-history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.deposit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  transition: border-color 0.2s;
}

.deposit-card:hover {
  border-color: var(--border-2);
}

.deposit-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.deposit-card-body {
  border-top: 1px solid var(--border-1);
  padding: 16px 0 0;
  margin-top: 8px;
}

.deposit-history-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.deposit-history-item:hover {
  border-color: var(--border-2);
}

.deposit-history-item .hist-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 700;
}

.deposit-history-item .hist-icon.btc { background: rgba(247,147,26,0.15); color: #f7931a; }
.deposit-history-item .hist-icon.sol { background: rgba(0,210,159,0.15); color: #00d29f; }
.deposit-history-item .hist-icon.usdt-eth,
.deposit-history-item .hist-icon.usdt-trc20 { background: rgba(38,174,140,0.15); color: #26ae8c; }
.deposit-history-item .hist-icon.trx { background: rgba(239,51,63,0.15); color: #ef333f; }
.deposit-history-item .hist-icon.eth { background: rgba(98,126,234,0.15); color: #627eea; }
.deposit-history-item .hist-icon.default { background: rgba(201,168,76,0.15); color: var(--gold); }

.deposit-history-item .hist-info {
  flex: 1;
  min-width: 0;
}

.deposit-history-item .hist-amount {
  font-weight: 700;
  font-size: .9rem;
  color: var(--success);
}

.deposit-history-item .hist-meta {
  font-size: .75rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.deposit-history-item .hist-status {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .deposit-table-wrap { display: block; }
}

@media (max-width: 767.98px) {
  .deposit-table-wrap { display: none; }
}
