/* designed by https://legitgaming.org */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,700;1,900&family=Barlow:wght@300;400;500;600&display=swap');
:root {
  --black:   #080808;
  --black2:  #0d0d0d;
  --black3:  #121212;
  --black4:  #1a1a1a;
  --lime:    var(--cl-accent, #c8ff00);
  --lime-rgb: var(--cl-accent-rgb, 200,255,0);
  --lime-dim:  rgba(var(--cl-accent-rgb, 200,255,0), 0.08);
  --lime-glow: rgba(var(--cl-accent-rgb, 200,255,0), 0.18);
  --lime-border: rgba(var(--cl-accent-rgb, 200,255,0), 0.15);
  --red:     #ff3333;
  --white:   #f0f0f0;
  --grey:    #888888;
  --grey2:   #444444;
  --grey3:   #222222;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.04);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

:root {
  --bs-primary:            var(--cl-accent, #c8ff00);
  --bs-primary-rgb:        var(--cl-accent-rgb, 200,255,0);
  --bs-link-color:         var(--cl-accent, #c8ff00);
  --bs-body-bg:            var(--cl-background-primary, #080808);
  --bs-body-bg-rgb:        var(--cl-background-primary-rgb, 8,8,8);
  --bs-gray-bg:            var(--cl-background-secondary, #0d0d0d);
  --bs-gray-bg-rgb:        var(--cl-background-secondary-rgb, 13,13,13);
  --bs-border-color:       var(--cl-border, rgba(255,255,255,0.07));
  --bs-border-color-rgb:   var(--cl-border-rgb, 255,255,255);
  --bs-border-radius:      0px;
  --bs-body-color:         #f0f0f0;
  --bs-body-font-family:   var(--font-body);
}

*, *::before, *::after { box-sizing: border-box; }

body {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: crosshair;
}

body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px
  );
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 0; }

[x-cloak] { display: none !important; }

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield !important; }

.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }

.px-32 { padding-left: 8rem; padding-right: 8rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-5-nav { padding-top: calc(74px + 1.5rem); padding-bottom: 1.5rem; }
.bg-gray { background: var(--black2); }
.whitespace-pre-line { white-space: pre-line; }
.size-5 { width: 1.25rem; height: 1.25rem; }
.size-3\.5 { width: 0.875rem; height: 0.875rem; }

.bg-image {
  position: fixed; inset: 0; z-index: -1;
  background-position: center; background-size: cover; pointer-events: none;
}

/* ─── BOOTSTRAP FORM OVERRIDES ─── */
.bg-primary-dark { background-color: var(--lime); }

.form-check-input { --bs-form-check-bg: var(--black3); }
.form-check-input:checked,
form-check-input[type=checkbox]:indeterminate { background-color: var(--lime); border-color: var(--lime); }

.form-range::-webkit-slider-thumb,
.form-range::-moz-range-thumb { background-color: var(--lime); }

.form-control:focus, .form-select:focus,
.form-check-input:focus,
.form-range:focus::-webkit-slider-thumb,
.form-range:focus::-moz-range-thumb,
.nav-link:focus-visible {
  border-color: var(--lime);
  box-shadow: 0 0 0 2px rgba(var(--lime-rgb), .15);
}

.form-control:disabled, .form-select:disabled { background-color: initial; }

.form-control, .form-select {
  background-color: var(--black3);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 0;
  transition: border-color .15s;
}
.form-control:hover, .form-select:hover { border-color: rgba(255,255,255,0.14); }
.form-control::placeholder, .form-select::placeholder { color: var(--grey); }
.form-control:focus, .form-select:focus { background-color: var(--black3); color: var(--white); }

/* ─── BUTTONS — exact clip-path from store2 ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 10px 22px; cursor: pointer;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all .15s;
}

/* Primary = lime button */
.btn-primary {
  --bs-btn-bg: var(--lime);
  --bs-btn-border-color: var(--lime);
  --bs-btn-hover-bg: var(--lime);
  --bs-btn-hover-border-color: var(--lime);
  --bs-btn-active-bg: var(--lime);
  --bs-btn-active-border-color: var(--lime);
  --bs-btn-disabled-bg: var(--lime);
  --bs-btn-disabled-border-color: var(--lime);
  color: var(--black) !important;
  font-weight: 900;
}
.btn-primary:hover {
  background: var(--lime) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(var(--lime-rgb), .4) !important;
}

/* Outline = store2 .btn-outline */
.btn-outline-primary {
  --bs-btn-color: var(--white);
  --bs-btn-border-color: var(--grey2);
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-color: var(--lime);
  --bs-btn-hover-border-color: var(--lime);
  --bs-btn-active-bg: var(--lime-dim);
  --bs-btn-active-border-color: var(--lime);
  --bs-btn-active-color: var(--lime);
  --bs-btn-disabled-color: var(--grey);
  --bs-btn-disabled-border-color: var(--grey2);
  background: transparent;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-outline-primary:hover { border-color: var(--lime) !important; color: var(--lime) !important; }

.btn-outline-secondary, .btn-secondary {
  background: transparent; color: var(--grey);
  border: 1px solid var(--grey2);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-outline-secondary:hover, .btn-secondary:hover { border-color: var(--lime); color: var(--lime); }

.c-title {
  color: #c8ff00;
}
/* ─── DROPDOWNS ─── */
.dropdown-menu, .dropdown-menu-dark {
  --bs-dropdown-bg: var(--black3);
  --bs-dropdown-border-color: var(--border);
  --bs-dropdown-link-color: var(--white);
  --bs-dropdown-link-hover-bg: var(--lime-dim);
  --bs-dropdown-link-hover-color: var(--lime);
  --bs-dropdown-link-active-bg: var(--lime);
  --bs-dropdown-link-active-color: var(--black);
  border-radius: 0;
}

/* ─── PILLS / PAGINATION ─── */
.nav-pills { --bs-nav-pills-link-active-bg: var(--lime); --bs-nav-pills-link-active-color: var(--black); }
.pagination {
  --bs-pagination-active-bg: var(--lime);
  --bs-pagination-active-border-color: var(--lime);
  --bs-pagination-active-color: var(--black);
  --bs-pagination-bg: var(--black3);
  --bs-pagination-color: var(--grey);
  --bs-pagination-border-color: var(--border);
  --bs-pagination-hover-bg: var(--lime-dim);
  --bs-pagination-hover-color: var(--lime);
  --bs-pagination-hover-border-color: var(--lime);
}
.pagination .page-item:not(.active) .page-link { color: var(--grey); background-color: var(--black3); border-color: var(--border); }
.progress, .progress-stacked { --bs-progress-bar-bg: var(--lime); }
.list-group {
  --bs-list-group-active-bg: var(--lime);
  --bs-list-group-active-border-color: var(--lime);
  --bs-list-group-active-color: var(--black);
  --bs-list-group-bg: var(--black3);
  --bs-list-group-border-color: var(--border);
  --bs-list-group-color: var(--white);
}

/* ─── NAVBAR — store2 nav style ─── */
.navbar {
  background: rgba(8,8,8,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Brand = nav-logo style */
.navbar .navbar-brand {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0 1.5rem 0 0;
  border-right: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 26px; font-weight: 900; font-style: italic;
  letter-spacing: -1px; text-transform: uppercase;
  color: var(--white); transition: color .15s;
  text-decoration: none;
}
.navbar .navbar-brand:hover { color: var(--lime); }
.navbar .navbar-brand img { max-height: 2.5rem; }

.navbar .navbar-collapse { justify-content: flex-end; }
.navbar .navbar-toggler, .navbar .navbar-toggler:focus { border: 0; box-shadow: none; }
.navbar .navbar-toggler .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar .navbar-toggler:focus .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Nav links = exact store2 .nav-links a */
.navbar .nav-link {
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--grey); transition: color .15s;
  position: relative; padding-bottom: 0.3rem;
}
.navbar .nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--lime); transition: width .2s;
}
/* designed by https://legitgaming.org */
.navbar .nav-link:hover { color: var(--white); }
.navbar .nav-link:hover::after { width: 100%; }
.navbar .nav-item a.nav-link.active { color: var(--lime); }
.navbar .nav-item a.nav-link.active::after { width: 100%; }

.navbar .user .btn, .navbar .cart .btn {
  position: relative;
  --bs-btn-padding-x: 0.6rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.navbar .user .btn:not(.btn-outline-primary) .icon,
.navbar .cart .btn:not(.btn-outline-primary) .icon { width: 1.4rem; height: 1.4rem; }
.navbar .user .btn.btn-outline-primary .icon,
.navbar .cart .btn.btn-outline-primary .icon { width: 1.125rem; height: 1.125rem; }

.navbar .cart .btn .count {
  position: absolute; top: -0.5rem; right: -0.5rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.125rem; height: 1.125rem;
  background: var(--lime); color: var(--black);
  font-size: 0.6rem; font-weight: 900; border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 4px, 100% 100%, 4px 100%, 0 calc(100% - 4px));
}
/* designed by https://legitgaming.org */
@media screen and (min-width: 992px) {
  .navbar .navbar-collapse .navbar-nav { gap: 1.5rem; }
}

/* ─── FOOTER ─── */
footer.footer {
  background: var(--black2);
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
footer.footer::before {
  content: '';
  position: absolute; bottom: -40px; right: -40px;
  width: 400px; height: 400px;
  background: radial-gradient(circle at bottom right, rgba(var(--lime-rgb), 0.04), transparent 65%);
  pointer-events: none;
}
.footer .logo {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
  font-family: var(--font-display); font-size: 24px; font-weight: 900;
  font-style: italic; text-transform: uppercase; letter-spacing: -1px; color: var(--white);
}
.footer .logo img { max-height: 2.5rem; }
.footer .logo p { margin-bottom: 0; }
.footer h5 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 12px; font-weight: 800; letter-spacing: 3px; margin-bottom: 1rem;
  color: var(--white);
}
.footer .nav li a { padding: 0; font-size: 14px; color: var(--grey); transition: color .15s; }
.footer .nav li a:hover { color: var(--lime); }

/* Push footer */
.flex-wrapper { min-height: 100vh; display: flex; flex-direction: column; justify-content: space-between; }

/* ─── SECTION TITLE ─── */
.section-title {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin: 0 0 2rem 0;
}
.section-title h1, .section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; font-style: italic;
  text-transform: uppercase; letter-spacing: -1px; line-height: .95;
}
.section-title h1, .section-title h2, .section-title p { margin-bottom: 0; }
.section-title p { font-size: 14px; color: var(--grey); }
@media (min-width: 768px) {
  .section-title p { padding-left: 1.5rem; border-left: 2px solid var(--lime); }
}
.section-subtitle { display: flex; align-items: center; margin: -1rem 0 2rem 0; }

/* section s-label style */
.section-title::before {
  content: '//';
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  color: var(--lime); opacity: .5; letter-spacing: 2px;
  display: none;
}

/* ─── ANNOUNCEMENT — lime bar like store2 ticker ─── */
.announcement {
  padding: 0.5rem 0; text-align: center;
  background: var(--lime); color: var(--black);
  font-family: var(--font-display); font-weight: 900;
  font-size: 13px; text-transform: uppercase; letter-spacing: 2px;
  border-bottom: none; overflow: hidden;
}
.announcement a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--black); font-weight: 900;
}
.announcement a svg { width: 1.1rem; height: 1.1rem; }

/* ─── HERO — exact store2 hero ─── */
.hero {
  display: flex; align-items: center; justify-content: center;
  position: relative; background-size: cover; overflow: hidden;
  min-height: 100vh;
}

/* Grid pattern — exact store2 */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(var(--lime-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--lime-rgb), 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Corner glow — exact store2 */
.hero::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle at top left, rgba(var(--lime-rgb), 0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.bg-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.25) 50%, rgba(8,8,8,0.75) 100%);
}
/* designed by https://legitgaming.org */
.hero .container {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 2rem; padding: 6rem 2rem; z-index: 1; position: relative;
}
.hero .content { text-align: center; margin: 0 auto; max-width: 820px; }

