* {
  line-height: normal;
}

body {
 
  margin: 0;
}


*, html {

    scroll-behavior: smooth !important;
}

::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #ffb53d;
}




.bg-image {

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  z-index: -1;
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 30%;
  overflow: scroll;
}

.social-icons a i {
  transition: fill 0.2s, color 0.2s;
  fill: #ffffff17;
}
.social-icons a:hover i,
.social-icons a:focus i {
  fill: var(--color-primary); /* Tailwind red-500 */
  color: var(--color-primary);
}
/* for SVGs using only currentColor */
.social-icons a i  {
  transition: fill 0.2s;
}
.social-icons a:hover i ,
.social-icons a:focus i  {
  fill: var(--color-primary);
}

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


.gradient-btn {
	position: relative;
	overflow: hidden;
}
.gradient-btn::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		to right,
		transparent,
		rgba(255, 255, 255, 0.5),
		transparent
	);
	transform: rotate(60deg);
	transition: transform 1s;
	transform: translate(-100%, -100%);
}
.gradient-btn:hover::before {
	transform: translate(100%, 100%);
}

.absolute-center {
    position: absolute;
    top: calc(1/2 * 100%);
    left: calc(1/2 * 100%);
    --tw-translate-x: calc(calc(1/2 * 100%) * -1);
    --tw-translate-y: calc(calc(1/2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
}


input:focus {
  outline: none;
  border: none;
}

input:focus-visible {
  outline: none;
  border: none;
}

input {
  outline: none;
  border: none;
}

/* Swiper Slider Custom Styles */ 
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-color-secondary);
}

.packageMainSwiper .swiper-slide {
  overflow: hidden;
}

.packageMainSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.packageThumbsSwiper .swiper-slide {
  opacity: 0.2;
  transition: opacity 0.3s ease, border 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.packageThumbsSwiper .swiper-slide-thumb-active { 
  opacity: 1 !important;
  border-color: var(--color-primary) !important;
}

.packageThumbsSwiper .swiper-slide:hover {
  opacity: 0.8;
}

.swiper-button-next,
.swiper-button-prev {
  background: rgba(22, 22, 26, 0.8) !important;
  width: 40px !important; 
  height: 40px !important;
  border-radius: 50% !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--color-primary) !important;
}

.swiper-button-next:after, 
.swiper-button-prev:after {
  font-size: 16px !important;
  color: #fff;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 12px !important;
  }
}

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



.loading-data {
	width: 50px;
	padding: 8px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--color-primary);
	--_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
	-webkit-mask: var(--_m);
	mask: var(--_m);
	-webkit-mask-composite: source-out;
	mask-composite: subtract;
	animation: l3 1s infinite linear;
}
@keyframes l3 {
	to {
		transform: rotate(1turn);
	}
}


.btn-loading {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	position: relative;
	animation: rotate1 1s linear infinite;
}
.btn-loading::before {
	content: '';
	box-sizing: border-box;
	position: absolute;
	inset: 0px;
	border-radius: 50%;
	border: 3px solid #16161A;
	animation: prixClipFix 2s linear infinite;
}


.bg-delete {
    background-color: #D84141;
} 


.bg-primary {
background-color: var(--color-primary) !important;
}


@keyframes rotate1 {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes prixClipFix {
	0% {
		clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0); 
	}
	25% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
	}
	50% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
	}
	75% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
	}
	100% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
	}
}


.colored-toast.swal2-icon-success {
	background-color: #a5dc86 !important;
}

.colored-toast.swal2-icon-error {
	background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
	background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
	background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
	background-color: #87adbd !important;
}

.colored-toast .swal2-title {
	color: white;
}

.colored-toast .swal2-close {
	color: white;
}

.colored-toast .swal2-html-container {
	color: white;
}




.Btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255 / 1%);
  border: solid 1.5px #ffffff03;
  font-weight: 600;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
}

.Btn path {
	fill: #ffffff5c;
	transition: all;
	transition-duration: 300ms;
}


.Btn:hover path {
	fill: var(--dark-color-secondary);
}


.Btn::before {
  width: 100%;
  height: 200px;
  position: absolute;
  content: "";
  background-color: var(--color-primary);
  border-radius: 50%;
  left: -100%;
  top: 0;
  z-index:1;
  transition-duration: .3s;
}

.Btn:hover::before {
  transition-duration: .3s;
  transform: translate(100%,-50%);
  border-radius: 0;
	
}

.Btn:active {
  transform: translate(5px,5px);
  transition-duration: .3s;
}

.Btn:hover {
	box-shadow: 5px 5px 10px rgb(36 36 36 / 24%);
	color: var(--dark-color-secondary)
}




@keyframes scaleUpDown {
  0%, 100% {
    transform: scaleY(1) scaleX(1);
  }

  50%, 90% {
    transform: scaleY(1.1);
  }

  75% {
    transform: scaleY(0.95);
  }

  80% {
    transform: scaleX(0.95);
  }
}

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

  50% {
    transform: skewX(5deg) scale(0.9);
  }
}

@keyframes particleUp {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    top: -100%;
    transform: scale(0.5);
  }
}

@keyframes glow {
  0%, 100% {
    background-color: #ef5a00;
  }

  50% {
    background-color: #ff7800;
  }
}

.fire {
  position: absolute;
  top: calc(8% - 50px);
  left: calc(100% - 50px);
  width: 35px;
  height: 35px;
  background-color: transparent;
  margin-left: auto;
  margin-right: auto;
}

