/* Nordic Studios - color palette */
:root {
  /* Palette from design */
  --primary: #3b82f6;
  --secondary: #494d50;
  --danger: #de1818;
  --success: #40bf40;
  --bg-i: #111116;
  --bg-ii: #1c1c21;
  --fg-i: #f2f2f3;
  --fg-ii: #7d8082;
  /* Mapped for site use */
  --bg-main: var(--bg-i);
  --bg-nav: var(--bg-i);
  --bg-pill: var(--secondary);
  --bg-announcement: var(--bg-ii);
  --bg-button-dark: var(--bg-ii);
  --bg-docs-btn: var(--secondary);
  --accent-blue: var(--primary);
  --text-white: var(--fg-i);
  --text-gray: var(--fg-ii);
  --border-blue: var(--primary);
  --ribbon-red: var(--danger);
  --card-bg: var(--bg-ii);
  --tag-blue: var(--primary);
  --tag-updating: var(--secondary);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--secondary);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: var(--secondary);
}
body::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* Header - floating, centered */
.header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 32px 0;
}

.header {
  background: var(--bg-ii);
  min-height: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-menu-btn {
  display: none;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-radius: 8px;
}

.nav-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-link.active {
  background: var(--bg-pill);
  color: var(--text-white);
  font-weight: 600;
}

.nav-link.active svg {
  color: var(--accent-blue);
}

.nav-link:not(.active):hover {
  color: var(--text-white);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-fivem-username {
  font-size: 13px;
  color: var(--text-gray);
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-fivem-username:empty {
  display: none;
}

.header-fivem-username::before {
  content: 'Linked as ';
  color: var(--text-gray);
  opacity: 0.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}

a.btn {
  color: inherit;
}

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

.btn-discord {
  background: var(--accent-blue);
  color: var(--text-white);
}

.btn-cart {
  background: var(--bg-button-dark);
  color: var(--text-white);
  position: relative;
}

.btn-cart .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  background: var(--danger);
  color: var(--fg-i);
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-i);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  box-shadow: 0 0 0 1px rgba(222, 24, 24, 0.4);
}

.btn-cart .cart-count.cart-count--visible {
  visibility: visible;
  opacity: 1;
}

/* Cart side drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cart-drawer-overlay--open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--bg-ii);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow: hidden;
}

.cart-drawer--open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.cart-drawer-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

.cart-drawer-close {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-gray);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
}

.cart-drawer-empty {
  padding: 32px 24px;
  color: var(--text-gray);
  font-size: 15px;
}

.cart-drawer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.cart-drawer-items {
  list-style: none;
  margin: 0;
  padding: 16px 24px;
  overflow-y: auto;
  flex: 1;
}

.cart-drawer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-drawer-item:last-child {
  border-bottom: none;
}

.cart-drawer-item-info {
  flex: 1;
  min-width: 0;
}

.cart-drawer-item-name {
  display: block;
  font-weight: 600;
  color: var(--text-white);
  font-size: 14px;
  margin-bottom: 2px;
}

.cart-drawer-item-meta {
  font-size: 12px;
  color: var(--text-gray);
}

.cart-drawer-item-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-drawer-item-total {
  font-weight: 600;
  color: var(--text-white);
  font-size: 14px;
}

.cart-drawer .btn-remove-cart {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: transparent;
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer .btn-remove-cart:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
}

.cart-drawer-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-ii);
}

.cart-drawer-total {
  font-size: 16px;
  color: var(--text-white);
  margin: 0 0 12px;
}

.cart-drawer-total strong {
  color: var(--text-white);
}

.btn-cart-drawer-checkout {
  width: 100%;
  justify-content: center;
  background: var(--tag-blue);
  color: var(--text-white);
  border: none;
  padding: 12px 20px;
  font-size: 15px;
}

.btn-cart-drawer-checkout:hover {
  opacity: 0.95;
}

body.cart-drawer-open {
  overflow: hidden;
}

/* Announcement banner */
.announcement {
  background: var(--bg-announcement);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 28px;
}

.announcement-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}

.announcement-inner span {
  font-size: 13px;
  color: var(--text-gray);
}

.announcement-inner .percent {
  color: var(--accent-blue);
  font-weight: 700;
}

.announcement-inner .bold {
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero (Home) */
.hero {
  padding: 64px 24px 80px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #1d2433;
  border: 1px solid #20313c;
  border-radius: 99px;
  font-size: 14px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #e1e1e1;
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  color: var(--accent-blue);
}

.hero-title {
  font-size: 150px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.1;
  text-align: center;
}

.hero-title .line {
  display: block;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 8px;
  color: var(--text-white);
  font-size: 16px;
  text-decoration: none;
  font-family: inherit;
}

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

.btn-docs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-docs-btn);
  border: none;
  border-radius: 8px;
  color: var(--text-white);
  font-size: 16px;
  text-decoration: none;
  font-family: inherit;
}

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

/* Products page - section header */
.section-hero {
  padding: 48px 24px 40px;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #1d2433;
  border: 1px solid #20313c;
  border-radius: 99px;
  font-size: 13px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #e1e1e1;
  margin-bottom: 16px;
}