/* h1 — store2 hero-title style */
.hero .content h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 900; font-style: italic;
  line-height: .92; letter-spacing: -3px;
  text-transform: uppercase; margin-bottom: 1.5rem;
  color: var(--white);
}

.hero .content p {
  font-size: 16px; color: var(--grey); max-width: 460px;
  margin: 0 auto 2rem auto; line-height: 1.65;
}
.hero .content a { margin-bottom: 2.5rem; }

/* Stats — store2 hero-ticker style */
.hero .content .stats {
  display: inline-flex; justify-content: center; flex-wrap: wrap;
  gap: 1.5rem; padding: 1.2rem 2rem;
  margin: 0 auto;
  background: transparent;
}
.hero .content .stats div {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.hero .content .stats div .value {
  font-family: var(--font-display); font-weight: 900; font-size: 2rem;
  color: var(--lime); line-height: 1; letter-spacing: -1px;
}
.hero .content .stats div .value svg { width: 1.1rem; height: 1.1rem; vertical-align: -0.125rem; }
.hero .content .stats div .label {
  font-size: 12px; color: var(--grey);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 2px;
}

/* Search bar */
.hero .search-modal { --bs-modal-width: 700px; }
.hero .fake-searchbar { margin: 0 auto 2rem auto; }
.hero .fake-searchbar, .hero .search-modal .searchbar { width: 100%; position: relative; }
.hero .fake-searchbar input, .hero .search-modal .searchbar input {
  background: rgba(8,8,8,0.8); border: 1px solid var(--border);
  padding: 1rem 2rem 1rem 4rem; color: var(--white); border-radius: 0;
}
.hero .fake-searchbar input::placeholder { color: var(--grey); }
.hero .fake-searchbar input:focus, .hero .search-modal .searchbar input:focus {
  background: rgba(12,12,12,0.9); border-color: var(--lime);
  box-shadow: none; color: var(--white);
}
.hero .fake-searchbar svg, .hero .search-modal .searchbar svg {
  position: absolute; top: 0; bottom: 0; margin: auto; left: 1.25rem;
  fill: var(--grey); width: 1.2rem; height: 1.2rem;
}
.hero .search-modal .products { display: flex; flex-direction: column; gap: 0.75rem; }
.hero .search-modal .product {
  display: flex; justify-content: space-between; gap: 1rem;
  text-decoration: initial; color: initial;
  background: var(--black3); border: 1px solid var(--border);
  padding: 0.75rem; transition: border-color .15s;
}
.hero .search-modal .product:hover { border-color: rgba(var(--lime-rgb), .3); }
.hero .search-modal .product .left { flex: 1; display: flex; gap: 1rem; }
.hero .search-modal .product .image {
  width: 20%; display: flex; justify-content: center; align-items: center;
  position: relative; max-height: 96px; background: var(--black4); border-radius: 0;
}
.hero .search-modal .product .image img { border-radius: 0; }
.hero .search-modal .product .image .product-img-placeholder svg { width: 48px; height: 48px; }
.hero .search-modal .product .image .badges {
  position: absolute; top: 0.25rem; left: 0.25rem;
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.hero .search-modal .product .image .badges div {
  background: var(--lime); color: var(--black);
  font-size: 10px; font-weight: 800; padding: 2px 8px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  display: flex; align-items: center; gap: 0.25rem;
}
.hero .search-modal .product .text { flex: 1; color: var(--white); }
.hero .search-modal .product h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  text-transform: uppercase; margin-bottom: 0.35rem;
}
.hero .search-modal .product p { font-size: 13px; margin-bottom: 0; color: var(--grey); }
.hero .search-modal .product .right { display: none; }

@media (min-width: 468px) {
  .hero .content .stats { gap: 2rem; }
  .hero.alignment-left .content .stats { justify-content: flex-start; }
  .hero.alignment-right .content .stats { justify-content: flex-end; }
  .hero .search-modal .product .left .stock { display: none; }
  .hero .search-modal .product .right { display: block; }
}

@media (min-width: 768px) {
  .hero { min-height: 100vh; }
  .hero.height-short { min-height: unset; }
  .hero.height-medium { min-height: 60vh; }
  .hero .container { padding: 7rem 2rem; }
  .hero .content { min-width: 60%; }
  .hero .fake-searchbar { max-width: 600px; }
  .hero.alignment-left .container, .hero.alignment-right .container { flex-direction: row; justify-content: space-between; }
  .hero.alignment-left .content, .hero.alignment-right .content { margin: 0; padding: 0; }
  .hero.alignment-left .content { text-align: left; }
  .hero.alignment-right .content { text-align: right; order: 1; }
  .hero.alignment-left .fake-searchbar { margin-left: 0; margin-right: 0; }
  .hero.alignment-right .fake-searchbar { margin-left: auto; margin-right: 0; }
  .hero.alignment-left .content p { margin-left: 0; margin-right: 0; }
  .hero.alignment-left .content .stats { margin: 0; }
}

/* ─── SOCIALS — store2 social-chip style ─── */
.socials {
  background: var(--black2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
}
.socials .list .social {
  display: flex; justify-content: space-between;
  background: var(--black); border: 1px solid var(--border);
  padding: 1rem 1.25rem; margin-bottom: var(--bs-gutter-x);
  text-decoration: none; color: var(--white);
  transition: border-color .15s, background .15s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.socials .list .social:hover { border-color: var(--lime); background: var(--lime-dim); color: var(--lime); }
.socials .list .social .left {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 15px; letter-spacing: 1px;
}
.socials .list .social .left svg {
  display: inline-flex; padding: 0.5rem; aspect-ratio: 1;
  background-color: var(--lime); color: var(--black);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.socials .list .social .right svg { width: 1.3rem; height: 1.3rem; }
@media (min-width: 992px) { .socials .list .social { margin-bottom: 0; } }

/* ─── CTA BLOCKS ─── */
.cta-text-image {
  display: flex; flex-direction: column;
  background: var(--black2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-text-image .content { padding: 5rem 2rem; }
.cta-text-image .content .subtitle {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px; color: var(--lime);
  margin-bottom: 12px;
}
.cta-text-image .content .subtitle::before { content: '// '; opacity: .5; }
.cta-text-image .content .title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900; font-style: italic; text-transform: uppercase;
  letter-spacing: -2px; line-height: .95; margin-bottom: 1.5rem;
}
.cta-text-image .content .description { font-size: 15px; color: var(--grey); margin-bottom: 2rem; line-height: 1.65; }
.cta-text-image .image { background-repeat: no-repeat; background-position: top; background-size: cover; width: 100%; height: 100%; min-height: 300px; }
@media (min-width: 768px) { .cta-text-image { flex-direction: row; } .cta-text-image .content { padding: 5rem 6rem; } }

.cta-text-center {
  background: var(--black2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-text-center .content { padding: 5rem 2rem; }
.cta-text-center .content .subtitle {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px; color: var(--lime); margin-bottom: 12px;
}
.cta-text-center .content .title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900; font-style: italic; text-transform: uppercase;
  letter-spacing: -2px; line-height: .95; margin-bottom: 2rem;
}
@media (min-width: 768px) { .cta-text-center .content { padding: 7rem 0; } }

/* ─── PRODUCTS — exact store2 p-card ─── */
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.chips .btn {
  clip-path: none; border-radius: 0;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 6px 16px; background: transparent;
  border: 1px solid var(--grey3); color: var(--grey);
  transition: all .15s;
}
.chips .btn.active, .chips .btn:hover { border-color: var(--lime); color: var(--lime); background: var(--lime-dim); }

.products .card {
  position: relative; border-radius: 0;
  border: none;
  background: var(--black);
  transition: background .2s;
  overflow: hidden;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.products .card:hover { transform: none; background: var(--black3); }

.products .card .card-img-top {
  display: flex; justify-content: center; align-items: center; position: relative;
  background: var(--black2);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.products .card .card-img-top img, .products .card .card-img-top svg { border-radius: 0; }

/* Overlay — store2 p-thumb-overlay + p-buy-btn */
.products .card .card-img-top .overlay {
  position: absolute; bottom: -52px; left: 0; right: 0;
  text-align: center;
  transition: bottom .25s cubic-bezier(.16,1,.3,1);
  opacity: 1;
}
.products .card:hover .card-img-top .overlay { bottom: 0; opacity: 1; }

.products .card .card-img-top .overlay .btn {
  width: 100%;
  background: var(--lime) !important; color: var(--black) !important;
  font-family: var(--font-display); font-size: 15px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 14px; border-radius: 0; border: none;
  clip-path: none; transform: none;
}
.products .card .card-img-top .overlay .btn:hover {
  background: var(--lime) !important;
  box-shadow: none !important; transform: none !important;
}

/* Hover tint overlay — store2 p-thumb-overlay */
.products .card .card-img-top::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(var(--lime-rgb), .06);
  opacity: 0; transition: opacity .2s; pointer-events: none;
}
.products .card:hover .card-img-top::after { opacity: 1; }

/* Badges — store2 p-tag */
.products .card .card-img-top .badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap;
}
.products .card .card-img-top .badges div {
  background: var(--lime); color: var(--black);
  font-size: 11px; font-weight: 800; padding: 4px 10px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  display: flex; align-items: center; gap: 0.25rem;
}

/* card-body info row */
.product-img-placeholder svg { width: 96px; height: 96px; color: var(--grey3); }
.product-img-placeholder svg.large { width: 256px; height: 256px; }

/* .info = p-cat + p-price area */
.products .card .info {
  display: flex; justify-content: space-between;
  color: var(--grey); font-size: 11px; margin-bottom: 6px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--lime); /* category = lime */
}
.products .card .info p { margin-bottom: 0; color: var(--lime); }
.products .card .info .price {
  font-family: var(--font-display); font-size: 28px; font-weight: 900;
  color: var(--lime); letter-spacing: -1px; line-height: 1;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* card-title = p-name */
.products .card .card-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.3px; margin-bottom: 0; line-height: 1.1;
  color: var(--white);
}

/* stock */
.stock-indicator { pointer-events: none; }
.stock-unlimited { display: inline-flex; gap: 0.5rem; align-items: center; }
.stock-unlimited svg { width: 1rem; height: 1rem; color: var(--lime); }

/* ─── FEATURES — exact store2 f-card ─── */
.features .list .feature {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 36px 32px; margin-bottom: 2px;
  background: var(--black); border: none;
  border-top: none;
  position: relative; overflow: hidden;
  transition: background .2s;
}
.features .list .feature:hover { background: var(--black3); }
/* top lime bar on hover — store2 f-card:hover::after */
.features .list .feature::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--lime); transform: scaleX(0); transition: transform .2s;
}
.features .list .feature:hover::after { transform: scaleX(1); }

/* icon = store2 f-icon */
.features .list .feature i {
  font-size: 22px; margin-bottom: 20px; color: var(--lime);
  width: 48px; height: 48px; background: var(--lime-dim); border: 1px solid var(--lime-border);
  display: flex; align-items: center; justify-content: center;
}
.features .list .feature svg {
  width: 48px; height: 48px; margin-bottom: 20px; color: var(--lime);
  background: var(--lime-dim); border: 1px solid var(--lime-border);
  padding: 12px;
}
.features .list .feature .title {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.3px; margin-bottom: 10px; color: var(--white);
}
.features .list .feature .description { font-size: 14px; color: var(--grey); line-height: 1.7; padding: 0; }

/* ─── SINGLE PRODUCT PAGE ─── */
.product-wrapper { min-height: calc(100vh - 257px); }
.product-wrapper .carousel img { border-radius: 0; }
.product-wrapper .thumbnails { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-top: 0.5rem; }
.product-wrapper .thumbnails button { border: 1px solid var(--border); padding: 0; background: var(--black3); transition: all .15s; border-radius: 0; }
.product-wrapper .thumbnails button:not(.active) { opacity: 0.5; }
.product-wrapper .thumbnails button:hover { border-color: var(--lime); opacity: 1; }
.product-wrapper .thumbnails button img { width: 100%; height: 100%; object-fit: scale-down; }

.product-wrapper .badges { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.product-wrapper .badges div, .product-wrapper .badges a {
  background: var(--lime); color: var(--black);
  font-size: 11px; font-weight: 800; padding: 4px 10px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  display: flex; align-items: center; gap: 0.4rem; text-decoration: none;
}

.product-tabs .editor p { margin-bottom: 0; }
.product-wrapper .buy-buttons .btn svg { width: 1.2rem; height: 1.2rem; }
.input-group-btn svg { width: 24px; height: 24px; }

/* Variants — store2 p-card mini style */
.variants { display: flex; flex-direction: column; gap: 2px; }
.variants .variant {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 0.5rem; border: 0; position: relative; padding: 12px 16px;
  background: var(--black); border: 1px solid var(--border);
  cursor: pointer; transition: all .15s; border-radius: 0;
}
.variants .variant:hover { border-color: rgba(var(--lime-rgb), .3); background: var(--black3); }
.variants .variant.active { background: var(--black3); border-color: var(--lime); }
.variants .variant .name-stock { text-align: left; }
.variants .variant .name, .variants .variant .stock { margin-bottom: 0; }
.variants .variant .name {
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  text-transform: uppercase; letter-spacing: -.3px; color: var(--white);
}
.variants .variant .description { font-size: 13px; color: var(--grey); white-space: pre-line; }
.variants .variant .stock { font-size: 11px; color: var(--grey); text-transform: uppercase; letter-spacing: .5px; }
.variants .variant .price {
  font-family: var(--font-display); font-size: 28px; font-weight: 900;
  color: var(--lime); letter-spacing: -1px; line-height: 1;
  background: transparent;
}
.variants .variant .active-indicator { position: absolute; top: -10px; right: -4px; z-index: 1; background: var(--black3); border-radius: 20px; }
.variants .variant .active-indicator svg { width: 22px; height: 22px; color: var(--lime); }

/* Add-ons */
.addon-item { border: 1px solid var(--border); background-color: var(--black3); transition: all 0.15s; }
.addon-item:hover { background-color: var(--black); border-color: rgba(var(--lime-rgb), .3); }
.addon-image { width: 48px; height: 48px; object-fit: cover; border: 1px solid var(--border); }
.btn-addon-add { background-color: var(--lime-dim); border-color: var(--lime-border); color: var(--lime); min-width: 112px; }
.btn-addon-add:hover { background-color: rgba(var(--lime-rgb), .15); border-color: var(--lime); color: var(--lime); }
.btn-addon-remove { background-color: rgba(var(--bs-danger-rgb), 0.1); border-color: rgba(var(--bs-danger-rgb), 0.2); color: var(--bs-danger); min-width: 112px; }
.btn-addon-remove:hover { background-color: rgba(var(--bs-danger-rgb), 0.2); border-color: var(--bs-danger); color: var(--bs-danger); }

.live-stats svg { width: 1.2rem; height: 1.2rem; color: var(--lime); }
.live-stats p { margin-bottom: 0; flex: 1; }

/* ─── TESTIMONIALS — exact store2 testi-card ─── */
.testimonials .col-12 { margin-bottom: 2px; }
.testimonial {
  display: flex; flex-direction: column; justify-content: space-between;
  height: 100%;
  background: var(--black); border: none; border-radius: 0;
  margin-bottom: 0;
  position: relative; overflow: hidden; transition: background .2s;
}
.testimonial::before {
  content: '"';
  position: absolute; top: 16px; right: 24px;
  font-family: var(--font-display); font-size: 80px; font-weight: 900;
  color: rgba(var(--lime-rgb), .08); line-height: 1; pointer-events: none;
}
.testimonial:hover { background: var(--black3); }

.testimonial .header {
  display: flex; justify-content: space-between;
  padding: 1.5rem 1.5rem 0 1.5rem; margin-bottom: 0.5rem;
}
.testimonial .header svg { width: 2rem; height: 2rem; color: rgba(255,255,255,0.06); }
.testimonial .header p { font-size: 13px; margin-bottom: 0; color: var(--grey); }
.testimonial .stars svg { width: 0.9rem; height: 0.9rem; color: #ffd700; }

.testimonial .content { padding: 0 1.5rem; }
.testimonial .content .message {
  font-size: 14px; word-break: break-word;
  color: var(--grey); line-height: 1.75; font-style: italic;
}
.testimonial .content .reply { margin-bottom: 1rem; padding: 0.75rem; background: rgba(0,0,0,0.3); }
.testimonial .content .reply .text {
  margin: 0; font-size: 13px; padding-left: 0.5rem;
  border-left: 2px solid var(--lime); word-break: break-word; color: var(--grey);
}
.testimonial .content .reply .author { font-size: 12px; margin: 0.75rem 0 0 0; text-align: right; color: var(--grey); }
.testimonial .content .reply .author span { color: var(--lime); font-family: var(--font-display); font-weight: 700; }

.testimonial .footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 0.75rem 1.5rem;
  background: rgba(0,0,0,0.15); border-top: 1px solid var(--border2);
  color: var(--grey); font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.testimonial .footer .items { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.testimonial .footer .date { font-family: var(--font-display); font-weight: 700; letter-spacing: .5px; color: var(--grey); }

/* ─── BLOCKS ─── */
.bg-block-primary { background-color: var(--black); }
.bg-block-secondary { background-color: var(--black2); }

.text-block.alignment-center, .text-image-block.alignment-center, .text-video-block.alignment-center { text-align: center; }
.text-block.alignment-center .section-title, .text-block.alignment-center .section-subtitle,
.text-image-block.alignment-center .section-title, .text-image-block.alignment-center .section-subtitle,
.text-video-block.alignment-center .section-title, .text-video-block.alignment-center .section-subtitle { justify-content: center; }
.text-block.alignment-right, .text-image-block.alignment-right, .text-video-block.alignment-right { text-align: right; }
.text-block.alignment-right .section-title, .text-image-block.alignment-right .section-title,
.text-video-block.alignment-right .section-title { justify-content: flex-end; }
.text-image-block.alignment-right .row, .text-video-block.alignment-right .row { flex-direction: row-reverse; }
.text-image-block .section-subtitle, .text-video-block .section-subtitle { margin: -1rem 0 1rem 0; }
.text-image-block .row, .text-video-block .row { --bs-gutter-y: 2rem; }
.text-image-block img, .text-video-block iframe {
  width: 100%; border-radius: 0;
  border: 1px solid var(--border);
}
.text-image-block .aspect-16\/9 img, .text-image-block .aspect-4\/3 img, .text-image-block .aspect-1\/1 img { width: 100%; height: 100%; object-fit: scale-down; border-radius: 0; }
.text-image-block .aspect-16\/9 img { aspect-ratio: 16/9; }
.text-image-block .aspect-4\/3 img { aspect-ratio: 4/3; }
.text-image-block .aspect-1\/1 img { aspect-ratio: 1/1; }
.text-video-block .video-wrapper { display: flex; justify-content: center; }
.text-video-block iframe { aspect-ratio: 16/9; }
.image-gallery .row { --bs-gutter-x: 2px; --bs-gutter-y: 2px; }
.image-gallery .aspect-16\/9 img, .image-gallery .aspect-4\/3 img, .image-gallery .aspect-1\/1 img { width: 100%; height: 100%; object-fit: scale-down; border-radius: 0; }
.image-gallery .aspect-16\/9 img { aspect-ratio: 16/9; }
.image-gallery .aspect-4\/3 img { aspect-ratio: 4/3; }
.image-gallery .aspect-1\/1 img { aspect-ratio: 1/1; }

/* ─── FAQ — exact store2 faq ─── */
.faq .accordion {
  --bs-accordion-btn-bg: var(--black);
  --bs-accordion-active-bg: var(--black2);
  --bs-accordion-border-color: var(--border);
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-active-color: var(--lime);
  --bs-accordion-btn-focus-border-color: var(--lime);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 2px rgba(var(--lime-rgb), .12);
  --bs-accordion-bg: var(--black);
  --bs-accordion-color: var(--white);
  --bs-accordion-btn-color: var(--white);
}
.faq.bg-block-secondary .accordion { --bs-accordion-btn-bg: var(--black2); --bs-accordion-active-bg: var(--black3); --bs-accordion-bg: var(--black2); }
.faq .accordion-item { margin-bottom: 0; border-bottom: 1px solid var(--border) !important; border-left: none; border-right: none; border-top: none; background: transparent; }
.faq .accordion-item, .faq .accordion-item .accordion-button, .faq .accordion-item .accordion-collapse { border-radius: 0; }
.faq .accordion-button {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; text-transform: uppercase; letter-spacing: -.3px;
  color: var(--white); background: transparent;
  padding: 20px 0; transition: color .15s;
}
.faq .accordion-button:not(.collapsed) { color: var(--lime); background: transparent; box-shadow: none; }
.faq .accordion-button::after { filter: invert(1); }
.faq .accordion-body { padding: 0 0 20px 0; font-size: 14px; color: var(--grey); line-height: 1.75; }

/* ─── STATUS ─── */
.status-cards { display: flex; flex-direction: column; gap: 2px; }
.status-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem; background: var(--black3); border: 1px solid var(--border);
  text-decoration: none; transition: background .15s;
}
.status-card:hover { background: var(--black); }
.status-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--white); text-transform: uppercase; }
.status-group h2 { font-family: var(--font-display); margin-bottom: 1rem; font-size: 1.3rem; font-weight: 900; color: var(--white); text-transform: uppercase; font-style: italic; letter-spacing: -1px; }
.status { display: flex; align-items: center; gap: 1rem; }
.status .indicator { position: relative; width: 1rem; height: 1rem; border-radius: 100%; }
.status .label { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: .5px; }
.pulsating { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 100%; opacity: 0; pointer-events: none; animation: pulsating 1.25s linear infinite; }
@keyframes pulsating { 0% { opacity: 0.4; } 100% { transform: scale(2); opacity: 0; } }
.animate-spin { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ─── ASPECT RATIOS ─── */
.aspect-product-card-image { aspect-ratio: var(--product-card-image-aspect-ratio); }
.aspect-product-page-image { aspect-ratio: var(--product-page-image-aspect-ratio); }
.aspect-group-card-image { aspect-ratio: var(--group-card-image-aspect-ratio); }
.aspect-blog-card-image { aspect-ratio: var(--blog-card-image-aspect-ratio); }
.object-product-image { object-fit: var(--product-image-fit); }
.object-group-image { object-fit: var(--group-image-fit); }

/* ─── SNOW ─── */
#snow { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; overflow: hidden; pointer-events: none; z-index: 9999; }
#snow .snowflake { position: absolute; width: 10px; height: 10px; margin-top: -10px; border-radius: 100%; background: rgba(var(--cl-snow, 255,255,255,1)); }

/* ─── CART ─── */
.cart .btn-outline-primary svg { width: 1.2rem; height: 1.2rem; }
.cart .product { background: var(--black3); border: 1px solid var(--border); }
.cart .form { background: var(--black2); border: 1px solid var(--border); }
.cart-item-bg { background: rgba(255,255,255,0.01); border-color: var(--border) !important; }
@media (min-width: 576px) { .cart-image-container { max-width: 9rem; } }
.cart-placeholder-icon { color: var(--grey3); }
.cart-placeholder-svg { width: 4rem; height: 4rem; }
.cart-product-link:hover { text-decoration: underline !important; color: var(--lime); }
.cart-variant-text { color: var(--grey); font-size: 13px; }
.cart-discount-text { color: var(--grey2); }
.cart-addon-badge {
  display: inline-block; padding: 2px 8px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border2);
  color: var(--grey); font-size: 11px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
}
.cart-quantity-controls { max-width: 8rem; }
.cart-qty-btn {
  background: rgba(255,255,255,0.06); width: 2rem; height: 2rem;
  border: 1px solid var(--border); border-radius: 0; transition: all .15s;
}
.cart-qty-btn:hover:not(:disabled) { background: var(--lime); color: var(--black); border-color: var(--lime); }
.cart-qty-btn:disabled { opacity: 0.4; pointer-events: none; }
.cart-qty-input { background: rgba(255,255,255,0.04); color: var(--white); width: calc(100% - 4rem); font-size: 14px; text-align: center; border-color: var(--border); border-radius: 0; }
.cart-qty-input:focus { background: rgba(255,255,255,0.06); color: var(--white); border-color: var(--lime); box-shadow: 0 0 0 2px rgba(var(--lime-rgb), .12); }
.cart-qty-icon { width: 1rem; height: 1rem; }
.cart-price-text { min-width: 5rem; font-family: var(--font-display); font-weight: 900; font-size: 24px; letter-spacing: -1px; color: var(--lime); }
@media (min-width: 576px) { .cart-price-text { font-size: 28px; } }
.cart-remove-mobile:hover, .cart-remove-desktop:hover { color: var(--red) !important; }
.cart-remove-icon-sm { width: 1rem; height: 1rem; }
@media (min-width: 576px) { .cart-remove-icon-sm { width: 1.25rem; height: 1.25rem; } }
.cart-remove-icon { width: 1rem; height: 1rem; }
@media (min-width: 576px) { .cart-remove-icon { width: 1.25rem; height: 1.25rem; } }
@media (max-width: 575px) { .cart-controls { border-top-color: var(--border) !important; } }

/* ─── TICKET ─── */
.ticket .ticket-messages-container { position: relative; height: calc(100vh - 400px); min-height: 500px; }
.ticket .ticket-messages-scroll { height: calc(100% - 80px); overflow-y: auto; overflow-x: hidden; }
.ticket .ticket-messages-scroll::-webkit-scrollbar { width: 4px; }
.ticket .ticket-messages-scroll::-webkit-scrollbar-track { background: rgba(0,0,0,0.1); }
.ticket .ticket-messages-scroll::-webkit-scrollbar-thumb { background: var(--grey3); }
.ticket .ticket-messages-scroll::-webkit-scrollbar-thumb:hover { background: var(--lime); }
.ticket .ticket-avatar { width: 40px; height: 40px; flex-shrink: 0; }
.ticket .ticket-avatar-img { width: 40px; height: 40px; border-radius: 0; object-fit: scale-down; background: var(--lime-dim); padding: 4px; }
.ticket .ticket-avatar-placeholder {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--lime-dim); color: var(--lime);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.ticket .ticket-avatar-icon { width: 24px; height: 24px; }
.ticket .ticket-sender-name { font-size: 12px; font-weight: 700; color: var(--white); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; }
.ticket .ticket-time-ago { font-size: 11px; color: var(--grey); }
.ticket .ticket-message-content { font-size: 13px; color: var(--grey); word-wrap: break-word; overflow-wrap: anywhere; line-height: 1.65; }
.ticket .ticket-input-area { position: absolute; bottom: 0; left: 0; right: 0; background: var(--black); border-top: 1px solid var(--border); }
.ticket .ticket-textarea { resize: none; max-height: 100px; min-height: 38px; field-sizing: content; border-radius: 0; }
.ticket .ticket-send-btn { white-space: nowrap; padding: 0.5rem 1rem; }
.ticket .bg-accent-500 { background-color: var(--lime) !important; color: var(--black) !important; }
.ticket .text-accent-500 { color: var(--lime) !important; }
@media (max-width: 575.98px) { .ticket .ticket-messages-container { height: calc(100vh - 300px); min-height: 400px; } .ticket .ticket-send-btn span { display: none !important; } }

table td .btn.btn-link { font-size: .875em; color: var(--lime); }

/* ─── NOTIFICATIONS ─── */
.notification-container { position: relative; }
.notification-popup { position: fixed; z-index: 1050; bottom: 1rem; left: 1rem; right: 1rem; }
@media (min-width: 640px) { .notification-popup { right: auto; } }
.notification-content {
  display: flex; align-items: center; gap: 0.75rem; padding: 4px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--lime);
  background-color: var(--black2);
  box-shadow: 0 16px 48px -8px rgba(0,0,0,0.8), 0 0 32px -8px var(--lime-glow);
}
.notification-image-container { position: relative; }
.notification-image { width: 3.75rem; height: 3.75rem; object-fit: cover; border-radius: 0; }
@media (min-width: 640px) { .notification-image { width: 4.5rem; height: 4.5rem; } }
.notification-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding-right: 0.5rem; }
.notification-text-primary { margin-bottom: 0; font-size: 11px; font-weight: 300; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--grey); }
@media (min-width: 640px) { .notification-text-primary { font-size: 13px; } }
.notification-text-secondary { margin-bottom: 0; font-size: 14px; font-weight: 800; font-family: var(--font-display); text-transform: uppercase; letter-spacing: -.3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--white); }
@media (min-width: 640px) { .notification-text-secondary { font-size: 16px; } }
.notification-text-tertiary { margin-bottom: 0; font-size: 11px; opacity: 0.6; font-weight: 300; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--grey); }
@media (min-width: 640px) { .notification-text-tertiary { font-size: 13px; } }
.flag-icon { width: 0.625rem; height: 0.625rem; }
@media (min-width: 640px) { .flag-icon { width: 0.75rem; height: 0.75rem; } }

