@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-700.woff2") format("woff2");
}

@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/orbitron-700.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/jetbrains-mono-400.woff2") format("woff2");
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e2e8f0;
  background-color: #0a0e27;
  min-height: 100vh;
  overflow-x: clip;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
}

a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #a855f7;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #06b6d4;
  outline-offset: 3px;
}

#mainWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
  max-width: 100%;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 39, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.25);
}

.headerInnerContainer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 0;
}

.logoLink {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #e2e8f0;
  font-family: "Orbitron", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.logoLink:hover {
  color: #a855f7;
}

.logoLink img {
  width: 40px;
  height: auto;
}

.mainNav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mainNavList {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.25rem;
}

.navLinkItem {
  display: block;
  padding: 0.5rem 0.875rem;
  color: #cbd5e1;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
}

.navLinkItem:hover,
.navLinkItemActive {
  background: rgba(124, 58, 237, 0.2);
  color: #e2e8f0;
}

.cartLinkButton {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.cartLinkButton:hover {
  color: #fff;
  filter: brightness(1.1);
}

.cartBadgeCount {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.mobileMenuToggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 8px;
  cursor: pointer;
  color: #e2e8f0;
}

.mobileMenuToggleBar {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}

.mobileMenuToggleActive .mobileMenuToggleBar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobileMenuToggleActive .mobileMenuToggleBar:nth-child(2) {
  opacity: 0;
}

.mobileMenuToggleActive .mobileMenuToggleBar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobileNavOverlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(6, 8, 24, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobileNavOverlayVisible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobileNavDrawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 160;
  width: min(320px, 88vw);
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #0a0e27;
  border-left: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.45);
  padding: 1.25rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.32s ease,
    visibility 0.32s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobileNavDrawerOpen {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
}

.mobileNavDrawerHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.mobileNavDrawerTitle {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  color: #a855f7;
  letter-spacing: 0.05em;
}

.mobileNavCloseBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.mobileNavCloseBtn:hover {
  background: rgba(124, 58, 237, 0.15);
}

.mobileNavList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobileNavList a {
  display: block;
  padding: 0.875rem 1rem;
  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
}

.mobileNavList a:hover,
.mobileNavList a.navLinkItemActive {
  background: rgba(124, 58, 237, 0.2);
  color: #e2e8f0;
}

.mobileNavCartBtn {
  margin-top: auto;
  justify-content: center;
  width: 100%;
}

body.mobileNavOpen {
  overflow: hidden;
  touch-action: none;
}

.siteMain {
  flex: 1;
}

.siteFooter {
  background: #060818;
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  padding: 3rem 1.5rem 2rem;
  margin-top: auto;
}

.footerGridContainer {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.footerBrandBlock h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #a855f7;
}

.footerBrandBlock p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footerNavBlock h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 1rem;
}

.footerNavList {
  list-style: none;
}

.footerNavList li {
  margin-bottom: 0.5rem;
}

.footerNavList a {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footerNavList a:hover {
  color: #06b6d4;
}

.footerLegalBlock {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.footerPaymentRow {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.5rem;
}

.footerPaymentIconsWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.footerSocialLinksWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.footerSocialLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(124, 58, 237, 0.35);
  background: rgba(15, 23, 42, 0.6);
  color: #94a3b8;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
}

.footerSocialLink:hover {
  color: #06b6d4;
  border-color: rgba(6, 182, 212, 0.5);
  background: rgba(6, 182, 212, 0.08);
}

.footerSocialIcon {
  display: block;
}

.heroSection {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.heroBgImageWrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.heroBgImageWrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroOverlayLayer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.85) 0%,
    rgba(26, 16, 64, 0.7) 50%,
    rgba(10, 14, 39, 0.9) 100%
  );
}

.heroContentWrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}

.heroTitleMain {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #e2e8f0, #a855f7, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.heroSubtitleText {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 560px;
  margin-bottom: 2rem;
}

.heroSearchForm {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 640px;
}

.heroActionButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

.heroSecondaryBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.searchInputField {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1.125rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 10px;
  color: #e2e8f0;
  font-family: inherit;
  font-size: 1rem;
}