.fire-center {
  position: absolute;
  height: 100%;
  width: 100%;
  animation: scaleUpDown 3s ease-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-center .main-fire {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(farthest-corner at 10px 0, #d43300 0%, #ef5a00 95%);
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 60% 40%;
}

.fire-center .particle-fire {
  position: absolute;
  top: 60%;
  left: 45%;
  width: 10px;
  height: 10px;
  background-color: #ef5a00;
  border-radius: 50%;
  animation: particleUp 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-right {
  height: 100%;
  width: 100%;
  position: absolute;
  animation: shake 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-right .main-fire {
  position: absolute;
  top: 15%;
  right: -25%;
  width: 80%;
  height: 80%;
  background-color: #ef5a00;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 60% 40%;
}

.fire-right .particle-fire {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 15px;
  height: 15px;
  background-color: #ef5a00;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 50%;
  animation: particleUp 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-left {
  position: absolute;
  height: 100%;
  width: 100%;
  animation: shake 3s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-left .main-fire {
  position: absolute;
  top: 15%;
  left: -20%;
  width: 80%;
  height: 80%;
  background-color: #ef5a00;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 60% 40%;
}

.fire-left .particle-fire {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 10%;
  height: 10%;
  background-color: #ef5a00;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px #d43322);
  animation: particleUp 3s infinite ease-out 0;
  animation-fill-mode: both;
}

.fire-bottom .main-fire {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 75%;
  height: 75%;
  background-color: #ff7800;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 100% 40%;
  filter: blur(10px);
  animation: glow 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}




.package-description {
	--tw-text-opacity: 1;
	color: rgba(240,236,226,var(--tw-text-opacity));
	-webkit-text-decoration: none;
	text-decoration: none;
	text-transform: none;
	font-weight: 400
}

.package-description :not(:last-child) {
	margin-bottom: .85rem !important;
}

.package-description h1,.package-description h2,.package-description h3,.package-description h4 {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	--tw-text-opacity: 1;
	color: rgba(255,252,245,var(--tw-text-opacity));
	font-style: normal;
	-webkit-text-decoration: none;
	text-decoration: none;
	text-transform: capitalize;
	font-weight: 700
}

.package-description a {
	--tw-text-opacity: 1;
	color: var(--color-primary);
	transition-timing-function: cubic-bezier(.4,0,.2,1);
	transition-duration: .15s
}

.package-description a:hover {
	--tw-text-opacity: 1;
	text-decoration-line: underline !important;
	color: var(--color-primary);
}

.package-description b {
	--tw-text-opacity: 1;
	color: rgba(255,252,245,var(--tw-text-opacity))
}

.package-description ol li,.package-description ul li {
	position: relative;
	padding-left: 2ch;
	--tw-text-opacity: 1;
	color: rgba(240,236,226,var(--tw-text-opacity))
}

.package-description ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: .5rem;
	height: .5rem;
	width: .5rem;
	border-radius: .5rem;
	--tw-bg-opacity: 1;
	background-color: var(--color-primary);
}

.package-description ol {
	counter-reset: ol-counter
}

.package-description ol li {
	counter-increment: ol-counter
}

.package-description ol li:before {
	content: counter(ol-counter) ". ";
	position: absolute;
	left: 0;
	font-weight: 700;
	--tw-text-opacity: 1;
	color: var(--color-primary);
}

.package-description img {
	max-width: 100%;
}


.package-description hr {
	color:white;
	opacity: 0.1;
}

.package-description img.fr-rounded {
	border-radius: calc(.5rem*.85)
}

.package-description img.fr-shadow {
	--tw-shadow: 0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;
	--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
	--tw-shadow-color: #0000004d;
	--tw-shadow: var(--tw-shadow-colored)
}

.package-description img.fr-bordered {
	border-width: 2px;
	--tw-border-opacity: 1;
	border-color: rgba(31,94,255,var(--tw-border-opacity))
}

.package-description iframe {
	aspect-ratio: 16/9;
	height: 100%;
	width: 100%;
	border-radius: calc(.5rem*.85)
}



@keyframes pulse-subtle {
0%,
100% {
  transform: scale(1);
  box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.3);
}
50% {
  transform: scale(1.05);
  box-shadow: 0 15px 30px -5px rgba(239, 68, 68, 0.5);
}
}
@keyframes gradient {
0%,
100% {
  background-position: 0% 50%;
}
50% {
  background-position: 100% 50%;
}
}
.animate-pulse-subtle {
animation: pulse-subtle 2s ease-in-out infinite;
}
.animate-gradient {
background-size: 200% 200%;
animation: gradient 3s ease infinite;
}

/* RetroRP-inspired storefront skin */
:root {
  --retro-panel: rgba(17, 18, 20, 0.96);
  --retro-panel-soft: rgba(24, 25, 28, 0.94);
  --retro-line: rgba(255, 255, 255, 0.09);
  --retro-muted: rgba(255, 255, 255, 0.56);
  --retro-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

body.retro-theme {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: #f7f7f4;
  background:
    radial-gradient(circle at 18% 8%, color-mix(in srgb, var(--color-primary) 16%, transparent), transparent 28rem),
    linear-gradient(180deg, #0d0e10 0%, #111214 46%, #0b0c0e 100%) !important;
}

body.retro-theme::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.012) 3px 4px),
    linear-gradient(115deg, transparent 0 64%, color-mix(in srgb, var(--color-primary) 5%, transparent) 64% 65%, transparent 65%);
}

.retro-theme h1,
.retro-theme h2,
.retro-theme h3,
.retro-theme h4,
.retro-theme nav a {
  font-family: "Barlow Condensed", sans-serif;
}

.retro-backdrop {
  opacity: 0.42;
  filter: grayscale(1) contrast(1.2);
}

.retro-backdrop img {
  height: 720px !important;
  opacity: 0.12 !important;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
}

.retro-nav {
  max-width: 1180px !important;
}

.retro-nav--desktop {
  margin-top: 26px !important;
  padding: 0 !important;
  border-top: 3px solid var(--color-primary);
  background: var(--retro-panel);
  box-shadow: var(--retro-shadow);
}

.retro-nav--desktop > div {
  min-height: 84px;
  padding: 0 22px;
}

.retro-nav--desktop > div > a img {
  width: 64px !important;
  height: 64px !important;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.retro-nav--desktop > div > a span:first-child {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.retro-nav--desktop > div > ul {
  gap: 2px !important;
}

.retro-nav--desktop > div > ul > li > a,
.retro-nav--desktop .subcategory-toggle {
  border-radius: 2px !important;
  padding: 12px 14px !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.retro-nav--desktop > div > ul > li > a:hover,
.retro-nav--desktop .subcategory-toggle:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.055) !important;
}

.retro-nav button,
.retro-nav .currency > button {
  border-radius: 3px !important;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
}

.retro-nav .dropdown-menu,
.retro-nav #profile-dropdown-menu,
.retro-nav #mobile-menu {
  border: 1px solid var(--retro-line);
  border-radius: 3px !important;
  background: #161719 !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45) !important;
}

.retro-storefront {
  position: relative;
  z-index: 1;
}

.retro-welcome {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  max-width: 1180px !important;
  min-height: 430px;
  margin-top: 34px;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid var(--retro-line);
  border-left: 4px solid var(--color-primary);
  background: var(--retro-panel);
  box-shadow: var(--retro-shadow);
}

.retro-welcome__media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #090a0c;
}

.retro-welcome__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 50%, var(--retro-panel) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 55%);
}