.section-badge svg {
  width: 14px;
  height: 14px;
  color: var(--text-white);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-white);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-gray);
}

/* Product grid */
.products-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
  justify-items: center;
}

.products-loading,
.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-gray);
  padding: 32px 16px;
}

/* Product card */
.product-card {
  width: 100%;
  max-width: 420px;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-card-image-wrap {
  padding: 16px 16px 0;
}

.product-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-ii);
  border-radius: 8px;
  overflow: hidden;
}

.product-card-image img,
.product-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.product-image-placeholder {
  background: linear-gradient(135deg, var(--bg-ii) 0%, var(--secondary) 50%, var(--bg-i) 100%);
}

.card-logo {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 4px;
  z-index: 1;
}

.product-card-body {
  padding: 20px;
}

.product-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.product-tags--center {
  justify-content: center;
}

.product-tag {
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #e1e1e1;
  background: #1d2433;
  border: 1px solid #20313c;
}

.product-tag.discount {
  background: var(--tag-blue);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.12);
}

.product-tag.updating {
  background: #1d2433;
  color: #e1e1e1;
  border: 1px solid #20313c;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 8px;
}

.product-price {
  font-size: 16px;
  color: var(--fg-ii);
  text-align: center;
  margin-bottom: 16px;
}

/* Purchase / Remove button - darker, blue highlight on hover; gray when Remove */
.product-card .btn-purchase-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid #2d4e88;
  background: #232c40;
  color: var(--fg-i);
  cursor: pointer;
  font-family: inherit;
  transition: background 200ms ease-in-out, border-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.product-card .btn-purchase-toggle:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.35);
}

.product-card .btn-purchase-toggle[data-in-cart="1"] {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--fg-i);
}

.product-card .btn-purchase-toggle[data-in-cart="1"]:hover {
  background: #5a5e62;
  border-color: #5a5e62;
  box-shadow: 0 0 0 2px rgba(125, 128, 130, 0.25);
}

.product-card .btn-purchase-toggle svg {
  width: 20px;
  height: 20px;
}

/* Cart page */
.cart-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.cart-page-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 24px;
}

.cart-loading,
.cart-empty {
  color: var(--text-gray);
  padding: 24px 0;
}

.cart-empty .btn-cart-page {
  display: inline-block;
  margin-top: 16px;
}

.cart-content {
  padding: 0;
}

.cart-items {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-bg);
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  display: block;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 13px;
  color: var(--text-gray);
}

.cart-item-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item-total {
  font-weight: 600;
  color: var(--text-white);
}

.btn-remove-cart {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: transparent;
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-remove-cart:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
}

.cart-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-total {
  font-size: 18px;
  color: var(--text-white);
  margin: 0;
}

.cart-total strong {
  color: var(--text-white);
}

.btn-cart-page {
  background: var(--tag-blue);
  color: var(--text-white);
  border: none;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}

.btn-cart-page:hover {
  opacity: 0.95;
}

a.btn-cart-page {
  display: inline-block;
}

/* Footer */
.footer {
  background: var(--bg-main);
  padding: 48px 24px 32px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  display: block;
  object-fit: contain;
  border-radius: 6px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a svg {
  width: 18px;
  height: 18px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
}

/* Product card link (products list) */
a.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Product detail page */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  align-items: start;
}

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

.product-detail-visual {
  position: sticky;
  top: 84px;
}

.product-detail-gallery {
  position: relative;
}

.product-detail-gallery-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-ii);
}

.product-detail-media-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.product-detail-media-item.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.product-detail-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease;
}

.product-detail-gallery-arrow:hover {
  background: rgba(0, 0, 0, 0.75);
}

.product-detail-gallery-arrow svg {
  width: 20px;
  height: 20px;
}

.product-detail-gallery-prev {
  left: 8px;
}

.product-detail-gallery-next {
  right: 8px;
}

.product-detail-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-detail-gallery-thumb {
  width: 64px;
  height: 36px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-ii);
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.product-detail-gallery-thumb:hover {
  opacity: 0.9;
}

.product-detail-gallery-thumb.is-active {
  border-color: var(--primary);
}

.product-detail-gallery-thumb img,
.product-detail-gallery-thumb .product-detail-gallery-thumb-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail-gallery-thumb-placeholder {
  background: linear-gradient(135deg, var(--bg-ii) 0%, var(--secondary) 50%, var(--bg-i) 100%);
}

.product-detail-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-ii);
}

.product-detail-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.product-detail-image-wrap {
  position: relative;
  background: var(--fg-i);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.product-detail-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-ii) 0%, var(--secondary) 50%, var(--bg-i) 100%);
  object-fit: contain;
}

.product-detail-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-info {
  text-align: left;
}

.product-detail-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-white);
  margin-bottom: 10px;
}

.product-detail-price {
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 14px;
}

.product-detail-tagline {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-white);
  margin-bottom: 24px;
}

.product-detail-desc {
  margin-bottom: 28px;
}

.product-detail-desc p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 14px;
}

.product-detail-desc p:last-child {
  margin-bottom: 0;
}