.searchInputField::placeholder {
  color: #64748b;
}

.primaryActionButton {
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    filter 0.2s,
    transform 0.2s;
}

.primaryActionButton:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.secondaryActionButton {
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: #06b6d4;
  border: 1px solid #06b6d4;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.secondaryActionButton:hover {
  background: rgba(6, 182, 212, 0.1);
  color: #67e8f9;
}

.sectionBlockContainer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.sectionTitleHeading {
  font-family: "Orbitron", sans-serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
}

.sectionSubtitleText {
  color: #94a3b8;
  margin-bottom: 2rem;
  max-width: 600px;
}

.trendsGridAsymmetric {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.trendCardLarge {
  grid-row: span 2;
  background: linear-gradient(
    160deg,
    rgba(124, 58, 237, 0.15),
    rgba(6, 182, 212, 0.08)
  );
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.trendCardSmall {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 12px;
  padding: 1.25rem;
}

.trendStatValue {
  font-family: "JetBrains Mono", monospace;
  font-size: 2rem;
  color: #06b6d4;
  font-weight: 700;
}

.trendStatLabel {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.categoryGridWrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.categoryCardItem {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 180px;
  border: 1px solid rgba(124, 58, 237, 0.25);
  transition:
    transform 0.25s,
    border-color 0.25s;
}

.categoryCardItem:hover {
  transform: translateY(-4px);
  border-color: #a855f7;
}

.categoryCardItem:nth-child(2) {
  grid-column: span 2;
  min-height: 220px;
}

.categoryCardItem:nth-child(5) {
  grid-column: span 2;
}

.categoryImageWrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.categoryImageWrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.categoryOverlayDark {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 14, 39, 0.95) 0%,
    rgba(10, 14, 39, 0.3) 100%
  );
}

.categoryLabelText {
  position: relative;
  z-index: 2;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  height: 100%;
}

.categoryLabelText h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.categoryLabelText p {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.eventsScrollTrack {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.eventsScrollTrack::-webkit-scrollbar {
  height: 6px;
}

.eventsScrollTrack::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.5);
  border-radius: 3px;
}

.eventsScrollTrack::-webkit-scrollbar-thumb {
  background: #7c3aed;
  border-radius: 3px;
}

.eventCardInner {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.eventCardInner:hover {
  border-color: #06b6d4;
  transform: scale(1.02);
}

.eventCardInnerWide {
  flex: 0 0 380px;
}

.eventCardInnerTall {
  flex: 0 0 300px;
}

.eventCardImageWrap {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.eventCardImageWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eventCardBodyContent {
  padding: 1.125rem;
}

.eventCardTitleText {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.eventCardMetaText {
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.eventCardPriceTag {
  font-family: "JetBrains Mono", monospace;
  color: #06b6d4;
  font-weight: 600;
}

.catalogAsymmetricGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.catalogGridItem {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.2);
  min-height: 280px;
}

.catalogGridItem:nth-child(1) {
  grid-column: span 7;
  min-height: 360px;
}

.catalogGridItem:nth-child(2) {
  grid-column: span 5;
}

.catalogGridItem:nth-child(3) {
  grid-column: span 4;
}

.catalogGridItem:nth-child(4) {
  grid-column: span 4;
}

.catalogGridItem:nth-child(5) {
  grid-column: span 4;
}

.catalogGridItem:nth-child(6) {
  grid-column: span 8;
  min-height: 320px;
}

.catalogGridItem:nth-child(7) {
  grid-column: span 4;
}

.catalogCardImageLayer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.catalogCardImageLayer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalogCardOverlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 14, 39, 0.95),
    rgba(10, 14, 39, 0.2)
  );
}

.catalogCardContent {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  height: 100%;
}

.eventDetailHero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.eventDetailHeroImage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.eventDetailHeroImage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eventDetailHeroOverlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    #0a0e27 0%,
    rgba(10, 14, 39, 0.5) 60%,
    rgba(10, 14, 39, 0.3) 100%
  );
}

.eventDetailHeroContent {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 1.5rem 3rem;
}