.retro-welcome__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.08);
  transform: scale(1.02);
}

.retro-welcome__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 54px 58px;
}

.retro-welcome__content::before {
  content: "STORE";
  position: absolute;
  right: 18px;
  top: 4px;
  color: rgba(255, 255, 255, 0.025);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 116px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.retro-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: var(--color-primary);
  border: 1px solid color-mix(in srgb, var(--color-primary) 38%, transparent);
  border-radius: 2px;
  background: color-mix(in srgb, var(--color-primary) 8%, transparent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.retro-welcome h1 {
  max-width: 590px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.retro-welcome h1 strong {
  display: block;
  color: var(--color-primary);
  font-weight: 800;
}

.retro-welcome__description {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.75;
}

.retro-welcome__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.retro-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.retro-button:hover {
  transform: translateY(-2px);
}

.retro-button--primary {
  color: #0d0e10;
  background: var(--color-primary);
}

.retro-button--secondary {
  color: #fff;
  border-color: var(--retro-line);
  background: rgba(255, 255, 255, 0.045);
}

.retro-button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.retro-modules {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 22px auto 0;
}

.retro-modules > section {
  grid-column: 1 / -1;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.retro-modules > .retro-package {
  grid-column: span 4;
  width: 100% !important;
}

.retro-theme section > div:first-child > h2,
.retro-theme section > div:first-child > h3,
.retro-theme .recent-payments > div:first-child h2,
.retro-theme .recent-payments > div:first-child h3 {
  text-transform: uppercase;
}

.retro-theme section > div:first-child > h2,
.retro-theme .recent-payments > div:first-child h2 {
  font-size: 32px !important;
  font-weight: 700 !important;
  letter-spacing: 0.015em;
}

.retro-theme section > div:first-child > h3,
.retro-theme .recent-payments > div:first-child h3 {
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em;
}

.retro-package {
  overflow: hidden;
  gap: 0 !important;
  border: 1px solid var(--retro-line);
  border-radius: 3px !important;
  background: var(--retro-panel-soft) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.retro-package:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--color-primary) 58%, transparent);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
}

.retro-package > img {
  height: 235px !important;
  border-radius: 0 !important;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 300ms ease, filter 300ms ease;
}

.retro-package:hover > img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.025);
}

