@import "https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;600;700;800;900&display=swap";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg: #f5f7fb;
  --card: #fff;
  --muted: #7c85a0;
  --text: #0f1a3c;
  --primary: #2c4bff;
  --primary-2: #2f8bff;
  --accent: #ffb025;
  --line: #e5e8f2;
  --shadow: 0 15px 40px #0f1a3c1f;
}

:root[data-theme="dark"] {
  --bg: #0b1224;
  --card: #0f172a;
  --muted: #9ca3af;
  --text: #e2e8f0;
  --primary: #60a5fa;
  --primary-2: #38bdf8;
  --accent: #fbbf24;
  --line: #1f2937;
  --shadow: 0 20px 50px #00000073;
}

* {
  box-sizing: border-box;
}

html, body {
  direction: rtl;
  max-width: 100%;
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
  font-family: Vazirmatn, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
  overflow-x: hidden;
}

.nextjs-portal, [data-nextjs-toast], #nextjs-dev-overlay, #nextjs-portal {
  display: none !important;
}

@keyframes firePulse {
  0% {
    filter: brightness();
  }

  50% {
    filter: brightness(1.12);
  }

  100% {
    filter: brightness();
  }
}

@keyframes epicShimmer {
  0% {
    left: -100%;
  }

  50%, 100% {
    left: 100%;
  }
}

@keyframes epicFlame {
  0%, 100% {
    opacity: .75;
    transform: translateY(0)scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px)scale(1.03);
  }
}