.eventDetailLayoutGrid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
}

.analyticsPanelBlock {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 16px;
  padding: 1.75rem;
  margin-top: 2rem;
}

.analyticsPanelBlock h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #06b6d4;
}

.probabilityMeterRow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.probabilityMeterLabel {
  flex: 0 0 140px;
  font-size: 0.875rem;
  color: #94a3b8;
}

.probabilityMeterBar {
  flex: 1;
  height: 10px;
  background: rgba(51, 65, 85, 0.5);
  border-radius: 5px;
  overflow: hidden;
}

.probabilityMeterFill {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
}

.probabilityMeterValue {
  flex: 0 0 48px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  color: #a855f7;
  text-align: right;
}

.chartPlaceholderWrap {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.5);
}

.ticketPurchaseBox {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 16px;
  padding: 1.75rem;
  position: sticky;
  top: 5rem;
}

.ticketPurchaseBox h2 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.formFieldGroup {
  margin-bottom: 1rem;
}

.formFieldGroup label {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.375rem;
}

.formInputControl,
.formSelectControl,
.formTextareaControl {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(51, 65, 85, 0.6);
  border-radius: 8px;
  color: #e2e8f0;
  font-family: inherit;
  font-size: 0.9375rem;
}

.formTextareaControl {
  min-height: 120px;
  resize: vertical;
}

.cartTableWrap {
  overflow-x: auto;
}

.cartTableGrid {
  width: 100%;
  border-collapse: collapse;
}

.cartTableGrid th,
.cartTableGrid td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(51, 65, 85, 0.4);
}

.cartTableGrid th {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.cartItemThumb {
  width: 64px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
}

.cartItemThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cartSummaryPanel {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 14px;
  padding: 1.75rem;
  margin-top: 2rem;
  max-width: 420px;
  margin-left: auto;
}

.cartSummaryRow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.cartSummaryTotal {
  font-size: 1.25rem;
  font-weight: 700;
  color: #06b6d4;
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.checkoutLayoutGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.articlePageLayout {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  gap: 2.5rem;
}

.articleSidebarNav {
  flex: 0 0 260px;
  position: sticky;
  top: 5rem;
  align-self: flex-start;
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
}

.articleSidebarNav h2 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 1rem;
}

.articleTocList {
  list-style: none;
  border-left: 2px solid rgba(124, 58, 237, 0.3);
}

.articleTocList li {
  margin-bottom: 0.25rem;
}

.articleTocLink {
  display: block;
  padding: 0.5rem 0 0.5rem 1rem;
  font-size: 0.875rem;
  color: #94a3b8;
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.articleTocLink:hover,
.articleTocLinkActive {
  color: #06b6d4;
  border-left-color: #06b6d4;
}

.articleMainContent {
  flex: 1;
  min-width: 0;
}

.articleMainContent h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: #e2e8f0;
}

.articleMainContent h3 {
  font-size: 1.125rem;
  margin: 1.75rem 0 0.75rem;
  color: #a855f7;
}

.articleMainContent h4 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
  color: #cbd5e1;
}

.articleMainContent p {
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.articleMainContent ul,
.articleMainContent ol {
  margin: 0 0 1rem 1.5rem;
  color: #cbd5e1;
}

.articleConclusionBox {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.12),
    rgba(6, 182, 212, 0.08)
  );
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 14px;
  padding: 1.75rem;
  margin: 2rem 0;
}

.legalPageContent {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.legalPageContent h2 {
  font-size: 1.375rem;
  margin: 2rem 0 0.75rem;
  color: #a855f7;
}

.legalPageContent h3 {
  font-size: 1.125rem;
  margin: 1.5rem 0 0.5rem;
  color: #06b6d4;
}

.legalPageContent p {
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.legalPageContent ul {
  margin: 0 0 1rem 1.5rem;
  color: #cbd5e1;
}

.pageHeaderBanner {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.15),
    rgba(6, 182, 212, 0.08)
  );
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  padding: 3rem 1.5rem;
}

.pageHeaderBannerInner {
  max-width: 1280px;
  margin: 0 auto;
}