.product-detail-heading {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-white);
  margin-bottom: 12px;
  margin-top: 24px;
}

.product-detail-heading:first-of-type {
  margin-top: 0;
}

.product-detail-list {
  list-style: none;
  margin-bottom: 10px;
}

.product-detail-list li {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}

.product-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
}

.product-detail-list li strong {
  color: var(--text-white);
  font-weight: 600;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

.btn-connect-discord {
  background: var(--secondary);
  color: var(--text-white);
}

.btn-purchase-detail {
  background: #232c40;
  border: 1px solid #2d4e88;
  color: var(--fg-i);
  transition: background 200ms ease-in-out, border-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.btn-purchase-detail:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.35);
}

.btn-purchase-detail[data-in-cart="1"] {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--fg-i);
}

.btn-purchase-detail[data-in-cart="1"]:hover {
  background: #5a5e62;
  border-color: #5a5e62;
  box-shadow: 0 0 0 2px rgba(125, 128, 130, 0.25);
}

.btn-gift {
  background: var(--secondary);
  color: var(--text-white);
}

/* ========== Mobile ========== */
@media (max-width: 768px) {
  .header-wrap {
    padding: 10px 12px 0;
  }

  .header {
    min-height: 64px;
    height: auto;
    padding: 12px 14px;
    border-radius: 10px;
    justify-content: flex-end;
  }

  .header.menu-open .header-right {
    position: relative;
    z-index: 100;
  }

  .header-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    cursor: pointer;
  }

  .header-menu-btn:hover {
    background: rgba(255, 255, 255, 0.14);
  }

  .header-menu-btn .header-menu-icon,
  .header-menu-btn .header-menu-icon-close {
    width: 28px;
    height: 28px;
    display: block;
  }

  .header-menu-btn .header-menu-icon-close {
    display: none;
  }

  .header.menu-open .header-menu-btn .header-menu-icon {
    display: none;
  }

  .header.menu-open .header-menu-btn .header-menu-icon-close {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-ii);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 60px 24px 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .header.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 16px 28px;
    font-size: 18px;
    justify-content: center;
    min-height: 52px;
  }

  .nav-link svg {
    width: 22px;
    height: 22px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-actions .btn {
    padding: 14px 18px;
    font-size: 15px;
    min-height: 52px;
    min-width: 52px;
  }

  .header-actions .btn svg {
    width: 24px;
    height: 24px;
  }

  .header-actions .btn-label {
    display: none;
  }

  .header-fivem-username {
    max-width: 100px;
    font-size: 11px;
    padding: 4px 8px;
  }

  .announcement {
    height: 32px;
    margin-top: 12px;
  }

  .announcement-inner span {
    font-size: 11px;
  }

  .hero {
    padding: 32px 16px 48px;
  }

  .hero-badge {
    font-size: 13px;
    padding: 5px 12px;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: clamp(36px, 11vw, 60px);
    margin-bottom: 14px;
  }

  .hero-desc {
    font-size: 16px;
    margin-bottom: 26px;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn-browse,
  .btn-docs {
    padding: 12px 22px;
    font-size: 15px;
  }

  .btn-browse svg,
  .btn-docs svg {
    width: 20px;
    height: 20px;
  }

  .section-hero {
    padding: 32px 16px 28px;
  }

  .section-badge {
    font-size: 11px;
    padding: 4px 10px;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .products-wrap {
    padding: 24px 12px 48px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .product-card {
    max-width: 100%;
  }

  .product-card-image-wrap {
    padding: 10px 10px 0;
  }

  .product-card-body {
    padding: 14px;
  }

  .product-tag {
    font-size: 11px;
    padding: 3px 10px;
  }

  .product-name {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .product-price {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .product-card .btn-purchase-toggle {
    width: calc(100% - 28px);
    margin: 0 14px 14px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .product-card .btn-purchase-toggle svg {
    width: 18px;
    height: 18px;
  }

  .product-detail {
    padding: 24px 12px 48px;
    gap: 28px;
  }

  .product-detail-visual {
    top: 66px;
  }

  .product-detail-title {
    font-size: 22px;
  }

  .product-detail-price {
    font-size: 17px;
  }

  .product-detail-tagline {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .product-detail-desc p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .product-detail-heading {
    font-size: 13px;
    margin-top: 18px;
    margin-bottom: 10px;
  }

  .product-detail-list li {
    font-size: 14px;
  }

  .product-detail-actions {
    margin-top: 24px;
    gap: 10px;
  }

  .btn-product {
    padding: 10px 18px;
    font-size: 14px;
  }

  .product-detail-gallery-arrow {
    width: 36px;
    height: 36px;
  }

  .product-detail-gallery-arrow svg {
    width: 18px;
    height: 18px;
  }

  .product-detail-gallery-thumb {
    width: 52px;
    height: 30px;
  }

  .cart-page {
    padding: 24px 12px 48px;
  }

  .cart-page-title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .cart-item {
    padding: 12px 14px;
    gap: 12px;
  }

  .cart-item-name {
    font-size: 14px;
  }

  .cart-item-meta {
    font-size: 12px;
  }

  body.header-menu-open {
    overflow: hidden;
  }
}