/* ─── CURRENCY SELECTOR ─── */
.currency-selector { max-width: 153px; }
.currency-selector select { width: 80px; height: 40px; background-color: transparent; border: 1px solid var(--lime); outline: none; color: transparent; border-radius: 0; }
.currency-selector .symbol { display: inline-block; width: 2.5rem; background-color: var(--lime-dim); color: var(--lime) !important; text-align: center; padding: 0.125rem 0.25rem; margin-right: 0.25rem; font-family: var(--font-display); font-weight: 700; }
.currency-selector .default { font-size: 12px; opacity: 0.6; color: var(--grey); }
.currency-selector .choices__inner { min-width: 5rem !important; height: 40px !important; background-color: transparent !important; border: 1px solid var(--lime) !important; padding-top: 5px !important; padding-bottom: 5px !important; border-radius: 0 !important; }
.currency-selector .choices.is-open .choices__inner { border-color: var(--lime) !important; }
.currency-selector .choices__inner .symbol { background-color: transparent; color: var(--lime); min-width: 0; }
.currency-selector .choices__inner .code, .currency-selector .choices__inner .default { display: none; }
.currency-selector .choices__inner .choices__item { max-width: 50px; overflow: hidden; text-overflow: clip; white-space: nowrap; }
.currency-selector .choices__list.choices__list--dropdown { min-width: 11rem !important; margin-top: 0.5rem; border-radius: 0 !important; -ms-overflow-style: none; scrollbar-width: none; }
.currency-selector .choices__list::-webkit-scrollbar { display: none; }
.currency-selector .choices__list--dropdown .choices__item--selectable { padding-right: 0.625rem !important; }
.currency-selector .choices__list--dropdown .choices__item--selectable.is-highlighted::after { display: none; }