.pageHeaderBanner h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.breadcrumbNav {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.breadcrumbNav a {
  color: #64748b;
}

.emptyCartMessage {
  text-align: center;
  padding: 4rem 1.5rem;
  color: #94a3b8;
}

.cookieBannerFixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1400;
  background: rgba(6, 8, 24, 0.97);
  border-top: 1px solid rgba(124, 58, 237, 0.4);
  padding: 1.25rem 1.5rem;
  transform: translateY(0);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.cookieBannerFixedHidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookieBannerInner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookieBannerText {
  flex: 1;
  min-width: 260px;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.cookieBannerActions {
  display: flex;
  gap: 0.75rem;
}

.successModalOverlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.successModalOverlayVisible {
  opacity: 1;
  visibility: visible;
}

.successModalDialog {
  background: #0f172a;
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 16px;
  padding: 2rem;
  max-width: 440px;
  width: 100%;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.successModalOverlayVisible .successModalDialog {
  transform: scale(1);
}

.successModalDialog h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #06b6d4;
}

.successModalDialog p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.quantityControlWrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantityBtnControl {
  width: 32px;
  height: 32px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 6px;
  color: #e2e8f0;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filterBarContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.filterChipButton {
  padding: 0.5rem 1rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 999px;
  color: #94a3b8;
  font-family: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.filterChipButton:hover,
.filterChipActive {
  border-color: #7c3aed;
  color: #e2e8f0;
}

.neonCardWrapper {
  border-radius: 16px;
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    transform 0.25s;
}

.timerBlockInner {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0 24px rgba(6, 182, 212, 0.12);
}

.timerBlockLabel {
  font-size: 0.9375rem;
  color: #94a3b8;
  margin: 0;
}

.timerCountdownRow {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.timerUnitBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.timerUnitValue {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.75rem;
  font-weight: 700;
  color: #06b6d4;
  line-height: 1.1;
}

.timerUnitLabel {
  font-size: 0.6875rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.timerSepChar {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.5rem;
  color: #a855f7;
  margin-bottom: 1rem;
}

.soldOutCardsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.soldOutCardItem a {
  display: block;
  color: inherit;
}

.soldOutCardCyan {
  border: 1px solid rgba(6, 182, 212, 0.5);
  box-shadow:
    0 0 30px rgba(6, 182, 212, 0.15),
    inset 0 0 20px rgba(6, 182, 212, 0.05);
}

.soldOutCardPurple {
  border: 1px solid rgba(168, 85, 247, 0.5);
  box-shadow:
    0 0 30px rgba(168, 85, 247, 0.15),
    inset 0 0 20px rgba(168, 85, 247, 0.05);
}

.soldOutCardItem:hover {
  transform: translateY(-4px);
}

.soldOutCardCyan:hover {
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
}

.soldOutCardPurple:hover {
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

.soldOutCardImageWrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.soldOutCardImageWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soldOutCardBody {
  padding: 1.25rem;
  background: rgba(10, 14, 39, 0.9);
}

.soldOutBadgeTag {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: #f87171;
  background: rgba(248, 113, 113, 0.15);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.soldOutCardBody h3 {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}

.soldOutCardBody p {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.soldOutDiscountTag {
  font-family: "JetBrains Mono", monospace;
  color: #4ade80;
  font-weight: 600;
  font-size: 0.9375rem;
}

.artistScrollTrack {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scroll-snap-type: x mandatory;
}

.artistAvatarCard {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  color: #e2e8f0;
  scroll-snap-align: start;
  padding: 0.5rem;
  border-radius: 12px;
  transition: transform 0.2s;
}

.artistAvatarCard:hover {
  color: #06b6d4;
  transform: scale(1.05);
}

.artistAvatarRingSmall {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
  overflow: hidden;
}

.artistAvatarRingSmall img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0a0e27;
}

.artistAvatarName {
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  max-width: 96px;
}

.locationCardsGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.locationCardItem {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 200px;
  border: 1px solid rgba(124, 58, 237, 0.25);
  transition:
    border-color 0.25s,
    transform 0.25s;
}

.locationCardItem:hover {
  border-color: #06b6d4;
  transform: translateY(-3px);
}

.locationCardImageWrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.locationCardImageWrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.locationCardOverlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 14, 39, 0.95),
    rgba(10, 14, 39, 0.35)
  );
}

.locationCardLabel {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 200px;
  padding: 1rem;
  font-family: "Orbitron", sans-serif;
  font-size: 0.8125rem;
  color: #06b6d4;
  text-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
}

.cadeaubonDesignPicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cadeaubonDesignBtn {
  padding: 0.5rem 1.125rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(51, 65, 85, 0.6);
  border-radius: 999px;
  color: #94a3b8;
  font-family: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.cadeaubonDesignActive,
.cadeaubonDesignBtn:hover {
  border-color: #a855f7;
  color: #e2e8f0;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.25);
}

.cadeaubonCardsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cadeaubonCardButton {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
  text-align: center;
}

.cadeaubonCardItem {
  border: 1px solid rgba(124, 58, 237, 0.35);
  background: linear-gradient(
    160deg,
    rgba(124, 58, 237, 0.1),
    rgba(6, 182, 212, 0.06)
  );
}

.cadeaubonCardItem:hover {
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.25);
}

.cadeaubonCardImageWrap {
  height: 140px;
  overflow: hidden;
}

.cadeaubonCardImageWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cadeaubonAmountText {
  display: block;
  padding: 1rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #06b6d4;
}

.howItWorksStepList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
  counter-reset: step;
}

.howItWorksStepItem {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 14px;
  padding: 1.5rem;
  position: relative;
}

.howItWorksStepIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.875rem;
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.4);
}

.howItWorksStepItem h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
}