.retro-package__body {
  position: relative;
  z-index: 2;
  min-height: 112px;
  padding: 20px !important;
  border-top: 1px solid var(--retro-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.retro-package__price {
  top: 250px !important;
}

.retro-package .package-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px !important;
  font-weight: 700 !important;
  letter-spacing: 0.015em;
  line-height: 1.05;
  text-transform: uppercase;
}

.retro-package .package-card {
  position: relative;
  z-index: 2;
  padding: 0 20px 20px !important;
}

.retro-package .package-add-to-cart,
.retro-package .package-remove {
  min-height: 48px;
  padding: 12px 18px !important;
  border: 1px solid var(--retro-line);
  border-radius: 2px !important;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.retro-package .package-add-to-cart {
  color: #0c0d0f !important;
  border-color: var(--color-primary);
  background: var(--color-primary) !important;
}

.retro-package .package-add-to-cart::before {
  display: none;
}

.retro-theme .recent-payments > div:last-child > div,
.retro-theme .stats-section > div:last-child,
.retro-theme .services-cards > div:last-child > div {
  border: 1px solid var(--retro-line);
  border-radius: 3px !important;
  background: var(--retro-panel-soft) !important;
}

.retro-theme .search,
.retro-theme .tag-filter button {
  border: 1px solid var(--retro-line) !important;
  border-radius: 2px !important;
  background: var(--retro-panel-soft) !important;
}

.retro-theme .package-list {
  gap: 22px !important;
}

.retro-theme .package-list .retro-package {
  width: calc(33.333% - 15px) !important;
}

.retro-theme footer {
  border-top: 1px solid var(--retro-line);
  background: rgba(7, 8, 9, 0.76);
}

.retro-theme footer h3,
.retro-theme footer a {
  font-family: "Manrope", sans-serif;
}

@media (max-width: 1023px) {
  .retro-nav--mobile {
    width: calc(100% - 32px) !important;
    margin-top: 18px !important;
    padding: 14px 16px !important;
    border-top: 3px solid var(--color-primary);
    background: var(--retro-panel);
    box-shadow: var(--retro-shadow);
  }

  .retro-welcome {
    width: calc(100% - 32px);
    grid-template-columns: 0.72fr 1.28fr;
  }

  .retro-welcome__content {
    padding: 42px 36px;
  }

  .retro-modules > .retro-package {
    grid-column: span 6;
  }

  .retro-theme .package-list .retro-package {
    width: calc(50% - 11px) !important;
  }
}

@media (max-width: 767px) {
  .retro-welcome {
    display: flex;
    min-height: auto;
    flex-direction: column;
    margin-top: 18px;
    border-left-width: 1px;
    border-top: 3px solid var(--color-primary);
  }

  .retro-welcome__media,
  .retro-welcome__media img {
    min-height: 210px;
    height: 210px;
  }

  .retro-welcome__media::after {
    background: linear-gradient(0deg, var(--retro-panel) 0%, transparent 68%);
  }

  .retro-welcome__content {
    padding: 30px 24px 34px;
  }

  .retro-welcome__content::before {
    display: none;
  }

  .retro-welcome h1 {
    font-size: 42px;
  }

  .retro-welcome__description {
    margin-top: 16px;
    font-size: 14px;
  }

  .retro-welcome__actions,
  .retro-button {
    width: 100%;
  }

  .retro-modules {
    grid-template-columns: 1fr;
  }

  .retro-modules > .retro-package,
  .retro-modules > section {
    grid-column: 1;
  }

  .retro-package > img {
    height: 220px !important;
  }

  .retro-theme .package-list .retro-package {
    width: 100% !important;
  }
}

/* RetroRP reference layout */
body.retro-theme {
  --rr-accent: #9b35ed;
  --rr-panel: rgba(17, 14, 24, 0.66);
  --rr-panel-strong: rgba(14, 12, 18, 0.82);
  --rr-border: rgba(255, 255, 255, 0.09);
  --color-primary: var(--rr-accent);
  --color-primary-hover: #ad54f1;
  --dark-color-primary: #0b0910;
  --dark-color-secondary: #15111c;
  margin: 0;
  color: #c9c4cc;
  background: #09080d !important;
  font-family: "Rajdhani", sans-serif !important;
  font-size: 17px;
  font-weight: 500;
}

body.retro-theme::before {
  content: "";
  position: fixed;
  inset: -24px;
  z-index: -2;
  opacity: 0.74;
  background-image: var(--rr-background);
  background-position: center top;
  background-size: cover;
  filter: blur(7px) saturate(0.68);
  transform: scale(1.035);
}

body.retro-theme::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 47% 13%, transparent 0, rgba(7, 6, 11, 0.2) 34%, rgba(5, 5, 9, 0.55) 100%),
    linear-gradient(180deg, rgba(8, 7, 12, 0.3), rgba(8, 7, 12, 0.5));
}

.retro-theme h1,
.retro-theme h2,
.retro-theme h3,
.retro-theme h4,
.retro-theme nav a,
.retro-theme button,
.retro-theme input,
.retro-theme select,
.retro-theme textarea,
.retro-theme a {
  font-family: "Rajdhani", sans-serif !important;
}

.retro-backdrop,
.retro-community-strip,
.retro-nav {
  display: none !important;
}

.rr-header {
  position: relative;
  width: 100%;
  height: 390px;
}

.rr-header--home {
  height: 620px;
}

.rr-header__utility {
  position: absolute;
  z-index: 3;
  top: 42px;
  right: 34px;
}

.rr-header__login {
  padding: 0;
  border: 0;
  color: #f1eef3;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
}

.rr-header__logo {
  position: absolute;
  top: 112px;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}

.rr-header__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.42));
}

.rr-header__discord {
  position: absolute;
  top: 156px;
  right: 25px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #f1eef3;
}