/* ─── CHOICES ─── */
.choices { border-radius: 0; margin-bottom: 0 !important; }
.choices.is-open { border-bottom-right-radius: 0; border-bottom-left-radius: 0; }
.choices .choices__inner { min-height: 2.5rem; font-size: 15px; background-color: var(--black3); color: var(--white); border-radius: 0; padding: 0.5rem 1rem; width: 100%; border: 1px solid var(--border) !important; }
.choices[data-type*="select-one"] .choices__inner { padding: 0.5rem 1rem; }
.choices .choices__list.choices__list--single { padding: 0; }
.choices.is-open .choices__inner { border-color: var(--lime) !important; }
.choices .choices__list.choices__list--dropdown { background-color: var(--black3); border-radius: 0; border: 1px solid var(--border) !important; }
.choices.is-open .choices__list--dropdown, .choices.is-open .choices__list[aria-expanded] { border-color: var(--lime) !important; }
.choices[data-type*="select-one"] .choices__list .choices__input { border-bottom-color: var(--border); background-color: var(--black3); color: var(--white); }
.choices[data-type*="select-one"] .choices__list.choices__list--dropdown .choices__input { background-color: var(--black3); color: var(--white); }
.choices .choices__list--dropdown .choices__item, .choices .choices__list[aria-expanded] .choices__item { background-color: var(--black3); color: var(--white); }
.choices .choices__list--dropdown .choices__item--selectable.is-highlighted, .choices .choices__list[aria-expanded] .choices__item--selectable.is-highlighted { background-color: var(--lime-dim); color: var(--lime); }