.howItWorksStepItem p {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
}

.trustGuaranteeList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
}

.trustGuaranteeItem {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}

.trustIconWrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.12);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.2);
}

.trustGuaranteeItem h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
}

.trustGuaranteeItem p {
  font-size: 0.8125rem;
  color: #94a3b8;
  margin: 0;
}

.faqAccordionWrap {
  max-width: 800px;
}

.faqAccordionItem {
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.faqAccordionTrigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  color: #e2e8f0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faqAccordionTrigger:hover {
  color: #06b6d4;
}

.faqAccordionIcon {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.25rem;
  color: #a855f7;
  flex-shrink: 0;
}

.faqAccordionPanel {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0;
}

.faqAccordionPanelOpen {
  max-height: 320px;
  padding-bottom: 1.25rem;
}

.faqAccordionPanel p {
  color: #94a3b8;
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.65;
}

.blogCardsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blogCardsGridCompact .blogCardImageWrap {
  height: 140px;
}

.blogCardItem a {
  display: block;
  color: inherit;
}

.blogCardItem {
  border: 1px solid rgba(124, 58, 237, 0.3);
  background: rgba(15, 23, 42, 0.7);
}

.blogCardItem:hover {
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.2);
  transform: translateY(-3px);
}

.blogCardImageWrap {
  height: 180px;
  overflow: hidden;
}

.blogCardImageWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogCardBody {
  padding: 1.25rem;
}

.blogCardBody h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.blogCardBody p {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.blogCardMeta {
  font-size: 0.75rem;
  color: #64748b;
  font-family: "JetBrains Mono", monospace;
}

.contactLayoutGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contactAddressBlock {
  font-style: normal;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.mapContainerWrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.12);
}

.contactMapFrame {
  display: block;
  border: none;
  min-height: 420px;
}

.mapCoordsText {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}

.eventDynamicMetaPanel {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.eventMetaDataList {
  display: grid;
  gap: 0.75rem;
}

.eventMetaDataRow {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.4);
}

.eventMetaDataRow dt {
  font-size: 0.875rem;
  color: #64748b;
}

.eventMetaDataRow dd {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9375rem;
  color: #e2e8f0;
  margin: 0;
  text-align: right;
}

.eventPriceHighlight {
  color: #06b6d4 !important;
  font-weight: 700;
}

.eventMainImageWrap {
  border-radius: 14px;
  overflow: hidden;
  margin: 1rem 0 1.5rem;
  border: 1px solid rgba(51, 65, 85, 0.5);
}