@keyframes epicFlash {
  0%, 100% {
    filter: drop-shadow(0 0 6px #ff881f66);
  }

  50% {
    filter: drop-shadow(0 0 12px #ff5a1fa6);
  }
}

@keyframes fastBadgePop {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

input, button, select, textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

.row {
  gap: 16px;
  display: flex;
}

.col {
  flex: 1;
}

.navbar {
  z-index: 60;
  position: sticky;
  top: 0;
}

.fortnite-nav {
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 100;
  background: #fffffff2;
  box-shadow: 0 10px 30px #0f1a3c14;
}

.nav-inner {
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 12px;
  height: 72px;
  display: grid;
}

.brand.logo {
  justify-self: end;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  display: inline-flex;
}

.brand.logo img, .nav-logo-img {
  object-fit: contain;
  border-radius: 10px;
  width: auto;
  height: 42px;
  display: block;
}

.nav-logo-text {
  color: var(--text);
  white-space: nowrap;
  font-size: 16px;
  font-weight: 800;
  display: none;
}

@media (min-width: 1024px) {
  .nav-logo-text {
    display: block;
  }
}

:root[data-theme="dark"] .nav-logo-text {
  color: #f1f5f9;
}

:root[data-theme="light"] .nav-logo-text {
  color: #1e293b;
}

.nav-hamburger {
  justify-self: start;
  display: none;
}

.nav-actions {
  flex-wrap: wrap;
  justify-self: start;
  align-items: center;
  gap: 8px;
  display: flex;
  position: relative;
}

.nav-user {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.nav-user-menu {
  position: relative;
}

.nav-user-avatar-btn {
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: inline-flex;
}

.user-menu {
  background: var(--card);
  min-width: 160px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  z-index: 95;
  border-radius: 16px;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  display: flex;
  position: absolute;
  top: 52px;
  left: auto;
  right: 0;
}

.user-menu-item {
  justify-content: flex-start;
  width: 100%;
}

.nav-cart {
  display: inline-flex;
  position: relative;
}

.icon-btn {
  background: var(--card);
  border: 1px solid var(--line);
  color: #4b5c9b;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  transition: all .2s;
  display: inline-flex;
  position: relative;
}

.icon-btn:hover {
  color: var(--primary);
  border-color: #2453ff80;
}

.cart-count-badge {
  color: #fff;
  background: #ff3b6b;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: 11px;
  font-weight: 800;
  animation: .4s cubic-bezier(.68, -.55, .265, 1.55) cartBadgePop;
  display: flex;
  position: absolute;
  top: -4px;
  left: -4px;
  box-shadow: 0 0 0 2px #f3f6ff;
}

@keyframes cartBadgePop {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.icon-btn.cart-bounce {
  animation: .6s cubic-bezier(.68, -.55, .265, 1.55) cartBounce;
}

@keyframes cartBounce {
  0%, 100% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.15)rotate(-5deg);
  }

  50% {
    transform: scale(1.1)rotate(5deg);
  }

  75% {
    transform: scale(1.05)rotate(-3deg);
  }
}

.btn.success-pulse {
  animation: .5s ease-out successPulse;
}

@keyframes successPulse {
  0% {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 0 #22c55eb3;
  }

  50% {
    box-shadow: 0 0 0 8px #22c55e00;
  }

  100% {
    box-shadow: 0 0 #22c55e00;
  }
}

.search {
  flex: 1;
  align-items: center;
  gap: 10px;
  max-width: 620px;
  margin-inline: auto;
  display: flex;
}

.fortnite-search {
  border: 1px solid var(--line);
  background: #f3f6ff;
  border-radius: 16px;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  display: flex;
  box-shadow: inset 0 0 0 1px #2453ff0d;
}

.search input {
  width: 100%;
  color: var(--text);
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 700;
}

.admin-pill {
  color: #0f1a3c;
  background: linear-gradient(135deg, #60a5fa2e, #22c55e24);
  border: 1px solid #60a5fa66;
  border-radius: 14px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: inline-flex;
  box-shadow: 0 12px 30px #0f1a3c1f;
}

.admin-pill:hover {
  border-color: #22c55e80;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px #0f1a3c2e;
}

.admin-dot {
  background: linear-gradient(135deg, #60a5fa, #22c55e);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 6px #22c55e1f;
}

:root[data-theme="dark"] .admin-pill {
  color: var(--text);
  background: linear-gradient(135deg, #60a5fa1f, #22c55e1f);
  border-color: #1f2937;
  box-shadow: 0 14px 36px #00000073;
}

:root[data-theme="dark"] .admin-dot {
  box-shadow: 0 0 0 6px #60a5fa29;
}

.cart-preview {
  background: var(--card);
  width: 360px;
  max-width: calc(100vw - 32px);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  z-index: 90;
  border-radius: 16px;
  gap: 8px;
  padding: 12px;
  display: grid;
  position: absolute;
  top: 56px;
  right: 0;
}

@media (max-width: 640px) {
  .cart-preview {
    border-radius: 16px;
    width: auto;
    max-width: none;
    max-height: calc(100vh - 120px);
    padding: 12px;
    position: fixed;
    top: 64px;
    left: 12px;
    right: 12px;
  }

  .cart-preview-list {
    max-height: 45vh;
  }

  .cart-preview-item {
    gap: 8px;
    padding: 6px;
  }

  .cart-preview-image, .cart-preview-image-placeholder {
    width: 44px;
    height: 44px;
  }

  .cart-preview-name {
    font-size: 12px;
  }

  .cart-preview-meta {
    font-size: 10px;
  }

  .qty-control {
    gap: 4px;
  }

  .qty-btn {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .qty-value {
    min-width: 20px;
    font-size: 12px;
  }

  .search-preview {
    border-radius: 12px;
    width: auto;
    left: -12px;
    right: -12px;
  }

  .search-preview-item {
    gap: 6px;
    padding: 4px;
  }

  .search-preview-image {
    width: 44px;
    height: 44px;
  }

  .search-preview-name {
    font-size: 12px;
  }

  .search-preview-price {
    font-size: 11px;
  }

  .search-preview-add {
    min-width: 44px;
    padding: 5px 8px;
    font-size: 11px;
  }

  .search-preview-qty {
    min-width: 70px;
  }
}

:root[data-theme="dark"] body {
  background: var(--bg);
  color: var(--text);
}

:root[data-theme="dark"] .fortnite-nav {
  border-bottom: 1px solid var(--line);
  background: #0c1224e6;
  box-shadow: 0 10px 30px #00000059;
}

:root[data-theme="dark"] .fortnite-search {
  background: var(--card);
  border-color: var(--line);
  box-shadow: inset 0 0 0 1px #60a5fa1f;
}

:root[data-theme="dark"] .icon-btn {
  color: #e2e8f0;
  background: #0f172a;
  border-color: #1f2937;
}

:root[data-theme="dark"] .icon-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

:root[data-theme="dark"] .cart-preview {
  box-shadow: var(--shadow);
}

:root[data-theme="dark"] .card.section {
  box-shadow: var(--shadow);
  border-color: var(--line);
}

:root[data-theme="dark"] .info-card {
  background: var(--card) !important;
  border-color: var(--line) !important;
  box-shadow: 0 10px 30px #00000059 !important;
}

:root[data-theme="dark"] .product-highlights {
  background: linear-gradient(135deg, #60a5fa14, #3b82f614);
  border-color: #ffffff0f;
}

:root[data-theme="dark"] .product-tabs {
  border-color: var(--line);
}

:root[data-theme="dark"] .tab-buttons {
  background: #111827;
}

:root[data-theme="dark"] .tab-btn {
  color: var(--muted);
}

:root[data-theme="dark"] .tab-btn.active {
  background: var(--card);
  color: var(--primary);
}

:root[data-theme="dark"] .ghost-btn {
  color: var(--text);
  background: #ffffff05;
  border-color: #ffffff26;
}

:root[data-theme="dark"] .user-menu {
  background: #0f172a;
  border-color: #1f2937;
}

:root[data-theme="dark"] .user-menu .ghost-btn {
  color: var(--text);
  border-color: #1f2937;
}

:root[data-theme="dark"] .cart-preview, :root[data-theme="dark"] .order-row {
  background: #0f172a;
  border-color: #1f2937;
}

:root[data-theme="dark"] .auth-card-inner {
  color: var(--text);
}

:root[data-theme="dark"] .field input, :root[data-theme="dark"] .field select, :root[data-theme="dark"] .field textarea {
  color: var(--text);
  background: #0f172a;
  border-color: #1f2937;
}

:root[data-theme="dark"] .faq-item {
  background: #0f172a;
  border-color: #1f2937;
}

:root[data-theme="dark"] .faq-question {
  color: var(--text);
}

:root[data-theme="dark"] .faq-answer {
  color: var(--text);
}

:root[data-theme="dark"] .testimonial-card {
  color: var(--text);
  background: #0f172a;
  border-color: #1f2937;
  box-shadow: 0 12px 28px #00000059;
}

:root[data-theme="dark"] .testimonial-review {
  color: var(--text);
}

:root[data-theme="dark"] .testimonial-dot {
  background: #fff3;
}

:root[data-theme="dark"] .testimonial-dot.active {
  background: var(--primary);
}

:root[data-theme="dark"] .stats-row .stat {
  color: var(--text);
  background: #0f172a;
  border-color: #1f2937;
}

:root[data-theme="dark"] .categories {
  background: #0f172a;
  border: 1px solid #1f2937;
  box-shadow: 0 16px 36px #00000052;
}

:root[data-theme="dark"] .chip {
  color: var(--text);
  background: #0f172a;
  border-color: #1f2937;
}

:root[data-theme="dark"] .chip.active {
  border-color: var(--primary);
  background: #60a5fa14;
}

:root[data-theme="dark"] .chip:hover {
  color: var(--primary);
  border-color: var(--primary);
}

:root[data-theme="dark"] .perks .perk {
  background: #0f172a;
  border-color: #1f2937;
  box-shadow: 0 12px 28px #00000052;
}

:root[data-theme="dark"] .perk-icon {
  background: #111827;
  box-shadow: inset 0 0 0 1px #1f2937;
}

:root[data-theme="dark"] .feature-card, :root[data-theme="dark"] .rating-breakdown {
  border-color: var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #0f172a, #111827);
}

:root[data-theme="dark"] .feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px #00000040;
}

:root[data-theme="dark"] .faq-question:hover {
  background: #0f172a;
}

:root[data-theme="dark"] .footer-bottom {
  background: #00000080;
}

:root[data-theme="dark"] .trust-card {
  background: var(--card);
  border-color: var(--line);
  color: var(--text);
}

:root[data-theme="dark"] .trust-card .trust-label strong {
  color: var(--text);
}

:root[data-theme="dark"] .trust-card .trust-label span {
  color: var(--muted);
}

:root[data-theme="dark"] .trust-card .trust-img {
  background: var(--card);
  border-color: var(--line);
}

:root[data-theme="dark"] .sidebar-overlay {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #060a16bf;
}

:root[data-theme="dark"] .sidebar-drawer {
  border-left: 1px solid var(--line);
  background: linear-gradient(#0f172a 0%, #0b1224 100%);
  box-shadow: -8px 0 40px #0009;
}

:root[data-theme="dark"] .sidebar-content::-webkit-scrollbar-thumb {
  background: #60a5fa59;
}

:root[data-theme="dark"] .sidebar-category-item {
  background: #0f172a;
  border-color: #1f2937;
  box-shadow: 0 10px 30px #00000059;
}

:root[data-theme="dark"] .sidebar-category-item:hover {
  box-shadow: 0 12px 32px #00000073;
}

:root[data-theme="dark"] .sidebar-category-item.active {
  border-color: #0000;
}

:root[data-theme="dark"] .category-icon-img-wrapper {
  background: #ffffff0f;
  box-shadow: inset 0 1px #ffffff14;
}

:root[data-theme="dark"] .sidebar-category-item.active .category-icon-img-wrapper {
  background: #fff3;
}

:root[data-theme="dark"] .modern-chip {
  color: var(--text);
  background: #0f172a;
  border-color: #1f2937;
  box-shadow: 0 8px 20px #00000059;
}

:root[data-theme="dark"] .modern-chip:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, #60a5fa14, #38bdf814);
  box-shadow: 0 10px 24px #0006;
}

:root[data-theme="dark"] .modern-chip.active {
  color: #fff;
  box-shadow: 0 10px 26px #00000073;
}

:root[data-theme="dark"] .modern-chip .chip-icon-wrapper {
  background: #ffffff0f;
}

:root[data-theme="dark"] .modern-chip.active .chip-icon-wrapper {
  background: #fff3;
}

.cart-preview-header {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 8px;
  font-weight: 700;
  display: flex;
}

.cart-preview-list {
  flex-direction: column;
  gap: 8px;
  max-height: 280px;
  padding-left: 4px;
  display: flex;
  overflow-y: auto;
}

.cart-preview-list::-webkit-scrollbar {
  width: 4px;
}

.cart-preview-list::-webkit-scrollbar-track {
  background: var(--line);
  border-radius: 4px;
}

.cart-preview-list::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 4px;
}

.cart-preview-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  padding: 8px;
  transition: all .2s;
  display: flex;
}

.cart-preview-item:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px #2c4bff1a;
}

.cart-preview-image {
  background: linear-gradient(135deg, #f0f4ff, #e8ecf8);
  border: 1px solid #2c4bff1f;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  padding: 4px;
  display: flex;
  overflow: hidden;
}

:root[data-theme="dark"] .cart-preview-image {
  background: linear-gradient(135deg, #0f2250, #1a2b6a);
  border-color: #2c4bff33;
}

.cart-preview-image-placeholder {
  width: 52px;
  height: 52px;
  color: var(--muted);
  background: linear-gradient(135deg, #f0f4ff, #e8ecf8);
  border: 1px solid #2c4bff1f;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

:root[data-theme="dark"] .cart-preview-image-placeholder {
  background: linear-gradient(135deg, #0f2250, #1a2b6a);
  border-color: #2c4bff33;
}

.cart-preview-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: transform .3s;
  display: block;
}

.cart-preview-item:hover .cart-preview-image img {
  transform: scale(1.05);
}

.auth-card {
  background: linear-gradient(135deg, #2c4bff4d, #38bdf840);
  border-radius: 18px;
  width: 100%;
  max-width: 520px;
  padding: 1.5px;
  position: relative;
  box-shadow: 0 20px 60px #0000002e;
}

.auth-card-inner {
  background: var(--card);
  border: 1px solid #ffffff0f;
  border-radius: 17px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.auth-card-inner:after {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, #2c4bff0a, #0000 40%), radial-gradient(circle at 80% 10%, #10b9810d, #0000 40%);
  position: absolute;
  inset: 0;
}

.auth-header {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  display: flex;
}

.auth-kicker {
  color: var(--primary);
  letter-spacing: .5px;
  font-size: 12px;
  font-weight: 800;
}

.auth-header h3 {
  margin: 4px 0 6px;
  font-size: 20px;
}

.auth-header p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

.auth-chip {
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px #2c4bff59;
}

.auth-progress {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin: 6px 0 14px;
  display: grid;
}

.step-dot {
  background: var(--card);
  border: 2px solid var(--line);
  width: 28px;
  height: 28px;
  color: var(--muted);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  transition: all .2s;
  display: inline-flex;
}

.step-dot.active {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 4px #2c4bff1f;
}

.step-line {
  background: linear-gradient(90deg, #2c4bff59, #38bdf859);
  width: 100%;
  height: 2px;
}

.auth-input {
  text-align: left;
  font-family: monospace;
  font-size: 16px;
}

.otp-boxes {
  direction: ltr;
  grid-template-columns: repeat(6, minmax(42px, 1fr));
  gap: 8px;
  max-width: 360px;
  margin: 0 auto;
  display: grid;
}

.otp-boxes input {
  text-align: center;
  border: 2px solid var(--line);
  background: var(--card);
  direction: ltr;
  border-radius: 12px;
  width: 100%;
  min-width: 42px;
  max-width: 60px;
  padding: 10px 0;
  font-family: monospace;
  font-size: 18px;
  font-weight: 800;
}

.otp-boxes input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px #2c4bff26;
}

.otp-input {
  text-align: center;
  letter-spacing: 8px;
  font-family: monospace;
  font-size: 24px;
  font-weight: 800;
}

@media (max-width: 480px) {
  .auth-card {
    max-width: calc(100vw - 32px);
    margin: 0 16px;
  }

  .auth-card-inner {
    padding: 16px;
  }

  .otp-boxes {
    gap: 4px;
    max-width: 100%;
  }

  .otp-boxes input {
    min-width: 36px;
    padding: 8px 0;
    font-size: 15px;
  }

  .auth-header h3 {
    font-size: 18px;
  }
}

.auth-switch {
  color: var(--muted);
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  display: flex;
}

.auth-switch button {
  color: var(--primary);
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 800;
}

.auth-trust {
  color: var(--text);
  background: #2c4bff0f;
  border: 1px dashed #2c4bff2e;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.success-overlay {
  z-index: 1000;
  background: #fffffff2;
  border-radius: 18px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: .3s fadeIn;
  display: flex;
  position: absolute;
  inset: 0;
}

:root[data-theme="dark"] .success-overlay {
  background: #111827f2;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.success-svg {
  width: 100%;
  height: 100%;
}

.success-circle {
  stroke: #10b981;
  stroke-width: 2px;
  stroke-dasharray: 166;
  stroke-dashoffset: 166px;
  animation: .6s cubic-bezier(.65, 0, .45, 1) forwards strokeCircle;
}

.success-check {
  stroke: #10b981;
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48px;
  animation: .3s cubic-bezier(.65, 0, .45, 1) .6s forwards strokeCheck;
}

.success-text {
  color: #10b981;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  animation: .3s .8s both fadeIn;
}

@keyframes strokeCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes strokeCheck {
  to {
    stroke-dashoffset: 0;
  }
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-shell {
  background: radial-gradient(circle at 20% 20%, #2c4bff24, transparent 38%), radial-gradient(circle at 80% 30%, #38bdf824, transparent 40%), radial-gradient(circle at 50% 90%, #fbbf241f, transparent 35%), var(--bg);
  justify-content: center;
  align-items: center;
  min-height: 78vh;
  padding: 48px 0 64px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.login-container {
  z-index: 2;
  place-items: center;
  width: 100%;
  max-width: 640px;
  display: grid;
  position: relative;
}

.login-glow {
  filter: blur(80px);
  opacity: .8;
  z-index: 1;
  border-radius: 50%;
  position: absolute;
}

.login-glow-1 {
  background: #2c4bff2e;
  width: 360px;
  height: 360px;
  top: 12%;
  left: 12%;
}

.login-glow-2 {
  background: #10b9812e;
  width: 420px;
  height: 420px;
  bottom: 6%;
  right: 10%;
}

.login-card-wrapper {
  width: 100%;
  max-width: 640px;
}

.login-card-wrapper .auth-card {
  width: 100%;
}

.password-login-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  gap: 10px;
  padding: 26px 24px;
  display: grid;
  box-shadow: 0 18px 48px #0000001f;
}

.password-form {
  gap: 12px;
  display: grid;
}

.password-error {
  color: var(--danger);
  background: #ef44441a;
  border-radius: 10px;
  padding: 10px;
  font-weight: 700;
}

.remember-row {
  color: var(--muted);
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.login-links {
  text-align: center;
  gap: 6px;
  font-weight: 800;
  display: grid;
}

.login-links a {
  color: var(--primary);
  text-decoration: none;
}

.login-title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.login-subtitle {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

@media (max-width: 768px) {
  .login-shell {
    padding: 32px 0 48px;
  }

  .login-glow {
    filter: blur(90px);
  }

  .login-glow-1 {
    width: 260px;
    height: 260px;
    top: 8%;
    left: -10%;
  }

  .login-glow-2 {
    width: 280px;
    height: 280px;
    bottom: -8%;
    right: -8%;
  }
}

:root[data-theme="dark"] .login-shell {
  background: radial-gradient(circle at 20% 20%, #60a5fa29, transparent 38%), radial-gradient(circle at 80% 30%, #22d3ee24, transparent 40%), radial-gradient(circle at 50% 90%, #eab3081f, transparent 35%), var(--bg);
}

:root[data-theme="dark"] .login-glow-1 {
  background: #60a5fa3d;
}

:root[data-theme="dark"] .login-glow-2 {
  background: #10b98138;
}

:root[data-theme="dark"] .auth-card {
  box-shadow: 0 26px 70px #0006;
}

:root[data-theme="dark"] .auth-card-inner {
  background: var(--card);
  border-color: var(--line);
}

:root[data-theme="dark"] .auth-trust {
  background: #60a5fa1f;
  border-color: #60a5fa40;
}

.cart-preview-item-main {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.cart-preview-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}

.cart-preview-meta {
  color: var(--muted);
  font-size: 11px;
}

.cart-preview-actions {
  flex-direction: column;
  flex-shrink: 0;
  align-items: flex-end;
  gap: 6px;
  display: flex;
}

.cart-preview-remove {
  white-space: nowrap;
  color: #ef4444;
  opacity: .8;
  padding: 4px 8px;
  font-size: 10px;
  transition: opacity .2s;
}

.cart-preview-remove:hover {
  opacity: 1;
}

.cart-preview-footer {
  border-top: 1px solid var(--line);
  gap: 10px;
  margin-top: 8px;
  padding-top: 12px;
  display: grid;
}

.cart-preview-total {
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.cart-preview-total .price {
  color: var(--primary);
}

.checkout-shell {
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  display: grid;
}

.checkout-item {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  display: grid;
}

.checkout-item-actions {
  align-items: center;
  gap: 8px;
  display: flex;
}

.checkout-qty-input {
  border: 1px solid var(--line);
  background: #f6f7fb;
  border-radius: 10px;
  width: 72px;
  padding: 10px 12px;
}

.qty-control {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  align-items: center;
  display: inline-flex;
  overflow: hidden;
}

.qty-btn {
  cursor: pointer;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  font-weight: 800;
}

.qty-btn:disabled {
  cursor: not-allowed;
  opacity: .4;
}

.qty-value {
  text-align: center;
  min-width: 28px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 700;
}

.search-preview-qty {
  padding-inline: 4px;
}

.search-with-preview {
  width: 100%;
  position: relative;
}

.search-preview {
  width: 100%;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  z-index: 90;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
}

.search-preview-empty {
  padding: 8px 4px;
  font-size: 13px;
}

.search-preview-list {
  max-height: 3.5rem * 3;
  gap: 6px;
  max-height: 240px;
  display: grid;
  overflow-y: auto;
}

.search-preview-item {
  border-radius: 12px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 6px;
  transition: all .2s;
  animation: .3s cubic-bezier(.4, 0, .2, 1) backwards searchItemSlideIn;
  display: grid;
}

.search-preview-item:first-child {
  animation-delay: 50ms;
}

.search-preview-item:nth-child(2) {
  animation-delay: .1s;
}

.search-preview-item:nth-child(3) {
  animation-delay: .15s;
}

.search-preview-item:nth-child(4) {
  animation-delay: .2s;
}

.search-preview-item:nth-child(5) {
  animation-delay: .25s;
}

@keyframes searchItemSlideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.search-preview-item:hover {
  background: linear-gradient(135deg, #2c4bff0d, #2f8bff0d);
  transform: translateX(-2px);
}

.search-preview-main {
  text-align: right;
  cursor: pointer;
  background: none;
  border: none;
  flex: 1;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 4px;
  display: flex;
}

.search-preview-image {
  background: linear-gradient(135deg, #f0f4ff, #e8ecf8);
  border: 1px solid #2c4bff1f;
  border-radius: 10px;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  position: relative;
  overflow: hidden;
}

:root[data-theme="dark"] .search-preview-image {
  background: linear-gradient(135deg, #0f2250, #1a2b6a);
  border-color: #2c4bff33;
}

.search-preview-thumb {
  justify-content: center;
  align-items: center;
  padding: 4px;
  display: flex;
  position: absolute;
  inset: 0;
}

.search-preview-thumb img {
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  transition: transform .3s;
  object-fit: contain !important;
}

.search-preview-item:hover .search-preview-thumb img {
  transform: scale(1.06);
}

.search-preview-text {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.search-preview-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}

.search-preview-price {
  color: var(--muted);
  font-size: 12px;
}

.search-preview-add {
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 52px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
}

.search-preview-qty {
  flex-shrink: 0;
  min-width: 80px;
}

.user-avatar {
  border: 2px solid var(--primary);
  color: #2b3560;
  background: #e0e4f5;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  overflow: hidden;
}

.user-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.profile-avatar-lg {
  border: 3px solid var(--primary);
  color: #2b3560;
  background: #e0e4f5;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  overflow: hidden;
}

.profile-avatar-lg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.top-strip {
  background: var(--primary);
  color: #fff;
  text-align: center;
  margin-top: 6px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 700;
}

.top-strip .today-dot-start, .top-strip .today-dot-end {
  white-space: nowrap;
  position: relative;
}

.top-strip .today-dot-start {
  padding-left: 10px;
}

.top-strip .today-dot-end {
  padding-right: 10px;
}

.top-strip .today-dot-start:before, .top-strip .today-dot-end:after {
  content: "";
  background: #22c55e;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin: 0 6px;
  display: inline-block;
  position: relative;
  top: -1px;
}

.promo-overlay {
  z-index: 2000;
  background: #0000008c;
  place-items: center;
  padding: 16px;
  display: grid;
  position: fixed;
  inset: 0;
}

.promo-modal {
  background: var(--card);
  border: 1px solid var(--line);
  text-align: center;
  border-radius: 18px;
  gap: 10px;
  width: min(420px, 100%);
  padding: 26px 22px;
  display: grid;
  position: relative;
  box-shadow: 0 24px 60px #0003;
}

.promo-close {
  color: var(--muted);
  cursor: pointer;
  background: #0000000a;
  border: none;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  font-weight: 800;
  position: absolute;
  top: 10px;
  left: 10px;
}

.promo-kicker {
  color: var(--primary);
  letter-spacing: .3px;
  margin: 0;
  font-size: 12px;
  font-weight: 900;
}

.promo-modal h3 {
  margin: 6px 0 10px;
}

.promo-text {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.8;
}

.promo-cta {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  display: flex;
}

.promo-visual {
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 6px;
  display: grid;
  position: relative;
}

.tg-circle {
  z-index: 2;
  background: #fff;
  border-radius: 22px;
  place-items: center;
  width: 92px;
  height: 92px;
  display: grid;
  box-shadow: 0 12px 32px #0ea5e929, 0 0 0 6px #0ea5e91a;
}

.tg-circle img {
  filter: drop-shadow(0 4px 10px #0000001a);
}

.tg-glow {
  z-index: 1;
  background: radial-gradient(circle, #0ea5e933 0%, #3fa9f500 65%);
  border-radius: 32px;
  width: 120px;
  height: 120px;
  animation: 2.4s ease-in-out infinite tgPulse;
  position: absolute;
}

.promo-btn {
  justify-content: center;
  width: 100%;
  font-weight: 900;
}

@keyframes tgPulse {
  0% {
    opacity: .85;
    transform: scale(.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    opacity: .85;
    transform: scale(.9);
  }
}

.home-shell {
  padding: 32px 0 64px;
}

.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 800;
  display: inline-block;
  box-shadow: 0 15px 25px #244bff4d;
}

.ghost-btn {
  color: inherit;
  cursor: pointer;
  background: none;
  border: 1px solid #0f1a3c26;
  border-radius: 14px;
  padding: 10px 20px;
  font-weight: 700;
}

.hero-grid {
  grid-template-columns: 1.4fr .6fr;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 32px;
  display: grid;
}

.hero-slider {
  min-height: 460px;
  max-height: 460px;
  box-shadow: var(--shadow);
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  cursor: grab;
  background: #0f1a3c;
  border-radius: 28px;
  width: 100%;
  max-width: 100%;
  transition: transform .1s ease-out;
  position: relative;
  overflow: hidden;
}

.hero-slider:active {
  cursor: grabbing;
}

.slides {
  will-change: transform;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.slide {
  flex: 0 0 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
  height: 460px;
  min-height: 460px;
  max-height: 460px;
  padding: 32px 28px;
  animation: .5s cubic-bezier(.4, 0, .2, 1) slidesFadeIn;
  display: flex;
  position: relative;
}

@keyframes slidesFadeIn {
  from {
    opacity: 0;
    transform: scale(.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slide:before {
  content: "";
  pointer-events: none;
  background: linear-gradient(#0000000d 0%, #0000002e 100%);
  position: absolute;
  inset: 0;
}

.slide:after {
  content: "";
  inset-inline: 0;
  filter: blur(50px);
  opacity: .6;
  height: 60%;
  position: absolute;
  bottom: -20%;
}

.slide-body {
  color: #fff;
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  display: flex;
  position: relative;
}

.slide-card {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 3;
  background: #0f1a3c80;
  border: 1px solid #ffffff26;
  border-radius: 24px;
  flex: auto;
  min-width: 0;
  max-width: 620px;
  padding: 32px 36px;
  position: relative;
  box-shadow: 0 20px 60px #0000004d;
}

.slide-card h1 {
  text-shadow: 0 2px 8px #0003;
  margin: 12px 0 10px;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.3;
}

.slide-card p {
  color: #ffffffeb;
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.6;
}

.slide-card .hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.slider-nav {
  z-index: 20;
  cursor: pointer;
  color: #111b42;
  opacity: 0;
  pointer-events: none;
  background: #fffffff2;
  border: 1px solid #00000014;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 12px #00000026;
}

.hero-slider:hover .slider-nav {
  opacity: 1;
  pointer-events: all;
}

.slider-nav:hover {
  background: #fff;
  transform: translateY(-50%)scale(1.05);
  box-shadow: 0 6px 20px #00000040;
}

.slider-nav:active {
  transform: translateY(-50%)scale(.95);
}

.slider-nav-prev {
  left: 20px;
}

.slider-nav-next {
  right: 20px;
}

.cycle-stage {
  flex-direction: column;
  flex: auto;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-width: 320px;
  max-width: 560px;
  min-height: 360px;
  display: flex;
  position: relative;
}

.cycle-frame {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #0000001f;
  border: 1px solid #ffffff1a;
  border-radius: 40px;
  flex-shrink: 0;
  width: 100%;
  height: 360px;
  padding: 18px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px #0003;
}

.cycle-frame:hover {
  background: #2c4bff14;
  transform: scale(1.02);
  box-shadow: 0 15px 40px #2c4bff4d, 0 0 0 2px #fff3;
}

.cycle-frame .cycle-layer {
  opacity: 0;
  justify-content: center;
  align-items: center;
  transition: opacity .6s ease-in-out;
  display: flex;
  position: absolute;
  inset: 12px;
  transform: scale(.95);
}

.cycle-frame .cycle-layer.is-active {
  opacity: 1;
  transition: opacity .6s ease-in-out, transform .6s cubic-bezier(.4, 0, .2, 1);
  transform: scale(1);
}

.cycle-frame img {
  object-fit: contain;
  filter: drop-shadow(0 4px 12px #0000004d);
  border-radius: 40px;
  width: auto;
  min-width: 280px;
  max-width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 100%;
  display: block;
}

.cycle-label {
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 4px #0003;
  border-radius: 12px;
  margin-top: 6px;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 800;
  transition: all .3s;
}

.cycle-label:hover {
  background: #ffffff26;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #0003;
}

.social-body {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
}

.social-slide-image {
  filter: drop-shadow(0 10px 30px #00000040);
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  height: 360px;
  display: flex;
}

.social-slide-image img {
  object-fit: contain;
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 360px;
  margin: 0 auto;
  display: block;
}

.social-logo-box {
  background: #fff;
  border-radius: 28px;
  place-items: center;
  width: 160px;
  height: 160px;
  display: grid;
  box-shadow: 0 18px 48px #00000029, 0 0 0 8px #0ea5e914;
}

.social-card {
  text-align: start;
  flex: auto;
  max-width: 600px;
}

.tone-blue {
  background-blend-mode: screen, normal;
  background: linear-gradient(135deg, #0f1a3c, #0f235f), radial-gradient(800px 520px at 10% -10%, #2c4bff73, #0000);
}

.tone-amber {
  background-blend-mode: screen, normal;
  background: linear-gradient(135deg, #1a0f3c, #3c1a0f), radial-gradient(800px 520px at 80% -10%, #ffb0258c, #0000), radial-gradient(600px 600px at 20% 110%, #ff4b9659, #0000);
  position: relative;
  overflow: hidden;
}

.tone-green {
  background-blend-mode: screen, normal;
  background: linear-gradient(135deg, #0f1a3c, #082b1c), radial-gradient(800px 520px at 10% -10%, #22c55e73, #0000);
}

.tone-blue:after {
  background: radial-gradient(50% 70% at 50% 100%, #2c4bff8c, #0000);
}

.tone-amber:after {
  background: radial-gradient(50% 70% at 50% 100%, #ffb025a6, #0000);
}

.tone-green:after {
  background: radial-gradient(50% 70% at 50% 100%, #22c55e8c, #0000);
}

.tone-amber:before {
  content: "";
  background: radial-gradient(circle, #ffb02526, #0000 70%);
  border-radius: 50%;
  width: 200px;
  height: 200px;
  animation: 8s ease-in-out infinite float;
  position: absolute;
  top: 10%;
  left: 5%;
}

@keyframes socialGlow {
  0%, 100% {
    opacity: .3;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.1);
  }
}

.social-card .hero-actions .cta {
  background: linear-gradient(135deg, #ff4d6d, #ff9500);
  font-size: 16px;
  font-weight: 900;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px #ff4d6d66, 0 0 30px #ff95004d;
}

.social-card .hero-actions .cta:before {
  content: "";
  background: linear-gradient(45deg, #0000, #ffffff4d, #0000);
  width: 200%;
  height: 200%;
  animation: 3s infinite shimmer;
  position: absolute;
  top: -50%;
  left: -50%;
  transform: rotate(45deg);
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%)translateY(-100%)rotate(45deg);
  }

  100% {
    transform: translateX(100%)translateY(100%)rotate(45deg);
  }
}

.social-card .hero-actions .cta:hover {
  transform: translateY(-3px)scale(1.05);
  box-shadow: 0 12px 32px #ff4d6d80, 0 0 40px #ff950066;
}

.social-card .hero-actions .ghost-btn {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  background: #ffffff1a;
  border: 2px solid #ffb02599;
  font-weight: 800;
  transition: all .3s;
  position: relative;
}

.social-card .hero-actions .ghost-btn:hover {
  background: #ffb02533;
  border-color: #ffb025e6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #ffb0254d;
}

.fortnite-f-logo {
  color: #ffffff08;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  font-family: Arial Black, sans-serif;
  font-size: 600px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.floating-products {
  z-index: 2;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  gap: 40px;
  display: flex;
  position: absolute;
  inset: 0;
}

.floating-product {
  filter: drop-shadow(0 20px 40px #0006);
  transition: transform .3s;
  animation: 6s ease-in-out infinite float;
}

.floating-product img {
  object-fit: contain;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  width: 180px;
  height: 180px;
  display: block;
}

.floating-product.product-1 {
  margin-top: -80px;
  animation-delay: 0s;
}

.floating-product.product-2 {
  margin-top: 40px;
  animation-delay: 2s;
}

.floating-product.product-3 {
  margin-top: -40px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.showcase-bg {
  z-index: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.showcase-img {
  opacity: .3;
  filter: blur(2px);
  animation: 18s ease-in-out infinite showcaseFade;
  position: absolute;
}

.showcase-img img {
  object-fit: contain;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  width: 300px;
  height: 300px;
  display: block;
}

.showcase-img.showcase-img-1 {
  animation-delay: 0s;
  top: 20%;
  left: 10%;
}

.showcase-img.showcase-img-2 {
  animation-delay: 6s;
  bottom: 15%;
  right: 8%;
  transform: scale(.8);
}

.showcase-img.showcase-img-3 {
  animation-delay: 12s;
  bottom: 20%;
  left: 15%;
  transform: scale(.9);
}

@keyframes showcaseFade {
  0%, 33%, 100% {
    opacity: .3;
    filter: blur(2px);
    transform: scale(1);
  }

  16% {
    opacity: .5;
    filter: blur(1px);
    transform: scale(1.05);
  }
}

.dots {
  bottom: 20px;
  z-index: 20;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  display: flex;
  position: absolute;
  inset-inline: 0;
}

.dots button {
  cursor: pointer;
  background: #00000038;
  border: 1px solid #ffffff8c;
  border-radius: 10px;
  width: 12px;
  height: 12px;
  padding: 0;
  transition: background-color .2s, border-color .2s, width .2s, transform .2s;
  position: relative;
}

.dots button.active, .dots button[aria-selected="true"] {
  background: #fff;
  border-color: #fff;
  width: 16px;
  transform: translateY(-1px);
}

@keyframes progress-spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.progress-ring {
  border: 2px solid #0000;
  border-top-color: #ffffffe6;
  border-radius: 50%;
  animation: 9s linear infinite progress-spin;
  position: absolute;
  inset: -2px;
}

.hero-side {
  gap: 16px;
  display: grid;
}

.mini-hero {
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 24px;
  min-height: 170px;
  padding: 24px;
}

.mini-hero .tag {
  font-size: 13px;
  font-weight: 800;
}

.mini-hero h3 {
  color: #111b42;
  margin: 12px 0 6px;
  font-size: 20px;
}

.mini-hero p {
  color: var(--muted);
  margin: 0;
}

.mini-hero:first-child {
  color: #111b42;
  background: linear-gradient(135deg, #7c5b00, #ffb025);
  min-height: 190px;
}

.mini-hero:first-child .tag {
  color: #5b3b00 !important;
}

.mini-hero:nth-child(2) {
  color: #fff;
  background: linear-gradient(135deg, #0f1a3c, #1a2b6a);
}

.mini-hero:nth-child(2) h3, .mini-hero:nth-child(2) p {
  color: #fff;
  text-shadow: 0 1px #00000040;
}

.mini-hero:nth-child(3) {
  color: #eafff6;
  background: linear-gradient(135deg, #0b3b26, #0f6a46);
}

.mini-hero.stat {
  color: #fff;
  background: radial-gradient(120% 100% at 0 0, #2c4bff55, #0000), linear-gradient(135deg, #111b42, #1a2b6a);
  border-radius: 24px;
  min-height: auto;
  padding: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px #0f1a3c59;
}

.mini-hero.stat:before {
  content: "";
  z-index: 0;
  background: linear-gradient(90deg, #00000059, #0000 60%);
  position: absolute;
  inset: 0;
}

.mini-hero.stat:after {
  content: "";
  opacity: .25;
  filter: drop-shadow(0 6px 12px #0003);
  pointer-events: none;
  background: url("/customer-service-people-3d-avatar-free-png.webp") center / contain no-repeat;
  width: 140px;
  height: 140px;
  position: absolute;
  bottom: -10px;
  left: -10px;
}

.mini-hero.stat * {
  z-index: 1;
  text-shadow: 0 1px 2px #00000059;
  position: relative;
}

.mini-hero.stat .tag {
  font-size: 10.5px;
  color: #9db4ff !important;
}

.mini-hero.stat h3 {
  color: #fff;
  margin: 10px 0 8px;
  font-size: 24px;
  line-height: 1.2;
}

.mini-hero.stat p {
  color: #ffffffe6;
  font-size: 11.25px;
}

.testimonials-slider {
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 8px 0;
  display: flex;
  overflow: hidden;
}

.testimonial-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff 0%, #f8f9fd 100%);
  border-radius: 20px;
  align-items: flex-start;
  gap: 14px;
  min-height: 140px;
  padding: 16px;
  animation: .5s ease-out testimonialFadeIn;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px #0f1a3c14;
}

@keyframes testimonialFadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #0f1a3c1f;
}

.testimonial-card:before {
  content: "\"";
  color: #2c4bff0d;
  font-family: Georgia, serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: -10px;
  right: 12px;
}

.testimonial-date {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 14px;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  min-width: 56px;
  padding: 10px 8px;
  display: flex;
  box-shadow: 0 4px 10px #2c4bff40;
}

.date-day {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.date-month {
  color: #ffffffe6;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
}

.testimonial-content {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  min-width: 0;
  display: flex;
}

.testimonial-header {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.testimonial-username {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.testimonial-product {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.testimonial-review {
  color: #4a5568;
  margin: 0;
  padding-right: 4px;
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
}

.testimonial-dots {
  justify-content: center;
  gap: 8px;
  padding: 4px 0;
  display: flex;
}

.testimonial-dot {
  cursor: pointer;
  background: #2c4bff33;
  border: none;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  padding: 0;
  transition: all .3s;
}

.testimonial-dot:hover {
  background: #2c4bff66;
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: var(--primary);
  border-radius: 4px;
  width: 24px;
}

.stats-row {
  grid-column: 1 / -1;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin-top: 12px;
  display: flex;
}

.stats-row .stat {
  border: 1px solid var(--line);
  text-align: center;
  background: #fff;
  border-radius: 18px;
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 14px;
  font-weight: 800;
}

.stats-row .stat span {
  color: var(--primary);
  font-size: 18px;
  display: block;
}

.stats-row .stat.rating span {
  color: var(--accent);
}

.categories {
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 24px;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  margin-bottom: 32px;
  padding: 28px;
  overflow: hidden;
}

.section-head {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  display: flex;
}

.section-head h2 {
  margin: 0;
  font-size: 24px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-weight: 600;
}

.chip-row {
  padding-top: 20px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #2453ff4d transparent;
  scroll-behavior: smooth;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0 -28px;
  padding-inline: 28px;
  display: flex;
  overflow-x: auto;
}

.chip-row.draggable-scroll {
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.chip-row.draggable-scroll:active {
  cursor: grabbing;
}

.chip-row::-webkit-scrollbar {
  height: 6px;
}

.chip-row::-webkit-scrollbar-track {
  background: none;
}

.chip-row::-webkit-scrollbar-thumb {
  background: #2453ff4d;
  border-radius: 3px;
}

.chip-row::-webkit-scrollbar-thumb:hover {
  background: #2453ff80;
}

.chip {
  border: 1px solid var(--line);
  cursor: pointer;
  scroll-snap-align: start;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  background: #f8f9fd;
  border-radius: 18px;
  padding: 10px 18px;
  font-weight: 700;
  transition: all .2s;
}

.chip:hover {
  color: var(--primary);
  border-color: #2453ff80;
}

.chip.block {
  text-align: center;
  width: 100%;
}

.chip.active {
  color: var(--primary);
  background: #eef2ff;
  border-color: #2453ff99;
  box-shadow: inset 0 0 0 1px #2453ff26;
}

.subnav {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 16px;
  margin-bottom: 16px;
  padding: 8px 10px;
}

:root[data-theme="dark"] .subnav {
  background: var(--card);
  border-color: var(--line);
}

.chip-trigger {
  display: none;
}

.desktop-only {
  display: flex;
}

.sheet-overlay {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 80;
  background: #0f1a3c8c;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: fixed;
  inset: 0;
}

.sheet-panel {
  background: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
  max-width: 600px;
  padding: 16px;
  box-shadow: 0 -20px 50px #0f1a3c33;
}

.sheet-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.sheet-list {
  grid-template-columns: 1fr;
  gap: 10px;
  display: grid;
}

.product-section {
  margin-top: 24px;
}

.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 100%;
  display: grid;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: none;
  border-radius: 18px;
  flex-direction: column;
  height: 100%;
  transition: transform .15s, box-shadow .15s;
  display: flex;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card-body {
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 16px;
  display: flex;
}

.card .btn, .card .qty-control {
  margin-top: auto;
}

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

.product-card-media {
  aspect-ratio: 2240 / 1920;
  background: var(--card);
  border: 1px solid var(--line);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.price {
  color: var(--primary);
  font-weight: 900;
}

.price-old {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: line-through;
}

.muted {
  color: var(--muted);
}

.btn {
  color: #fff;
  cursor: pointer;
  background: #111b42;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-weight: 800;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
}

.btn.block {
  width: 100%;
}

.ghost-btn {
  color: inherit;
  cursor: pointer;
  background: none;
  border: 1px solid #0f1a3c26;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 10px 20px;
  font-weight: 700;
  display: inline-flex;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  display: grid;
}

.field {
  gap: 6px;
  display: grid;
}

.field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.field input, .field select, .field textarea {
  color: var(--text);
  border: 1px solid var(--line);
  background: #f6f7fb;
  border-radius: 10px;
  padding: 10px 12px;
  transition: border-color .2s, box-shadow .2s;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px #2c4bff26;
}

.field input::placeholder, .field textarea::placeholder {
  color: var(--muted);
}

.card.section {
  box-shadow: var(--shadow);
  border: 1px solid #e5e8f2e6;
  border-radius: 18px;
  padding: 24px 22px 20px;
}

.perks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
  display: grid;
}

.perks .perk {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

.perks .perk-head {
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  display: flex;
}

.perks .perk-icon {
  width: 44px;
  height: 44px;
  box-shadow: inset 0 0 0 1px var(--line);
  background: #0f1a3c0f;
  border-radius: 12px;
  padding: 6px;
}

.perks h3 {
  margin: 0;
  font-size: 18px;
}

.perks p {
  color: var(--muted);
  margin: 6px 0 0;
  line-height: 1.7;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  margin-top: 48px;
  padding: 32px 0;
  font-weight: 600;
}

.footer-top {
  text-align: start;
}

.footer-contacts a {
  color: inherit;
  text-decoration: underline;
}

.social-row img {
  display: block;
}

@media (max-width: 900px) {
  .cards {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 4px 12px 14px;
    display: flex;
    overflow-x: auto;
  }

  .cards::-webkit-scrollbar {
    height: 8px;
  }

  .cards::-webkit-scrollbar-thumb {
    background: #00000026;
    border-radius: 10px;
  }

  .cards .card {
    scroll-snap-align: center;
    border-radius: 24px;
    min-width: 82vw;
    max-width: 86vw;
    box-shadow: 0 12px 28px #0f1a3c1f;
  }

  .product-card-media {
    border-radius: 20px;
  }
}

.trust-badges {
  align-items: flex-end;
  gap: 12px;
  display: flex;
}

.enamad-frame {
  background: linear-gradient(135deg, #f59e0b, #d97706, #f59e0b) 0 0 / 200% 200%;
  border-radius: 18px;
  padding: 10px;
  transition: transform .2s, box-shadow .2s, filter .2s;
  animation: 6s linear infinite legendaryShimmer;
  display: inline-flex;
}

.enamad-img {
  background: #fff;
  border-radius: 12px;
  width: auto;
  height: 220px;
  display: block;
  box-shadow: 0 10px 30px #00000026;
}

.zarinpal-badge {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 10px 14px;
  transition: transform .2s, box-shadow .2s, filter .2s;
  display: inline-flex;
  box-shadow: 0 8px 24px #00000014;
}

.zarinpal-badge img {
  width: auto;
  height: 72px;
  display: block;
}

.enamad-frame:hover, .zarinpal-badge:hover {
  filter: saturate(1.1);
  transform: translateY(-3px)scale(1.02);
  box-shadow: 0 14px 32px #0000002e;
}

@keyframes legendaryShimmer {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .nav-inner {
    grid-template-columns: 1fr 1.5fr 1fr;
    height: 70px;
  }

  .perks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .container {
    max-width: 100%;
    padding: 0 12px;
  }

  .nav-inner {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "actions logo hamburger"
                         "search search search";
    grid-auto-rows: auto;
    gap: 8px;
    height: auto;
    padding: 10px 0 12px;
  }

  .brand.logo {
    grid-area: logo;
    justify-self: center;
  }

  .brand.logo img {
    width: auto;
    height: 54px;
  }

  .nav-actions {
    flex-wrap: nowrap;
    grid-area: actions;
    justify-self: flex-start;
    gap: 6px;
    max-width: 100%;
  }

  .nav-user {
    flex-wrap: nowrap;
    gap: 4px;
  }

  .nav-hamburger {
    grid-area: hamburger;
    justify-self: flex-end;
    display: flex;
  }

  .ghost-btn {
    white-space: nowrap;
    min-width: auto;
    padding: 8px 12px;
    font-size: 13px;
  }

  .search {
    grid-area: search;
  }

  .fortnite-search {
    padding: 8px 10px;
  }

  .search {
    max-width: none;
    margin-inline: 0;
  }

  .home-shell {
    padding-top: 16px;
  }

  .hero-grid {
    margin-top: 12px;
  }

  .hero-slider {
    cursor: default;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
    min-height: 520px;
    max-height: 520px;
    margin: 0;
  }

  .fortnite-nav {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #e5e8f2e6;
    box-shadow: 0 6px 14px #0f1a3c14;
  }

  .hero-slider:active {
    cursor: default;
  }

  .slider-nav {
    display: none;
  }

  .slide {
    width: 100%;
    height: 520px;
    min-height: 520px;
    max-height: 520px;
    padding: 24px 16px;
  }

  .slide-body {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    max-width: 100%;
    height: 100%;
  }

  .cycle-stage {
    flex-shrink: 0;
    order: -1;
    width: 100%;
    min-width: 0;
    min-height: 300px;
    max-height: 300px;
  }

  .slide-card {
    text-align: center;
    background: #0f1a3ca6;
    border-radius: 20px;
    max-width: 100%;
    padding: 20px 22px;
  }

  .slide-card h1 {
    margin: 10px 0 8px;
    font-size: 24px;
    line-height: 1.4;
  }

  .slide-card p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .slide-card .hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  .slide-card .hero-actions .cta, .slide-card .hero-actions .ghost-btn {
    text-align: center;
    border-radius: 14px;
    flex: 1;
    justify-content: center;
    align-items: center;
    min-width: 140px;
    max-width: 200px;
    padding: 12px 20px;
    font-size: 14px;
    display: inline-flex;
  }

  .social-card .hero-actions {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: flex;
  }

  .social-card .hero-actions .cta, .social-card .hero-actions .ghost-btn {
    flex: 1;
  }

  .cycle-frame {
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 280px;
    padding: 10px;
    display: flex;
  }

  .cycle-frame .cycle-layer {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .cycle-frame img {
    object-fit: contain;
    width: auto;
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: 100%;
  }

  .cycle-label {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: #ffffff26;
    border: 1px solid #ffffff40;
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 900;
  }

  .social-body {
    flex-direction: column;
    gap: 16px;
  }

  .social-card {
    text-align: center;
  }

  .social-slide-image {
    flex-shrink: 0;
    order: -1;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 300px;
    max-height: 300px;
    margin: 0;
    display: flex;
  }

  .social-slide-image img {
    object-fit: contain;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    min-height: 0 !important;
    max-height: 100% !important;
  }

  .dots {
    gap: 8px;
    bottom: 12px;
  }

  .dots button {
    width: 10px;
    height: 10px;
  }

  .dots button.active, .dots button[aria-selected="true"] {
    width: 24px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .mini-hero {
    padding: 16px;
  }

  .mini-hero.stat {
    border-radius: 20px;
    padding: 14px;
  }

  .mini-hero.stat h3 {
    font-size: 18px;
  }

  .mini-hero.stat p {
    font-size: 9.75px;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 84px;
  }

  .feature__text strong {
    font-size: 14px;
  }

  .feature__text small {
    font-size: 12px;
  }

  .feature__icon {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .feature__icon img {
    width: 16px;
    height: 16px;
  }

  .perks {
    grid-template-columns: 1fr;
  }

  .chip-trigger {
    display: inline-block;
  }

  .desktop-only, .slide-card h1, .slide-card p, .hero-pill {
    display: none;
  }

  .slide-card {
    box-shadow: none;
    text-align: center;
    background: none;
    border: none;
    justify-content: center;
    align-items: center;
    padding: 0;
    display: flex;
  }

  .slide-card .hero-actions {
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
  }

  .slide-fortnite-cycle .hero-actions .cta {
    background: linear-gradient(135deg, #2c4bff, #00d9ff);
    border: none;
    border-radius: 16px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 900;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px #2c4bff73, 0 0 30px #00d9ff4d;
  }

  .slide-fortnite-cycle .hero-actions .cta:after {
    content: "";
    background: #ffffff4d;
    border-radius: 50%;
    width: 0;
    height: 0;
    transition: width .5s, height .5s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .slide-fortnite-cycle .hero-actions .cta:active:after {
    width: 300px;
    height: 300px;
  }

  .testimonial-card {
    border-radius: 16px;
    min-height: 120px;
    padding: 14px;
  }

  .testimonial-date {
    min-width: 50px;
    padding: 8px 6px;
  }

  .date-day {
    font-size: 20px;
  }

  .date-month {
    font-size: 10px;
  }

  .testimonial-username {
    font-size: 13px;
  }

  .testimonial-product {
    font-size: 10px;
  }

  .testimonial-review {
    font-size: 12px;
  }

  .stats-row {
    -webkit-overflow-scrolling: touch;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
  }

  .stats-row .stat {
    flex: calc(50% - 6px);
    min-width: 110px;
    max-width: calc(50% - 6px);
    padding: 12px 10px;
    font-size: 13px;
  }

  .stats-row .stat span {
    text-overflow: clip;
    white-space: normal;
    font-size: 16px;
    line-height: 1.3;
    overflow: visible;
  }

  .stats-row .stat.hide-mobile {
    display: none;
  }

  .enamad-img {
    height: 140px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .fortnite-f-logo {
    opacity: .5;
    font-size: 300px;
  }

  .floating-products {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }

  .floating-product img {
    width: 100px;
    height: 100px;
  }

  .floating-product.product-1, .floating-product.product-2, .floating-product.product-3 {
    margin-top: 0;
  }

  .showcase-img {
    display: none;
  }

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

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

  .nav-user-menu {
    position: static;
  }

  .user-menu {
    max-width: none;
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
  }

  .cart-preview {
    left: 0;
    right: auto;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .checkout-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .checkout-item-actions {
    justify-content: space-between;
  }

  .checkout-qty-input {
    width: 100%;
    max-width: 120px;
  }
}

@media (min-width: 641px) {
  .feature-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 0;
    display: grid;
    overflow: visible;
  }

  .feature {
    min-width: 0;
  }
}

.floating-menu-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  cursor: pointer;
  z-index: 999;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  animation: 3s ease-in-out infinite floatingPulse;
  display: flex;
  position: fixed;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  box-shadow: 0 8px 24px #2c4bff59, 0 4px 12px #00000026;
}

@media (max-width: 768px) {
  .floating-menu-btn {
    border-radius: 14px;
    width: 48px;
    height: 48px;
    top: 16px;
    left: 16px;
    transform: none;
    box-shadow: 0 4px 16px #2c4bff4d, 0 2px 8px #0000001a;
  }
}

.floating-menu-btn:hover {
  transform: translateY(-50%)scale(1.1)rotate(90deg);
  box-shadow: 0 12px 32px #2c4bff73, 0 6px 16px #0003;
}

.floating-menu-btn:active {
  transform: translateY(-50%)scale(.95)rotate(90deg);
}

@media (max-width: 768px) {
  .floating-menu-btn:hover {
    transform: scale(1.05);
  }

  .floating-menu-btn:active {
    transform: scale(.95);
  }
}

.menu-pulse {
  border: 3px solid var(--primary);
  border-radius: 50%;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulseRing;
  position: absolute;
  inset: -4px;
}

@media (max-width: 768px) {
  .menu-pulse {
    border-radius: 18px;
  }
}

@keyframes pulseRing {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes floatingPulse {
  0%, 100% {
    box-shadow: 0 8px 24px #2c4bff59, 0 4px 12px #00000026;
  }

  50% {
    box-shadow: 0 12px 32px #2c4bff80, 0 6px 16px #0003;
  }
}

.prominent-menu-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 16px;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  font-weight: 800;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px #2c4bff4d;
}

.prominent-menu-btn:before {
  content: "";
  background: linear-gradient(90deg, #0000, #ffffff4d, #0000);
  width: 100%;
  height: 100%;
  transition: left .5s;
  position: absolute;
  top: 0;
  left: -100%;
}

.prominent-menu-btn:hover:before {
  left: 100%;
}

.prominent-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px #2c4bff73;
}

.prominent-menu-btn:active {
  transform: translateY(0);
}

.menu-btn-icon {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #fff3;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
}

.menu-btn-text {
  text-align: right;
  flex-direction: column;
  flex: 1;
  gap: 2px;
  display: flex;
}

.menu-btn-text strong {
  font-size: 15px;
  line-height: 1.2;
}

.menu-btn-text small {
  opacity: .9;
  font-size: 12px;
  font-weight: 600;
}

.menu-btn-arrow {
  flex-shrink: 0;
  transition: transform .3s;
}

.prominent-menu-btn:hover .menu-btn-arrow {
  transform: translateX(-4px);
}

.modern-chip {
  border: 2px solid var(--line);
  text-align: center;
  isolation: isolate;
  background: #fff;
  border-radius: 18px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 130px;
  padding: 14px 12px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.modern-chip:before {
  content: "";
  background: var(--chip-gradient, linear-gradient(135deg, var(--primary), var(--primary-2)));
  opacity: 0;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.modern-chip span {
  z-index: 1;
  color: inherit;
  font-weight: 800;
  line-height: 1.3;
  position: relative;
}

.modern-chip:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #2c4bff26;
}

.modern-chip.active {
  color: #fff;
  background: #fff;
  border-color: #0000;
  box-shadow: 0 8px 20px #2c4bff59;
}

.modern-chip.active:before {
  opacity: 1;
}

.modern-chip.active span {
  z-index: 1;
  position: relative;
}

.chip-icon-wrapper {
  z-index: 1;
  background: linear-gradient(135deg, #f0f4ff, #e0e7ff);
  border-radius: 18px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px #fff6;
}

.modern-chip.active .chip-icon-wrapper {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #ffffff40;
}

.chip-icon-img {
  object-fit: cover;
  border-radius: inherit;
  filter: drop-shadow(0 2px 4px #0000001a);
  width: 100%;
  height: 100%;
  display: block;
}

.chip-label {
  text-align: center;
  color: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.modern-chip.active .chip-icon-img {
  filter: brightness(1.2) drop-shadow(0 2px 4px #0003);
}

.more-chip {
  border-color: var(--primary);
  color: var(--primary);
  background: linear-gradient(135deg, #f0f4ff, #e0e7ff);
  font-weight: 800;
}

.more-chip:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
}

.more-chip:hover .chip-icon-wrapper {
  background: #ffffff40;
}

.chip-icon {
  justify-content: center;
  align-items: center;
  font-size: 18px;
  display: inline-flex;
}

.sidebar-overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1000;
  background: #0f1a3cb3;
  animation: .3s fadeIn;
  position: fixed;
  inset: 0;
}

.sidebar-drawer {
  z-index: 1001;
  background: linear-gradient(#fff 0%, #f8f9fd 100%);
  flex-direction: column;
  width: 360px;
  max-width: 85vw;
  height: 100vh;
  animation: .4s cubic-bezier(.4, 0, .2, 1) slideInRight;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  overflow: hidden;
  box-shadow: -8px 0 40px #00000040;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sidebar-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px #0000001a;
}

.sidebar-header:before {
  content: "";
  background: #ffffff1a;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  position: absolute;
  top: -50%;
  right: -20%;
}

.sidebar-header-content {
  z-index: 1;
  flex: 1;
  position: relative;
}

.sidebar-header h3 {
  text-shadow: 0 2px 4px #0000001a;
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 900;
}

.sidebar-header p {
  opacity: .9;
  color: #fffffff2;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.sidebar-close-btn {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  z-index: 1;
  background: #ffffff26;
  border: 2px solid #ffffff4d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.sidebar-close-btn:hover {
  background: #ffffff40;
  border-color: #ffffff80;
  transform: rotate(90deg);
}

.sidebar-close-btn:active {
  transform: scale(.9)rotate(90deg);
}

.sidebar-content {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}

.sidebar-content::-webkit-scrollbar {
  width: 6px;
}

.sidebar-content::-webkit-scrollbar-track {
  background: none;
}

.sidebar-content::-webkit-scrollbar-thumb {
  background: #2c4bff33;
  border-radius: 3px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
  background: #2c4bff4d;
}

.sidebar-category-list {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.sidebar-category-item {
  border: 2px solid var(--line);
  cursor: pointer;
  background: #fff;
  border-radius: 16px;
  align-items: center;
  gap: 14px;
  padding: 16px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.sidebar-category-item:before {
  content: "";
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  opacity: 0;
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.sidebar-category-item:hover {
  border-color: var(--primary);
  transform: translateX(-4px);
  box-shadow: 0 8px 20px #2c4bff26;
}

.sidebar-category-item.active {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 8px 20px #2c4bff59;
}

.sidebar-category-item.active:before {
  opacity: 1;
}

.sidebar-category-item.active .category-name, .sidebar-category-item.active .category-desc, .sidebar-category-item.active .category-arrow {
  color: #fff;
}

.category-icon {
  z-index: 1;
  background: linear-gradient(135deg, #f0f4ff, #e0e7ff);
  border-radius: 14px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.category-icon-img-wrapper {
  z-index: 1;
  border-radius: 14px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.category-icon-img {
  object-fit: cover;
  border-radius: inherit;
  filter: drop-shadow(0 2px 6px #00000026);
  width: 100%;
  height: 100%;
  display: block;
}

.sidebar-category-item:hover .category-icon, .sidebar-category-item:hover .category-icon-img-wrapper {
  transform: scale(1.1)rotate(-5deg);
}

.sidebar-category-item.active .category-icon, .sidebar-category-item.active .category-icon-img-wrapper {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #fff3;
}

.sidebar-category-item.active .category-icon-img {
  filter: brightness(1.1) drop-shadow(0 2px 8px #00000040);
}

.category-info {
  z-index: 1;
  flex-direction: column;
  flex: 1;
  gap: 2px;
  display: flex;
  position: relative;
}

.category-name {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  transition: color .3s;
}

.category-desc {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  transition: color .3s;
}

.category-arrow {
  color: var(--muted);
  z-index: 1;
  flex-shrink: 0;
  transition: all .3s;
  position: relative;
}

.sidebar-category-item:hover .category-arrow {
  color: var(--primary);
  transform: translateX(-4px);
}

.sidebar-category-item.active .category-arrow {
  color: #fff;
}

@media (max-width: 640px) {
  .prominent-menu-btn {
    display: none;
  }

  .sidebar-drawer {
    width: 100%;
    max-width: 100%;
  }

  .menu-btn-text small {
    display: none;
  }

  .floating-menu-btn {
    z-index: 1000;
    width: 48px;
    height: 48px;
    top: 16px;
    left: 16px;
    right: auto;
    transform: none;
  }

  .floating-menu-btn:hover {
    transform: scale(1.05)rotate(90deg);
  }
}

@media (min-width: 641px) {
  .floating-menu-btn {
    display: flex;
  }
}

.site-footer {
  color: #e2e8f0;
  background: linear-gradient(#0a0e27 0%, #1a1f3a 100%);
  margin-top: 80px;
}

.footer-newsletter {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  padding: 50px 0;
}

.newsletter-content {
  text-align: center;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 30px;
  display: grid;
}

.newsletter-text h3 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 900;
}

.newsletter-text p {
  color: #ffffffe6;
  margin: 0;
  font-size: 16px;
}

.newsletter-form {
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
}

.newsletter-input {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  background: #ffffff26;
  border: 2px solid #ffffff4d;
  border-radius: 12px;
  flex: 1;
  padding: 16px 20px;
  font-size: 15px;
  transition: all .3s;
}

.newsletter-input::placeholder {
  color: #ffffffb3;
}

.newsletter-input:focus {
  background: #ffffff40;
  border-color: #fff;
  outline: none;
}

.newsletter-btn {
  color: #3b82f6;
  cursor: pointer;
  white-space: nowrap;
  background: #fff;
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  transition: all .3s;
  display: flex;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px #0003;
}

.newsletter-btn svg {
  transition: transform .3s;
}

.newsletter-btn:hover svg {
  transform: translateX(-4px);
}

.footer-main {
  border-bottom: 1px solid #ffffff1a;
  padding: 60px 0 40px;
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  display: grid;
}

.footer-col {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.footer-about {
  gap: 16px;
}

.footer-logo {
  margin-bottom: 8px;
}

.logo-img {
  filter: brightness(1.2);
  height: auto;
}

.footer-desc {
  color: #94a3b8;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-social {
  gap: 12px;
  margin-top: 8px;
  display: flex;
}

.social-link {
  color: #94a3b8;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .3s;
  display: flex;
}

.social-link:hover {
  color: #fff;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-color: #0000;
  transform: translateY(-3px);
}

.footer-title {
  color: #fff;
  margin: 0 0 8px;
  padding-bottom: 12px;
  font-size: 18px;
  font-weight: 800;
  position: relative;
}

.footer-title:after {
  content: "";
  background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 2px;
  width: 40px;
  height: 3px;
  position: absolute;
  bottom: 0;
  right: 0;
}

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

.footer-links li a {
  color: #94a3b8;
  padding-right: 16px;
  font-size: 14px;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
  position: relative;
}

.footer-links li a:before {
  content: "←";
  opacity: 0;
  transition: all .3s;
  position: absolute;
  right: 0;
}

.footer-links li a:hover {
  color: #3b82f6;
  padding-right: 20px;
}

.footer-links li a:hover:before {
  opacity: 1;
  right: 0;
}

.footer-contact {
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer-contact li {
  color: #94a3b8;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
}

.footer-contact li svg {
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  background: #0003;
  padding: 30px 0;
}

.footer-bottom-content {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  display: grid;
}

.footer-badges {
  align-items: center;
  gap: 20px;
  display: flex;
}

.trust-badge {
  color: #94a3b8;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.trust-badge:hover {
  transform: translateY(-4px);
}

.badge-img {
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}

.zarinpal-badge, .secure-badge {
  text-align: center;
}

.zarinpal-badge span, .secure-badge span {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  color: #94a3b8;
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.footer-copyright strong {
  color: #fff;
  font-weight: 700;
}

.footer-note {
  opacity: .9;
  font-weight: 800;
  margin-top: 8px !important;
  font-size: 12px !important;
}

.footer-note .mortal-link {
  color: #f43f5e;
  border-bottom: 2px solid #f43f5e40;
  padding-bottom: 2px;
  font-weight: 900;
  text-decoration: none;
}

.footer-note .mortal-link:hover {
  color: #e11d48;
  border-color: #e11d4866;
}

.footer-payments {
  align-items: center;
  gap: 12px;
  display: flex;
}

.payment-text {
  color: #94a3b8;
  white-space: nowrap;
  font-size: 13px;
}

.payment-icons {
  gap: 8px;
  display: flex;
}

.payment-icon {
  cursor: pointer;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 6px;
  padding: 4px 8px;
  transition: all .3s;
}

.payment-icon:hover {
  background: #ffffff1a;
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-content {
    text-align: right;
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-text {
    padding-left: 40px;
  }
}

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-content {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-badges, .footer-payments {
    justify-content: center;
  }

  .footer-payments {
    flex-direction: column;
    gap: 12px;
  }

  .footer-newsletter {
    padding: 40px 0;
  }

  .newsletter-text h3 {
    font-size: 22px;
  }

  .newsletter-form {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-badges {
    flex-direction: column;
    gap: 16px;
  }

  .footer-social {
    justify-content: center;
  }
}

.footer-bottom {
  background: #0000004d;
  border-top: 1px solid #ffffff1a;
  padding: 25px 0;
}

.footer-bottom .footer-copyright {
  text-align: center;
}

.footer-trust {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
  display: flex;
}

.trust-card {
  color: #0f172a;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  padding: 12px 16px;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  box-shadow: 0 12px 28px #00000024;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #00000029;
}

.trust-card .trust-img {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 6px 18px #00000014;
}

.trust-label {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.trust-label strong {
  color: #0f2250;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.trust-label span {
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}

.trust-card--pulse {
  animation: 1.8s ease-in-out infinite trustCardPulse;
  position: relative;
  box-shadow: 0 0 #0c82ff66;
}

.trust-card--pulse:after {
  content: "";
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  border: 1px solid #fff6;
  animation: 2.2s ease-in-out infinite trustCardSheen;
  position: absolute;
  inset: -2px;
}

@keyframes trustCardPulse {
  0% {
    box-shadow: 0 0 #0c82ff66;
  }

  50% {
    box-shadow: 0 0 28px #0c82ffbf;
  }

  100% {
    box-shadow: 0 0 #0c82ff66;
  }
}

@keyframes trustCardSheen {
  0% {
    opacity: 0;
    transform: scale(.96);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.06);
  }
}

@media (max-width: 480px) {
  .trust-card {
    text-align: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
  }

  .trust-label {
    align-items: center;
  }
}

.social-buttons {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  display: flex;
}

.social-btn {
  white-space: nowrap;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 4px 12px #00000026;
}

.telegram-btn {
  color: #fff;
  background: #08c;
}

.telegram-btn:hover {
  background: #069;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #08c6;
}

.instagram-btn {
  color: #fff;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #e1306c66;
}

.social-btn svg {
  flex-shrink: 0;
}

.newsletter-form {
  display: none;
}

@media (max-width: 640px) {
  .social-buttons {
    flex-direction: column;
    width: 100%;
  }

  .social-btn {
    justify-content: center;
    width: 100%;
  }
}

.back-to-home-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  cursor: pointer;
  z-index: 999;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
  position: fixed;
  top: 50%;
  left: 16px;
  overflow: hidden;
  transform: translateY(-50%);
  box-shadow: 0 8px 24px #2c4bff59;
}

.back-to-home-btn:hover {
  transform: translateY(-50%)scale(1.08);
  box-shadow: 0 12px 32px #2c4bff73;
}

.back-to-home-btn:active {
  transform: translateY(-50%)scale(.96);
}

.back-to-home-btn svg {
  z-index: 2;
  filter: drop-shadow(0 2px 4px #0000001a);
  position: relative;
}

.back-btn-pulse {
  z-index: 1;
  background: #ffffff4d;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite backBtnPulse;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes backBtnPulse {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%)scale(1);
  }

  50% {
    opacity: 0;
    transform: translate(-50%, -50%)scale(1.5);
  }
}

@media (max-width: 768px) {
  .back-to-home-btn {
    border-radius: 14px;
    width: 48px;
    height: 48px;
    top: 16px;
    left: 16px;
    transform: none;
  }

  .back-to-home-btn:hover {
    transform: scale(1.05);
  }

  .back-to-home-btn:active {
    transform: scale(.95);
  }
}

@media (max-width: 640px) {
  .back-to-home-btn {
    width: 48px;
    height: 48px;
    top: 16px;
    left: 16px;
    right: auto;
    transform: none;
  }
}

.trust-onboarding-overlay {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 9999;
  background: radial-gradient(circle at top, #040920d9, #000000eb);
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
  position: fixed;
  inset: 0;
}

.trust-onboarding-card {
  background: #06091af2;
  border: 1px solid #ffffff14;
  border-radius: 28px;
  width: min(720px, 95vw);
  animation: .5s ease-out trustCardAppear;
  overflow: hidden;
  box-shadow: 0 25px 80px #020617a6;
}

@keyframes trustCardAppear {
  from {
    opacity: 0;
    transform: translateY(24px)scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.trust-onboarding-media {
  aspect-ratio: 16 / 9;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.trust-onboarding-media img {
  object-fit: cover;
}

.trust-onboarding-media-overlay {
  color: #fff;
  text-shadow: 0 4px 12px #0009;
  background: linear-gradient(120deg, #000418b3, #0b49b04d);
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 24px;
  display: flex;
  position: absolute;
  inset: 0;
}

.trust-onboarding-media-overlay span {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .9rem;
}

.trust-onboarding-media-overlay strong {
  font-size: 1.35rem;
}

.trust-onboarding-body {
  color: #ffffffe6;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  display: flex;
}

.trust-onboarding-body h3 {
  color: #f8fafc;
  margin: 0;
  font-size: 1.5rem;
}

.trust-onboarding-body p {
  margin: 0;
  line-height: 1.8;
}

.trust-onboarding-body ul {
  color: #ffffffd9;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.trust-onboarding-body li:before {
  content: "★";
  color: #ffd86d;
  margin-left: 8px;
}

.trust-onboarding-cta {
  cursor: pointer;
  color: #222;
  background: linear-gradient(120deg, #ffd86d, #ffb347);
  border: none;
  border-radius: 16px;
  margin-top: 4px;
  padding: 14px 18px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 15px 30px #ffd96d4d;
}

.trust-onboarding-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px #ffd96d66;
}

.trust-return-top {
  z-index: 10000;
  color: #1f2933;
  cursor: pointer;
  background: linear-gradient(120deg, #ffd86d, #ffb347);
  border: none;
  border-radius: 48px;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  position: fixed;
  bottom: 24px;
  right: 32px;
  box-shadow: 0 18px 40px #ffd86d73;
}

.trust-return-top span[aria-hidden="true"] {
  background: #fff6;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 1.2rem;
  display: inline-flex;
}

.trust-return-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px #ffd86d8c;
}

@media (max-width: 640px) {
  .trust-onboarding-body {
    padding: 20px;
  }

  .trust-onboarding-media-overlay strong {
    font-size: 1rem;
  }

  .trust-onboarding-body h3 {
    font-size: 1.25rem;
  }

  .trust-onboarding-body p {
    font-size: .95rem;
  }

  .trust-return-top {
    padding: 10px 16px;
    bottom: 16px;
    right: 16px;
  }

  .trust-return-top span[aria-hidden="true"] {
    width: 24px;
    height: 24px;
  }
}

.vpn-detector-overlay {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 10000;
  background: #000000b3;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: .3s ease-out vpnFadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes vpnFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.vpn-detector-modal {
  background: var(--card);
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 24px;
  width: 100%;
  max-width: 400px;
  padding: 32px;
  animation: .4s ease-out vpnSlideUp;
  box-shadow: 0 25px 50px #0000004d;
}

@keyframes vpnSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px)scale(.95);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.vpn-detector-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  animation: 2s ease-in-out infinite vpnPulse;
  display: flex;
}

.vpn-detector-icon svg {
  color: #fff;
  width: 36px;
  height: 36px;
}

@keyframes vpnPulse {
  0%, 100% {
    box-shadow: 0 0 #ff6b6b66;
  }

  50% {
    box-shadow: 0 0 0 15px #ff6b6b00;
  }
}

.vpn-detector-title {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 700;
}

.vpn-detector-location {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px 20px;
  display: flex;
}

.vpn-detector-flag {
  font-size: 3rem;
  line-height: 1;
}

.vpn-detector-location-info {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  display: flex;
}

.vpn-detector-country {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.vpn-detector-continent {
  color: var(--text-2);
  font-size: .85rem;
}

.vpn-detector-message {
  color: var(--text-2);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}

.vpn-detector-message strong {
  color: var(--text);
}

.vpn-detector-info {
  background: #ff6b6b1a;
  border: 1px solid #ff6b6b33;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 12px 16px;
  display: flex;
}

.vpn-detector-info svg {
  color: #ff6b6b;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.vpn-detector-info span {
  color: #ff6b6b;
  font-size: .9rem;
  font-weight: 500;
}

.vpn-detector-button {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s;
}

.vpn-detector-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #2c4bff4d;
}

.vpn-detector-button:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .vpn-detector-modal {
    border-radius: 20px;
    padding: 24px;
  }

  .vpn-detector-icon {
    width: 60px;
    height: 60px;
  }

  .vpn-detector-icon svg {
    width: 30px;
    height: 30px;
  }

  .vpn-detector-title {
    font-size: 1.3rem;
  }

  .vpn-detector-flag {
    font-size: 2.5rem;
  }
}

.password-toggle-wrapper {
  width: 100%;
  display: block;
  position: relative;
}

.password-toggle-wrapper input[type="password"], .password-toggle-wrapper input[type="text"] {
  text-align: left;
  direction: ltr;
  width: 100%;
  padding-left: 12px;
  padding-right: 44px;
  transition: padding .2s;
}

.password-toggle-button {
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  background: #0f1a3c0a;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 6px;
  font-size: 0;
  transition: color .2s, background .2s, box-shadow .2s;
  display: inline-flex;
  position: absolute;
  top: 50%;
  left: auto;
  right: 8px;
  transform: translateY(-50%);
}

.password-toggle-button:hover {
  color: var(--primary);
  background: #2c4bff1f;
  box-shadow: 0 8px 20px #2c4bff1f;
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/