/* ─── EDITOR ─── */
.editor .rtl { direction: rtl; }
.editor .e-paragraph { position: relative; margin-bottom: 0; font-size: 15px; line-height: 1.65; word-wrap: break-word; color: var(--white); }
.editor .e-quote { font-size: 15px; padding-left: 1rem; border-left: 3px solid var(--lime); color: var(--grey); font-style: italic; }
.editor .e-hr, .editor hr { border-top: 1px solid var(--border); margin: 0.5rem 0; }
.editor .e-heading-h1 { font-family: var(--font-display); font-size: 2.25rem; line-height: 2.5rem; margin-bottom: 0; font-weight: 900; text-transform: uppercase; font-style: italic; letter-spacing: -1px; color: var(--white); }
.editor .e-heading-h2 { font-family: var(--font-display); font-size: 1.875rem; line-height: 2.25rem; margin-bottom: 0; font-weight: 900; text-transform: uppercase; color: var(--white); }
.editor .e-heading-h3 { font-family: var(--font-display); font-size: 1.5rem; line-height: 2rem; margin-bottom: 0; font-weight: 800; text-transform: uppercase; color: var(--white); }
.editor .e-nested-listitem { list-style-type: none; }
.editor .e-list-ol { padding: 0; margin: 0; margin-left: 1rem; list-style-type: decimal; }
.editor .e-list-ul { padding: 0; margin: 0; margin-left: 1rem; list-style-type: disc; }
.editor .e-listitem { margin: 0.5rem 1rem 0.5rem 1rem; color: var(--grey); }
.editor .e-image img { max-width: 100%; height: auto; }
.editor .e-youtube iframe { width: 100%; height: 100%; aspect-ratio: 16/9; }
.editor .e-link { color: var(--lime); text-decoration: underline; }
.editor .e-text-bold { font-weight: bold; }
.editor .e-text-code { background-color: rgba(0,0,0,0.5); padding: 1px 4px; font-family: monospace; font-size: 95%; color: var(--lime); }
.editor .e-text-italic { font-style: italic; }
.editor .e-text-strikethrough { text-decoration: line-through; }
.editor .e-text-underline { text-decoration: underline; }
.editor .e-text-underlineStrikethrough { text-decoration: underline line-through; }
.editor .e-code { display: block; background-color: rgba(0,0,0,0.5); padding: 0.5rem; font-family: monospace; color: var(--lime); border-left: 2px solid var(--lime); }
.editor .e-collapsible { margin: 0.25rem 0; background-color: var(--black3); border: 1px solid var(--border); }
.editor .e-collapsible-title { display: block; position: relative; padding: 0.5rem 0.5rem 0.5rem 1.5rem; font-weight: 700; font-family: var(--font-display); text-transform: uppercase; color: var(--white); }
.editor .e-collapsible-title::marker, .editor .e-collapsible-title::-webkit-details-marker { display: none; }
.editor .e-collapsible-title:before { content: ''; display: block; position: absolute; top: 50%; left: 0.625rem; transform: translateY(-50%); border: 1px solid transparent; border-left-color: var(--lime); border-width: 4px 6px 4px 6px; }
.editor .e-collapsible[open] > .editor .e-collapsible-title:before { border-left-color: transparent; border-top-color: var(--lime); border-width: 6px 4px 0 4px; }
.editor .e-collapsible-content { padding: 0.5rem; border-top: 1px solid var(--border); }