.eventDescriptionText {
  color: #cbd5e1;
  line-height: 1.75;
}

.eventMetaLineText {
  color: #94a3b8;
  margin-top: 0.5rem;
}

.eventSidebarPriceText {
  margin: 1rem 0;
  font-family: "JetBrains Mono", monospace;
  color: #06b6d4;
  font-size: 1.125rem;
}

.artistProfileLayout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.artistAvatarRing {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  box-shadow: 0 0 32px rgba(124, 58, 237, 0.45);
  overflow: hidden;
  flex-shrink: 0;
}

.artistAvatarRing img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0a0e27;
}

.artistTypeBadge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a855f7;
  margin-bottom: 0.5rem;
}

.artistProfileInfo h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.artistProfileInfo p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.articleHeaderBlock h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 1rem 0 0.5rem;
}

.articleMetaLine {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.articleHeroImageWrap {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.articleBodyContent p {
  margin-bottom: 1.25rem;
  color: #cbd5e1;
  line-height: 1.75;
}

.emptyStateMessage {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 480px;
  margin: 0 auto;
}

.emptyStateMessage h2 {
  margin-bottom: 1rem;
}

.emptyStateMessage p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.hoeHetWerktSection {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.catalogGridItem:nth-child(8) {
  grid-column: span 5;
}

.catalogGridItem:nth-child(9) {
  grid-column: span 7;
  min-height: 320px;
}

.catalogGridItem:nth-child(10) {
  grid-column: span 4;
}

.catalogGridItem:nth-child(11) {
  grid-column: span 4;
}

.catalogGridItem:nth-child(12) {
  grid-column: span 4;
}

.catalogGridItem:nth-child(13) {
  grid-column: span 6;
}

.catalogGridItem:nth-child(14) {
  grid-column: span 6;
}

.catalogGridItem:nth-child(15) {
  grid-column: span 12;
  min-height: 300px;
}

@media (max-width: 1024px) {
  .footerGridContainer {
    grid-template-columns: 1fr 1fr;
  }

  .trendsGridAsymmetric {
    grid-template-columns: 1fr;
  }

  .trendCardLarge {
    grid-row: span 1;
  }

  .categoryGridWrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .categoryCardItem:nth-child(2),
  .categoryCardItem:nth-child(5) {
    grid-column: span 1;
  }

  .eventDetailLayoutGrid {
    grid-template-columns: 1fr;
  }

  .ticketPurchaseBox {
    position: static;
  }

  .checkoutLayoutGrid {
    grid-template-columns: 1fr;
  }

  .articlePageLayout {
    flex-direction: column;
  }

  .articleSidebarNav {
    position: static;
    flex: none;
    width: 100%;
  }

  .catalogGridItem:nth-child(n) {
    grid-column: span 12;
  }

  .soldOutCardsGrid {
    grid-template-columns: 1fr;
  }

  .locationCardsGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cadeaubonCardsGrid {
    grid-template-columns: 1fr;
  }

  .howItWorksStepList {
    grid-template-columns: repeat(2, 1fr);
  }

  .trustGuaranteeList {
    grid-template-columns: repeat(2, 1fr);
  }

  .blogCardsGrid {
    grid-template-columns: 1fr;
  }

  .contactLayoutGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .headerInnerContainer {
    flex-wrap: nowrap;
  }

  .mobileMenuToggle {
    display: flex;
    margin-left: auto;
  }

  .mainNav {
    display: none;
  }
}

@media (max-width: 768px) {
  .headerInnerContainer {
    flex-wrap: nowrap;
  }

  .mobileMenuToggle {
    display: flex;
    margin-left: auto;
  }

  .mainNav {
    display: none;
  }

  .footerGridContainer {
    grid-template-columns: 1fr;
  }

  .categoryGridWrap {
    grid-template-columns: 1fr;
  }

  .howItWorksStepList {
    grid-template-columns: 1fr;
  }

  .trustGuaranteeList {
    grid-template-columns: 1fr;
  }

  .locationCardsGrid {
    grid-template-columns: 1fr;
  }
}