.rr-header__discord span {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.rr-header__discord strong {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1;
  text-transform: uppercase;
}

.rr-header__discord small {
  margin-top: 5px;
  color: var(--rr-accent);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
}

.rr-header__discord i {
  color: #f3f0f4;
  font-size: 46px;
}

.rr-category-icons {
  position: absolute;
  bottom: 43px;
  left: 50%;
  display: flex;
  width: calc(100% - 104px);
  align-items: end;
  justify-content: center;
  gap: 34px;
  transform: translateX(-50%);
}

.rr-category-icons > a {
  display: flex;
  width: min(210px, 18vw);
  min-width: 140px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #d8d4da;
  text-align: center;
}

.rr-category-icons__icon {
  display: flex;
  width: 102px;
  height: 102px;
  align-items: center;
  justify-content: center;
  color: var(--rr-accent);
  font-size: 72px;
  filter: drop-shadow(0 8px 15px rgba(63, 12, 96, 0.5));
  transition: transform 180ms ease, filter 180ms ease;
}

.rr-category-icons > a:nth-child(1) .rr-category-icons__icon,
.rr-category-icons > a:nth-child(4) .rr-category-icons__icon {
  color: #f1b534;
}

.rr-category-icons > a:nth-child(5) .rr-category-icons__icon {
  color: #f161a8;
}

.rr-category-icons > a:hover .rr-category-icons__icon {
  filter: drop-shadow(0 10px 24px color-mix(in srgb, var(--rr-accent) 45%, transparent));
  transform: translateY(-5px);
}

.rr-category-icons strong {
  max-width: 220px;
  color: inherit;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.rr-mobile-toggle,
.rr-mobile-menu {
  display: none;
}

.rr-layout {
  display: grid;
  grid-template-columns: 345px minmax(0, 1fr);
  gap: 48px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.rr-sidebar {
  min-width: 0;
}

.rr-sidebar-nav,
.rr-panel,
.rr-sidebar .retro-module,
.rr-sidebar .retro-package,
.retro-theme .retro-category-page .retro-package,
.retro-theme .retro-product-page > div:first-child > div,
.retro-theme .retro-product-page .package-description,
.retro-theme .retro-cms-page .package-description,
.retro-theme .retro-quote-page > div,
.retro-theme .retro-checkout-page {
  border: 1px solid var(--rr-border) !important;
  border-radius: 20px !important;
  background: var(--rr-panel) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.015), 0 18px 45px rgba(0, 0, 0, 0.18) !important;
  backdrop-filter: blur(10px);
}

.rr-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 28px 30px 31px;
}

.rr-sidebar-nav a {
  color: #bbb6bf;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.rr-sidebar-nav a:hover,
.rr-sidebar-nav a.is-active {
  color: var(--rr-accent);
  font-weight: 700;
}

.rr-sidebar-modules {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.rr-sidebar .retro-module {
  display: flex !important;
  width: 100% !important;
  min-width: 0;
  flex-direction: column;
  gap: 18px !important;
  margin: 0 !important;
  padding: 25px 27px 27px !important;
  border-top: 1px solid var(--rr-border) !important;
}

.rr-sidebar .retro-module__title,
.rr-sidebar .retro-module > div:first-child h2 {
  position: relative;
  padding-left: 22px;
  color: #f0edf2;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0.065em;
  line-height: 1.1;
  text-transform: uppercase;
}

.rr-sidebar .retro-module__title::before,
.rr-sidebar .retro-module > div:first-child h2::before {
  content: "";
  position: absolute;
  top: -7px;
  bottom: -7px;
  left: 0;
  width: 3px;
  background: var(--rr-accent);
}

.rr-sidebar .retro-module > div:first-child h3 {
  display: none;
}

.rr-sidebar .retro-module--featured .retro-package {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
}

.rr-sidebar .retro-module--featured .retro-package > img {
  height: 225px !important;
  border-radius: 0 !important;
  object-fit: contain;
}

.rr-sidebar .retro-module--featured .retro-package__body {
  min-height: auto;
  align-items: center;
  padding: 14px 0 !important;
  border: 0;
  background: transparent;
  text-align: center;
}

.rr-sidebar .retro-module--featured .package-name {
  width: 100%;
  font-size: 25px !important;
  text-align: center;
}

.rr-sidebar .retro-module--featured .rr-package-description,
.rr-sidebar .retro-module--featured .package-tags {
  display: none;
}

.rr-sidebar .retro-module--featured .retro-package__price {
  position: static !important;
  margin: 6px auto 0 !important;
  color: #c8c3cb;
  font-size: 24px !important;
}

.rr-sidebar .retro-module--featured .package-card {
  padding: 0 !important;
}

.rr-sidebar .retro-module--payments > div:last-child {
  display: flex !important;
  flex-direction: column;
  gap: 10px !important;
}

.rr-sidebar .retro-module--payments > div:last-child > div {
  min-width: 0 !important;
  width: 100%;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.025) !important;
}

.rr-content {
  min-width: 0;
}

.rr-home-content {
  min-height: 760px;
  padding: 56px 30px;
  color: #c6c0c9 !important;
  font-size: 18px !important;
  line-height: 1.45 !important;
  text-align: center;
}

.rr-home-content > :first-child {
  margin-top: 0 !important;
}

.rr-home-content h1,
.rr-home-content h2,
.rr-home-content h3,
.rr-home-content h4 {
  color: #d7d2d9;
  font-size: 21px !important;
  text-transform: none;
}

.rr-home-content strong {
  color: #ddd8df;
}

.rr-home-content a,
.rr-home-content em {
  color: var(--rr-accent);
}

.retro-content-page,
.retro-category-page,
.retro-cms-page,
.retro-product-page,
.retro-tiered-page,
.retro-quote-page,
.retro-checkout-page {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.retro-category-page,
.retro-cms-page {
  gap: 30px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.retro-category-page > div:first-child,
.retro-cms-page > div:first-child {
  width: 100% !important;
  padding: 0 !important;
}

.retro-category-page > div:first-child::before,
.retro-cms-page > div:first-child::before {
  display: none;
}

.retro-category-page > div:first-child h2,
.retro-cms-page > div:first-child h2 {
  color: #e2dee4;
  font-size: 37px !important;
  font-weight: 700 !important;
  text-transform: none;
}

.retro-category-page > div:nth-child(2) {
  display: none !important;
}

.retro-theme .package-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start !important;
  gap: 24px !important;
  min-height: 0 !important;
}

.retro-theme .package-list .retro-package {
  width: 100% !important;
}

.retro-theme .retro-package {
  overflow: hidden;
  border: 1px solid var(--rr-border) !important;
  border-radius: 20px !important;
  background: var(--rr-panel) !important;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(10px);
}

.retro-theme .package-list .retro-package > img {
  height: 385px !important;
  padding: 24px 20px 0;
  border-radius: 0 !important;
  object-fit: contain;
}

.retro-theme .package-list .retro-package__body {
  min-height: 0;
  align-items: stretch;
  padding: 22px 28px 12px !important;
  border: 0;
  background: transparent;
}

.retro-theme .package-list .package-name {
  width: 100%;
  color: #e1dce3;
  font-size: 27px !important;
  text-align: center;
  text-transform: none;
}

.rr-package-description {
  width: 100%;
  max-height: 430px;
  overflow: hidden;
  padding-top: 17px;
  border-top: 1px solid var(--rr-border);
  color: #bdb7c0 !important;
  font-size: 16px !important;
  font-weight: 600;
  line-height: 1.35 !important;
}

.rr-package-description h1,
.rr-package-description h2,
.rr-package-description h3,
.rr-package-description h4 {
  margin: 0 0 12px !important;
  color: #d9d4dc;
  font-size: 18px !important;
  text-transform: none;
}

.retro-theme .package-list .retro-package__price {
  position: static !important;
  align-self: center;
  margin: 16px 0 0 !important;
  color: #d7d2da;
}

.retro-theme .package-list .package-card {
  padding: 10px 28px 28px !important;
}

.retro-theme .package-add-to-cart,
.retro-theme .checkout-btn,
.retro-theme .options-submit-btn {
  border: 1px solid rgba(183, 78, 247, 0.62) !important;
  border-radius: 11px !important;
  color: #f6f2f7 !important;
  background: linear-gradient(180deg, #a340e5, #7225bc) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18), 0 8px 20px rgba(87, 24, 131, 0.25);
}

.retro-theme footer {
  max-width: 1440px;
  margin: 70px auto 0 !important;
  border-top: 1px solid var(--rr-border);
  background: rgba(7, 6, 10, 0.6);
  backdrop-filter: blur(10px);
}

@media (max-width: 1100px) {
  .rr-layout {
    grid-template-columns: 275px minmax(0, 1fr);
    gap: 28px;
  }

  .rr-category-icons {
    left: 50%;
    width: calc(100% - 50px);
    gap: 16px;
  }

  .rr-category-icons > a {
    width: min(180px, 18vw);
    min-width: 120px;
  }

  .rr-category-icons strong {
    font-size: 23px;
  }
}

@media (max-width: 800px) {
  .rr-header,
  .rr-header--home {
    height: 270px;
  }

  .rr-header__logo {
    top: 55px;
    width: 110px;
    height: 110px;
  }

  .rr-header__discord,
  .rr-category-icons,
  .rr-header__utility,
  .rr-sidebar {
    display: none;
  }

  .rr-mobile-toggle {
    position: absolute;
    top: 28px;
    right: 22px;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rr-border);
    border-radius: 12px;
    color: #fff;
    background: var(--rr-panel-strong);
  }

  .rr-mobile-menu {
    position: absolute;
    z-index: 20;
    top: 82px;
    right: 20px;
    left: 20px;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--rr-border);
    border-radius: 16px;
    background: rgba(12, 10, 16, 0.95);
    backdrop-filter: blur(14px);
  }

  .rr-mobile-menu:not(.hidden) {
    display: flex;
  }

  .rr-mobile-menu a {
    padding: 10px 12px;
    color: #c9c3cc;
    font-size: 17px;
    text-transform: uppercase;
  }

  .rr-layout {
    display: block;
    padding: 0 14px;
  }

  .retro-theme .package-list {
    grid-template-columns: 1fr;
  }

  .rr-home-content {
    min-height: 0;
    padding: 32px 22px;
  }

  .retro-theme .package-list .retro-package > img {
    height: 310px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .retro-package,
  .retro-package > img,
  .retro-button {
    transition: none !important;
  }
}

/* Complete storefront components */
.retro-community-strip {
  display: flex;
  width: calc(100% - 32px);
  max-width: 1180px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 18px auto -10px;
  border: 1px solid color-mix(in srgb, var(--color-primary) 28%, transparent);
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  background: color-mix(in srgb, var(--color-primary) 7%, #111214);
  font-family: "Manrope", sans-serif !important;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.retro-community-strip strong {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.retro-community-strip i {
  color: var(--color-primary);
  font-size: 16px;
}

.retro-community-strip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #48d17a;
  box-shadow: 0 0 0 4px rgba(72, 209, 122, 0.1);
}

.retro-content-page {
  width: calc(100% - 32px) !important;
  max-width: 1180px !important;
  margin-top: 34px !important;
}

.retro-category-page,
.retro-cms-page {
  padding: 30px !important;
  border: 1px solid var(--retro-line);
  border-top: 3px solid var(--color-primary);
  background: rgba(13, 14, 16, 0.7);
  box-shadow: var(--retro-shadow);
}

.retro-category-page > div:first-child,
.retro-cms-page > div:first-child {
  position: relative;
  padding-left: 17px;
}

.retro-category-page > div:first-child::before,
.retro-cms-page > div:first-child::before {
  content: "";
  position: absolute;
  inset: 2px auto 2px 0;
  width: 3px;
  background: var(--color-primary);
}

.retro-category-page > div:first-child h2,
.retro-cms-page > div:first-child h2 {
  font-size: 36px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.retro-category-page > div:first-child h3 {
  color: var(--retro-muted) !important;
  font-family: "Manrope", sans-serif;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: none;
}

.retro-category-page .search,
.retro-category-page .tag-filter > button {
  min-height: 48px;
  border-color: var(--retro-line) !important;
  border-radius: 2px !important;
  background: #151619 !important;
}

.retro-category-page .search:focus {
  border-color: var(--color-primary) !important;
}

.retro-product-page {
  gap: 22px !important;
  padding: 0 !important;
}

.retro-product-page > div:first-child {
  align-items: stretch !important;
  gap: 22px !important;
}

.retro-product-page .packageMainSwiper,
.retro-product-page .packageThumbsSwiper,
.retro-product-page .swiper-slide,
.retro-product-page .packageMainSwiper img,
.retro-product-page .packageThumbsSwiper img {
  border-radius: 2px !important;
}

.retro-product-page > div:first-child > div,
.retro-product-page > div:first-child > div > div,
.retro-product-page .package-description,
.retro-product-page #gift-modal-content {
  border: 1px solid var(--retro-line);
  border-radius: 3px !important;
  background: var(--retro-panel) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.retro-product-page > div:first-child > div:first-child {
  padding: 14px !important;
}

.retro-product-page .package-page-name {
  font-size: 38px !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.retro-product-page .product-actions button,
.retro-product-page .product-actions a,
.retro-auth-page .login-with-button,
.retro-checkout-page .checkout-btn,
.store-product-options button[type="submit"] {
  border: 1px solid var(--color-primary) !important;
  border-radius: 2px !important;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700 !important;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.retro-product-page .package-description,
.retro-cms-page .package-description {
  padding: 30px !important;
  color: rgba(255, 255, 255, 0.67) !important;
  font-family: "Manrope", sans-serif;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

.retro-product-page .package-description h1,
.retro-product-page .package-description h2,
.retro-product-page .package-description h3,
.retro-cms-page .package-description h1,
.retro-cms-page .package-description h2,
.retro-cms-page .package-description h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.retro-product-modules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.retro-product-modules > * {
  min-width: 0;
}

.retro-product-modules .retro-module {
  grid-column: auto !important;
}

.retro-product-modules .retro-module--textbox,
.retro-product-modules .retro-module--payments {
  grid-column: 1 / -1 !important;
}

.retro-modules {
  align-items: start;
}

.retro-module {
  grid-column: span 4 !important;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px !important;
  margin: 0 !important;
  padding: 20px !important;
  overflow: hidden;
  border: 1px solid var(--retro-line);
  border-top: 3px solid color-mix(in srgb, var(--color-primary) 72%, #fff);
  border-radius: 3px !important;
  background: var(--retro-panel) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.retro-module__title,
.retro-module > div:first-child h2 {
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px !important;
  font-weight: 700 !important;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.retro-module__content,
.retro-module__empty {
  color: var(--retro-muted);
  font-size: 13px;
  line-height: 1.65;
}

.retro-module--textbox,
.retro-module--payments {
  grid-column: 1 / -1 !important;
}

.retro-module--featured .retro-package {
  width: 100% !important;
  border: 0;
  box-shadow: none;
}

.retro-module--featured .retro-package > img {
  height: 180px !important;
}

.retro-module--featured .fire {
  display: none;
}

.retro-module--payments > div:first-child {
  gap: 3px !important;
}

.retro-module--payments > div:first-child h3 {
  display: none;
}

.retro-module--payments > div:last-child {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.retro-module--payments > div:last-child > div {
  min-width: 0 !important;
  min-height: 84px !important;
  padding: 12px !important;
  border: 1px solid var(--retro-line);
  border-radius: 2px !important;
  background: rgba(255, 255, 255, 0.025) !important;
}

.retro-goal__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 600;
}

.retro-goal__meta span:last-child {
  color: #fff;
}

.retro-progress {
  height: 10px;
  overflow: hidden;
  border: 1px solid var(--retro-line);
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.04);
}

.retro-progress__bar {
  display: block;
  height: 100%;
  max-width: 100%;
  background: var(--color-primary);
  box-shadow: 0 0 18px color-mix(in srgb, var(--color-primary) 42%, transparent);
}

.retro-progress__bar.striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0.18) 75%, transparent 75%);
  background-size: 18px 18px;
}

.retro-progress__bar.is-animated {
  animation: retro-progress-slide 1s linear infinite;
}

@keyframes retro-progress-slide {
  to { background-position: 18px 0; }
}

.retro-community-goal__image {
  width: calc(100% + 40px);
  height: 150px;
  margin: 0 -20px;
  object-fit: cover;
  border-block: 1px solid var(--retro-line);
  filter: saturate(0.9) contrast(1.05);
}

.retro-customer,
.retro-server {
  display: flex;
  align-items: center;
  gap: 12px;
}

.retro-customer img {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  object-fit: cover;
}

.retro-customer div,
.retro-server div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.retro-customer strong,
.retro-server strong {
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.retro-customer span,
.retro-server span {
  color: var(--retro-muted);
  font-size: 11px;
}

.retro-customer b,
.retro-server b {
  color: var(--color-primary);
  font-size: 13px;
}

.retro-server__state {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
}

.retro-server__state.is-online {
  background: #48d17a;
  box-shadow: 0 0 0 5px rgba(72, 209, 122, 0.1);
}

.retro-server__state.is-offline {
  background: #e45252;
  box-shadow: 0 0 0 5px rgba(228, 82, 82, 0.1);
}

.retro-giftcard-form {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.retro-giftcard-form label {
  color: var(--retro-muted);
  font-size: 12px;
}

.retro-giftcard-form > div {
  display: flex;
  gap: 7px;
}

.retro-giftcard-form input,
.retro-theme input,
.retro-theme select,
.retro-theme textarea {
  min-height: 44px;
  border: 1px solid var(--retro-line) !important;
  border-radius: 2px !important;
  color: #fff !important;
  background: #111214 !important;
}

.retro-giftcard-form input {
  min-width: 0;
  flex: 1;
  padding: 0 12px;
}

.retro-giftcard-form button {
  padding: 0 15px;
  border-radius: 2px;
  color: #0d0e10;
  background: var(--color-primary);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.retro-giftcard-result {
  padding: 9px 11px;
  border: 1px solid var(--retro-line);
  font-size: 12px;
}

.retro-giftcard-result.is-valid { color: #64db8c; }
.retro-giftcard-result.is-invalid { color: #f16a6a; }

.retro-tiered-page {
  padding: 0 !important;
}

.retro-tiered-page .tiered-card,
.retro-tiered-page + section > div:last-child > div,
.retro-quote-page > div {
  border: 1px solid var(--retro-line) !important;
  border-radius: 3px !important;
  background: var(--retro-panel) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
}

.retro-tiered-page .tiered-card {
  border-top: 3px solid var(--color-primary) !important;
}

.retro-tiered-page .popular-pill,
.retro-tiered-page button,
.retro-tiered-page .actions a,
.retro-quote-page a,
.retro-quote-page button {
  border-radius: 2px !important;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.retro-auth-page {
  min-height: 560px;
  margin: 0 auto !important;
}

.retro-auth-page [login-popup] > div > div,
.retro-auth-page [discord-popup] > div,
.login-fivem > div,
.login-discord > div,
.options-popup > div {
  border: 1px solid var(--retro-line) !important;
  border-top: 3px solid var(--color-primary) !important;
  border-radius: 3px !important;
  background: var(--retro-panel) !important;
  box-shadow: var(--retro-shadow);
}

.retro-checkout-page {
  min-height: 580px;
  margin-inline: auto;
  padding: 28px;
  border: 1px solid var(--retro-line);
  border-top: 3px solid var(--color-primary);
  background: var(--retro-panel);
  box-shadow: var(--retro-shadow);
}

.retro-checkout-page .basket-inner-wrapper[basket-sidebar] {
  display: flex;
  min-height: 500px;
  flex-direction: column;
}

.retro-checkout-page .basket-package-list {
  flex: 1;
  height: auto !important;
}

.retro-checkout-page .basket-package-list > a,
.basket .basket-package-list > a {
  border: 1px solid var(--retro-line);
  border-radius: 2px !important;
  background: rgba(255, 255, 255, 0.025) !important;
}

.basket {
  background: rgba(5, 6, 7, 0.8) !important;
}

.basket > div {
  border: 1px solid var(--retro-line);
  border-top: 3px solid var(--color-primary);
  border-radius: 3px !important;
  background: #111214 !important;
  box-shadow: -20px 0 70px rgba(0, 0, 0, 0.48);
}

.basket .basket-close,
.basket .checkout-btn,
.basket .basket-package-delete {
  border-radius: 2px !important;
}

.retro-theme footer {
  margin-top: 64px !important;
  border-top: 3px solid color-mix(in srgb, var(--color-primary) 55%, transparent);
  background: #090a0c;
}

.retro-theme footer > div {
  max-width: 1180px !important;
  padding-block: 42px !important;
}

.retro-theme footer img,
.retro-theme footer [class*="rounded-xl"] {
  border-radius: 2px !important;
}

.retro-theme footer h3 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.retro-theme .coupon-strip,
.retro-theme .coupon-pill,
.retro-theme .coupon-close {
  border-radius: 0 !important;
}

.retro-theme .services-cards > div:last-child > div,
.retro-theme .stats-section > div:last-child,
.retro-theme .faq-item,
.retro-theme .faq-section + section,
.retro-theme .tiered-card-wrapper .tiered-card,
.retro-theme .recent-payments > div:last-child > div,
.retro-theme section:has(> div > .rating) > div:last-child > div {
  border: 1px solid var(--retro-line) !important;
  border-radius: 3px !important;
  background: var(--retro-panel) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.retro-theme .services-cards > div:last-child > div,
.retro-theme .stats-section > div:last-child {
  border-top: 3px solid var(--color-primary) !important;
}

.retro-theme .faq-toggle {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.retro-theme .swiper-button-next,
.retro-theme .swiper-button-prev {
  border: 1px solid var(--retro-line);
  border-radius: 2px !important;
  background: rgba(10, 11, 13, 0.88) !important;
}

@media (max-width: 1023px) {
  .retro-module,
  .retro-module--textbox {
    grid-column: span 6 !important;
  }

  .retro-module--payments {
    grid-column: 1 / -1 !important;
  }

  .retro-module--payments > div:last-child {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

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

@media (max-width: 767px) {
  .retro-community-strip {
    width: calc(100% - 32px);
    margin-bottom: -6px;
  }

  .retro-community-strip > span:not(.retro-community-strip__dot) {
    display: none;
  }

  .retro-content-page,
  .retro-category-page,
  .retro-cms-page {
    width: calc(100% - 24px) !important;
  }

  .retro-category-page,
  .retro-cms-page,
  .retro-checkout-page {
    padding: 20px !important;
  }

  .retro-category-page > div:first-child {
    width: 100% !important;
  }

  .retro-module,
  .retro-module--textbox,
  .retro-module--payments {
    grid-column: 1 !important;
  }

  .retro-module--payments > div:last-child {
    grid-template-columns: 1fr !important;
  }

  .retro-product-modules {
    grid-template-columns: 1fr;
  }

  .retro-product-page .package-page-name {
    font-size: 30px !important;
  }
}