/* ─── BUILDER ─── */
.builder .component { position: relative; }
.builder .component .builder-toolbar { display: none; }
.builder .component:hover .builder-toolbar { display: block; }
.builder .builder-toolbar { position: absolute; top: 1rem; left: 0; right: 0; z-index: 1; text-align: center; }
.builder .builder-toolbar .actions { background: #050505; display: inline-flex; gap: 0.5rem; padding: 0.5rem; border: 1px solid var(--border); }
.builder .builder-toolbar .actions button { padding: 0.5rem; background: #0a0a0a; border: 1px solid var(--border); transition: border-color .15s; }
.builder .builder-toolbar .actions button:hover { background: var(--black); border-color: var(--lime); }
.builder .builder-toolbar .actions button svg { width: 1.5rem; height: 1.5rem; fill: var(--white); }
.builder .announcement .builder-toolbar .actions button:not(.edit),
.builder .navbar .builder-toolbar .actions button:not(.edit),
.builder .footer .builder-toolbar .actions button:not(.edit) { display: none; }

/* ─── ALTCHA ─── */
:root {
  --altcha-border-width: 1px;
  --altcha-border-radius: 0;
  --altcha-color-base: rgba(255,255,255,0.025);
  --altcha-color-border: var(--border);
  --altcha-color-text: var(--white);
  --altcha-color-border-focus: var(--lime);
  --altcha-color-error-text: var(--red);
  --altcha-color-footer-bg: var(--black2);
  --altcha-max-width: 600px;
}

.grecaptcha-badge { visibility: hidden; }
/* designed by https://legitgaming.org */