/* ================================================================
   DESIGN TOKENS ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Figma vars
================================================================ */
:root {
    --color-bg: #111111;
    --color-text: #f1f1f1;
    --color-muted: #9d9d9d;
    --color-accent: #f2d87c;
    --color-card: rgba(255, 255, 255, 0.05);
    --color-overlay: rgba(17, 17, 17, 0.9);
    --color-border: rgba(255, 255, 255, 0.1);
  
    --font: "Plus Jakarta Sans", sans-serif;
  
    /* Horizontal padding ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â mobile-first */
    --px: 16px;
    --gap: 20px;
  
    /* Border radii */
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
   
  
    --transition: 0.22s ease;
  }
  
  @media (min-width: 769px) {
    :root {
      --px: 32px; 
    }
  }
  @media (min-width: 1025px) {
    :root {
      --px: 100px;
    }
  }
  @media (min-width: 1980px) {
    :root {
      --px: 5%;
    }
  }
  @media (min-width: 3000px) {
    :root {
      --px: 10%;
    }
  }
  
  /* ================================================================
       RESET
    ================================================================ */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: var(--font);
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
  }
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
  }
  ol,
  ul {
    /* list-style: none; */
  }
  em {
    font-style: italic;
  }
  
  /* ================================================================
       UTILITY
    ================================================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.714;
    min-height: 40px;
    cursor: pointer;
    transition:
      opacity var(--transition),
      transform var(--transition);
  }
  .tour__card:hover .tour__card-btn,
  .btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
  }
  .btn:active {
    transform: translateY(0);
  }
  
  .btn--primary {
    background: var(--color-accent);
    color: var(--color-bg);
    font-weight: 600;
  }
  
  .btn--secondary {
    border: 1px solid var(--color-text);
    color: var(--color-text);
    font-weight: 600;
  }

  .footer__btn {
    align-self: center;
    margin-top: 12px;
    min-width: 140px;
  }
  
  .hero__btns {
    /* display: flex; */
    grid-gap: 12px;
    margin: 12px 0 0;
    width: 100%;
  }
  
  .hero__info-link {
    color: var(--color-accent);
    border: 1px solid rgba(242, 216, 124, 0.4);
    padding: 9px 12px;
    font-size: 12px;
    width: 100%;
    text-align: left;
    justify-content: space-between;
  }
  
  .hero__date-info:last-child:before {
    content: '-';
    display: inline-block;
    margin: 0 3px;
  }
  .hero__info-title {
    font-size: 14px;
    color: rgba(157, 157, 157, 1);
    margin-bottom: 4px;
    display: none;
  }
  
  .hero__info-location .hero__info-title  {
    display: block;
    font-size: 12px;
    margin-bottom: 2px;
  }
  
  /* ================================================================
       HEADER
    ================================================================ */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 27px 8px 16px;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
  }
  .header--scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  }
  
  .header__logo {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
  }
  .header__logo-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.256;
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.1px;
  }
  .header__logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-muted);
    line-height: 1.167;
  }
  
  /* Nav + btn ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â hidden on mobile */
  .header__nav {
    display: none;
  }
  .header__btn {
    display: none;
  }
  
  /* Hamburger */
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 26px;
    height: 36px;
    padding: 5px;
    flex-shrink: 0;
  }
  .header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition:
      transform var(--transition),
      opacity var(--transition);
  }
  .header__burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header__burger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .header__burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* Mobile menu */
  .header__mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-muted);
    padding: 16px 20px 24px;
    gap: 4px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  }
  .header__mobile-menu.is-open {
    display: flex;
  }
  .header__mobile-link {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    transition: color var(--transition);
    text-align: center;
  }
  .header__mobile-link:last-of-type {
    border-bottom: none;
  }
  .header__mobile-link:hover {
    color: var(--color-accent);
  }
  .header__mobile-btn {
    margin-top: 12px;
    align-self: flex-start;
  }
 
    .lang__links {
        display: flex;
        justify-content: space-around;
        max-width: 250px;
        margin: 20px auto;
    } 
    .lang__link {
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
      transition: .3s all;
    }
  .lang__link:hover {
    color: var(--color-accent);
  }
  .lang__link:active {
    color: var(--color-accent);
  } 
  @media (min-width: 769px) {
    .header {
      padding: 10px 26px 9px 16px;
    }

    .header__burger {
      height: 26px;
    }
  }
  @media (min-width: 1024px) { 
    .header__nav {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .header__nav-link {
      font-size: 14px;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: var(--r-sm);
      transition:
        background var(--transition),
        color var(--transition);
    }
    .header__nav-link:hover {
      background: var(--color-card);
    }
    .header__btn {
      display: inline-flex;
      min-width: 140px;
      margin-left: 16px;
    }
    .header__burger {
      display: none;
    }
    .header {
      padding: 13px var(--px) 12px;
      min-height: 66px;
    }
    .header__logo-title {
      font-size: 18px;
    }
    .header__logo-sub {
      line-height: 1;
    }
    .header__logo {
      gap: 5px;
    }
     
    .lang {
        position: relative;
    }
    .lang__link-active:hover ~ .lang__links,
    .lang:hover .lang__links {
        opacity: 1;
        visibility: visible;
        z-index: 1;
        top: 130%;
    }
    .lang__links {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        z-index: -1; 
        transition: .3s all;
        left: 50%;
        transform: translateX(-50%);
        top: 150%;
        background: var(--color-bg); 
        border-radius: var(--r-sm);
        border: 1px solid var(--color-muted);
        display: flex;
        flex-direction: column;
        margin: 0;
    } 
    .lang__link {
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: .3s all;
        padding: 10px;
        color: var(--color-text);
        text-align: center;
    }
    .lang__link:hover {
        color: var(--color-accent);
    }
    .lang__link:active {
        color: var(--color-accent);
    } 
  }
  
  /* ================================================================
       HERO
    ================================================================ */
  .hero {
    position: relative;
    overflow: hidden;
  }
  .hero__img {
    width: auto;
    height: 100%;
    aspect-ratio: 16/9;
  }
  .hero__img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .hero__img-wrapper:after {
    position: absolute;
    right: 0;
    content: "";
    height: 40vh;
    left: 0;
    bottom: -1px;
    z-index: 4;
    background: linear-gradient(
      180deg,
      rgba(17, 17, 17, 0) 13.02%,
      var(--color-bg) 90%
    );
    background: linear-gradient(to top, rgba(17, 17, 17, 1), rgba(17, 17, 17, 0.4),  rgba(17, 17, 17, 0), transparent 100%);
  }
  
  .hero__tiny-text {
    font-size: 12px;
    color: rgba(57, 57, 57, 1);
    display: block;
    margin-top: -9px;
    text-align: center;
  }
  .hero__img img {
    z-index: 1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    height: 100%;
    width: 100%;
  }
  
  .hero__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(17, 17, 17, 0) 50%, rgba(17, 17, 17, 1) 100%),
      linear-gradient(90deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0) 45%);
    z-index: 1;
  }
  @media screen and (min-width: 1024px) {
    .hero__img {
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      right: 0;
      position: absolute;
      z-index: 10;
    }
  
    .hero__img-wrapper {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
  
    .hero__img img {
      flex: 1;
    }
  
    .hero__img-wrapper:after {
      height: 200px;
      background: linear-gradient(  to top,  var(--color-bg) 5%,  transparent 100%);
    }
  }
  @media screen and (max-width: 768px) {
    .hero__img {
      min-height: 0;
    }
  } 
  
  .hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
  .hero__meta {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 3px 16px 40px 16px;
    gap: 20px;
    position: relative;
    z-index: 20;
    box-sizing: content-box;
  }
  
  .hero__meta::after {
    position: absolute;
    content: "";
    width: 300px;
    left: 98%;
    top: 0;
    bottom: 0;
    z-index: 2;
  /*  background: linear-gradient(
      270deg,
      rgba(17, 17, 17, 0) 10%,
      rgba(17, 17, 17, 0) 60%,
      rgba(17, 17, 17, 0.3) 75%,
      var(--color-bg) 95%,
      var(--color-bg) 100%
    );
    background: linear-gradient(
  270deg,
  rgba(17, 17, 17, 0) 0%,
  rgba(17, 17, 17, 0) 40%,
  rgba(17, 17, 17, 0.05) 55%,
  rgba(17, 17, 17, 0.15) 65%,
  rgba(17, 17, 17, 0.4) 78%,
  var(--color-bg) 92%,
  var(--color-bg) 100%
);
     background: linear-gradient(
  in oklch,
  270deg,
  transparent 0%,
  transparent 40%,
  var(--color-bg) 100%
); */
    /* background: linear-gradient(to right, var(--color-bg), #3b3b3b, #787878, #cacaca, transparent); */
    background: linear-gradient(
  to right,
  var(--color-bg) 5%,
  transparent 100%
);
  }
  .hero__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    border: 1px solid rgba(242, 216, 124, 0.4);
    padding: 4px 12px;
    border-radius: 100px;
  }
  .hero__info {
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .hero__artist {
    font-size: 23.5px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-text);
  }
  .hero__tour-name {
    font-size: 18.5px;
    font-weight: 400;
    line-height: 1.1;
    color: rgba(241, 241, 241, 1);
    letter-spacing: -0.2px;
  }
  .hero__info-dates {
    margin-top: 20px;
    margin-bottom: 7px;
    display: flex;
    gap: 0;
  }
  .hero__date {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(241, 241, 241, 1);
  }
  .hero__date-loc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
  }
  .hero__sep {
    color: var(--color-muted);
  }
  .hero__location {
    color: var(--color-muted);
  }
  
  /* Countdown */
  .hero__countdown {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hero__countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 48px;
  }
  .hero__countdown-num {
    font-size: 30px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .hero__countdown-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .hero__countdown-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-muted);
    margin-bottom: 18px;
    flex-shrink: 0;
  }
  .hero__cta {
    align-self: flex-start;
    padding: 8px 24px;
    min-width: 140px;
    display: block;
    text-align: center;
    font-size: 12px;
  }
  
  .hero__cta:not(:last-child) {
     margin: 0 0 12px;
  }
  
  @media (min-width: 769px) {
    .hero__info-title {
      display: block;
      font-size: 12px;
      margin-bottom: 7px;
    }
    .hero__date-info:last-child:before {
      display: none
    }
    .hero__meta {
      padding: 64px 32px 34px 32px;
    }
    .hero__artist {
      font-size: 25px;
      letter-spacing: -0.7px;
      margin: 0 0 9px;
    }
    .hero__tour-name {
      letter-spacing: 0.7px;
      font-size: 28px;
    }
    .hero__info-dates {
      margin-top: 12px;
      gap: 32px;
    }
    .hero__info-location .hero__info-title {
      margin-top: 0;
      margin-bottom: 6px;
    }
    .hero__btns {
      display: flex;
      flex-direction: row;
      margin: -9px 0 0;
    }
    .hero__tiny-text {
      text-align: left
    }
    .hero__info-link {
      width: auto
    }
    .hero__cta:not(:last-child) {
      margin: 0
    }
  }
  @media (min-width: 1024px) {
    .hero__meta {
      padding: 62px 100px;
      max-width: 430px; 
    }
    .hero__artist {
      font-size: 49px;
      margin: 0;
    }
    .hero__info-dates {
      margin-top: 32px;
      gap: 39px;
      margin-bottom: 15px;
    }
    .hero__info-title {
      font-size: 14px;
      margin: 2px 0 0;
    }
    .hero__date {
      font-size: 23px;
    }
    .hero__cta,
    .hero__info-location .hero__info-title {
      font-size: 14px;
      min-width: 180px;
    }
    .hero__info-link {
      width: auto;
      font-size: 14px;
    }
    .hero__btns {
      margin: 18px 0 0;
    }
  }
   @media (min-width: 1980px) {
     .hero__meta {
        padding: 62px 100px;
        max-width: 430px;
        padding: 0 100px 0 var(--px);
        min-height: 33vw;
        justify-content: center;
        max-height: 100vh;
      }
    }
  /* ================================================================
       TOUR DATES
    ================================================================ */
  .tour {
    padding: 5px 0;
  }
  
  .tour__base {
    padding: 0 var(--px);
    display: flex;
    flex-direction: column;
    gap: 32px;
  } 
  .tour__slider-heading {
    font-size: 20px
  }
    
  
  .tour__swiper {
    overflow: hidden;
    margin: 20px 0 0;
  }
  .tour__swiper .swiper-slide {
    overflow: hidden;
    /* transform: scale(0.8); */
    transition: .3s all;
  }
  
  .tour__swiper .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
  
  .tour__slide-img {
    width: 100%;
    /* height: 260px; */
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform 0.4s ease;
  }
  .tour__swiper .swiper-slide:hover .tour__slide-img {
    transform: scale(1.02);
  }
   
    /* .tour__swiper .swiper-button-prev {
    left: 0;
  }
    .tour__swiper .swiper-button-next {
    right: 0;
  }
  .tour__swiper:hover .swiper-button-prev,
  .tour__swiper:hover .swiper-button-next {
    opacity: 1;
  }
  .tour__swiper:hover .swiper-button-prev {
    left: 10px;
  }
  .tour__swiper:hover .swiper-button-next {
    right: 10px;
  } */ 
  .tour__swiper .swiper-button-prev,
  .tour__swiper .swiper-button-next {
    color: var(--color-text);
    background: var(--color-accent);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    transition: all var(--transition);
    /* opacity: 0;  */
  }
  .tour__swiper .swiper-button-prev:hover,
  .tour__swiper .swiper-button-next:hover {
    background: #e9cc66;
  }
  .tour__swiper .swiper-button-prev::after,
  .tour__swiper .swiper-button-next::after {
    font-size: 0;
    font-weight: 700;
    background-image: url(../images/arrow-right-black.png);
    background-size: 16px;
    background-position: 50%;
    background-repeat: no-repeat;
    display: block;
    width: 16px;
    height: 16px;
  }

  .tour__swiper .swiper-button-prev::after {
    transform: rotate(180deg)
  }
  
  /* ---- Tour content ---- */
  .tour__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  /* Heading ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â sticky on mobile only */
  .tour__heading {
    position: sticky;
    z-index: 10;
    background: var(--color-bg);
    padding: 10px 0 5px;
    z-index: 50;
  }
  .tour__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.0075em;
    color: var(--color-text);
  }
  .tour__subtitle {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-muted);
    margin-top: 4px;
  }
  
  /* ---- Filters ---- */
  .tour__filters {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  /* Dropdown ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â All Locations */
  .dropdown {
    position: relative;
    flex: 1;
    min-width: 150px;


  }

  .dropdown-selected {
    cursor: pointer;
    position: relative;
 
  
  }
  
  /* Panel ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â shown when .dropdown--open */
  .dropdown-list {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #757575;
    border-radius: var(--r-md);
    z-index: 50;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    max-height: 360px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
  }
  
  .dropdown-selected-input {
    background:  transparent;
    border: 1px solid #757575;
    border-radius: var(--r-sm);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-muted);
    width: 100%;
    padding: 10px 70px 11px 14px;
    font-family: var(--font);
    outline: none;
    transition: border-color var(--transition);
    height: 40px;
    position: relative;
    z-index: 2;
    display: block;
    line-height: 1;
  } 
  .dropdown-selected-input.active {
    color: var(--color-text)
  }

  .dropdown-selected-input.active + .icon--chevron-down {
    transform: rotate(180deg);
  }
 
  .dropdown-selected-input.active,
  .dropdown-selected-input:focus {
    outline: 4px solid #393939;
  }
/* .dropdown-selected-input:hover {
      border-color: rgba(255, 255, 255, 0.3);
    } 
.dropdown-selected-input:focus + .icon--chevron-down {
    transform: rotate(180deg);
  }
  .dropdown-selected-input::placeholder {
    color: var(--color-muted);
  } */
  
  .dopdown-list--country {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 9px 14px;
    cursor: pointer;
    display: block;
    width: 100%;
    color: var(--color-muted);
  }
  
  .dopdown-list--item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s;
    height: 40px;
  }
  
  .dopdown-list--item-notfound {
    display: none;
    cursor: not-allowed;
  }
  .dopdown-list--item:hover {
    background: var(--color-card);
    color: var(--color-muted);
  }
  .dopdown-list--item.selected {
    color: var(--color-accent);
  }
  
  .dropdown-count {
    color: var(--color-muted);
    margin-left: auto;
    flex-shrink: 0;
  }
  /* Date filter */
  .date-filter {
    display: flex;
    align-items: center;
    background: var(--color-bg);
    cursor: pointer;
    flex: 1;
    min-width: 150px;
    
    position: relative;
  }

  
  .date-filter-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-muted);
    pointer-events: none;
    flex-shrink: 0;
    position: absolute;
    left: 14px;
    top: 10px;
    line-height: 1.1;
  }
  .date-filter input.flatpickr {
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    flex: 1;
    cursor: pointer;
    min-width: 0;
    padding: 10px 14px;
    height: 40px;
    position: relative;
    z-index: 20;
    border: 1px solid #757575;
    border-radius: var(--r-sm);
    transition: border-color var(--transition);
  }
  .date-filter input.flatpickr:hover {
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  /* Calendar overlay */
  .calendar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
  }
  .calendar-overlay.active {
    display: block;
  }
  
   
  
  /* Concert card */
  .tour__list {
    margin-top: 5px;
  }
  .tour__card {
    display: flex;
    align-items: center;
    gap: 12px;
    gap: 10px;
    padding: 5px 8px 5px 8px;
    background: var(--color-card);
    border-radius: var(--r-md);
    border: 1px solid transparent;
    transition:
      border-color var(--transition),
      background var(--transition);
    min-height: 74px;
    margin-bottom: 16px;
    position: relative;
  }
  .tour__card:hover {
    border-color: var(--color-accent);
    background: var(--color-bg);
  }
  
  .tour__card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 70px;
    width: 50px;
    height: 80px;
    height: 58px;
    border: 1px solid #393939;
    border-radius: var(--r-sm);
    overflow: hidden;
  }
  .tour__card-month {
    font-size: 13px;
    color: #f1f1f1;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 21px;
  }
  .tour__card-day {
    font-size: 18px;
    font-weight: 700;
    color: #f1f1f1;
    line-height: 1;
    display: flex;
    font-variant-numeric: tabular-nums;
    background-color: var(--color-bg);
    width: 100%;
    flex: 1;
    align-items: center;
    justify-content: center;
  }
  
  .tour__card-details {
    /* display: flex; */
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto 0 0;
    gap: 0;
    align-items: flex-start;
    height: 100%;
  }
  .tour__card-venue {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.5px;
    line-height: 20px;
    margin-bottom: 1px;
    margin-top: 0px;
    display: block;
  }
  .tour__card-city {
    color: var(--color-text);
    line-height: 1.5;
    line-height: 18px;
    margin-bottom: 6px;
    display: block;
  }
  
  .tour__card-time {
    display: flex;
    gap: 13px;
    font-size: 14px;
  }
  .tour__card-time-time,
  .tour__card-time-devider,
  .tour__card-time-day {
    color: var(--color-muted);
    line-height: 1;
    font-size: 14px;
    line-height: 18px;
  }
   
  .tour__card-tourname {
    display: none;
    font-size: 16px;
    color: var(--color-muted);
    flex-shrink: 0;
    line-height: 1.5;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 20px;
  }

  .tour__card-overwap {
    position: absolute;
    font-size: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    cursor: pointer;
  }
  
  .tour__card-btn {
    padding: 0;
    font-size: 0;
    font-weight: 500;
    background: var(--color-accent);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: block;
    min-height: auto;
    background-image: url(../images/arrow-right.png);
    background-blend-mode: difference;
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 50%;
  }

  .tour__empty {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    margin-bottom: 40px;
  }
  .tour__empty.active {
    display: flex;
  }
  .tour__empty-text {
    text-align: center;  
    color: var(--color-text); 
    width: 100%;
  }
  .tour__empty-text p {
    line-height: 28px;
  }
  .tour__empty-text b {
    font-weight: 600;
    font-size: 18px;
  }

  .tour__info {
    padding: 0 var(--px);
    gap: 24px;
    flex-wrap: wrap;
    display: flex;
  }

  .tour__slider-wrap {
    width: 100%
  }
  
  /* ---- Tablet / Desktop overrides ---- */
  @media (min-width: 769px) {
      .tour__card-btn {
        padding: 6px 14px;
        font-size: 13px;
        min-width: 140px;
        background: var(--color-accent);
        color: var(--color-bg);
        border-radius: var(--r-sm);
        background-image: none;
        width: auto;
        height: 40px;
        text-align: center;
        display: flex;
        align-items: center;
      }
   .tour__card-date {
    width: 70px;
    height: 68px;
  }

    .tour__card-details {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
    .tour__card-month {
          font-size: 18px;
          line-height: 24px;
    }
      .tour__card-day {
        font-size: 32px;
        font-weight: 800;
        line-height: 44px;
      }
    .tour__card-time-time,
    .tour__card-time-devider,
    .tour__card-time-day { 
      line-height: 1; 
    }
    .tour__card-city {
      font-size: 14px;
      max-width: 300px;
      margin-bottom: 0;
    }
    .tour__card-venue {
      font-size: 18px;
      line-height: 1.2;
      margin: -3px 0 0;
      max-width: 300px;
    }
    .tour__base {
      align-items: flex-start;
      gap: 24px;
      width: 100%;
    } 
    .tour__slide-img {
      height: 720px;
    } 
  
    .tour__heading {
      position: static;
      padding: 0;
      border-bottom: none;
    }

    .tour__subtitle {
      margin-top: 5px;
      font-size: 14px;
      line-height: 1.2;
    }

    .tour__content {
      width: 100%;
    }
    .tour__filters {
      flex-direction: row;
      width: 100%;
      max-width: 616px;
    }
  
    /* Scrollable list with height capped to match photo (req #10) */
    .tour__list {
      overflow-y: auto;
      padding-right: 4px;
      scrollbar-width: thin;
      scrollbar-color: #393939 transparent;
      margin-top: 14px;
    }
    .tour__list::-webkit-scrollbar {
      width: 4px;
    }
    .tour__list::-webkit-scrollbar-track {
      background: transparent;
    }
    .tour__list::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
    }
  
    .tour__card {
      gap: 20px;
      padding: 4px 12px 8px 8px;
      min-height: 80px;
      margin-bottom: 16px;
    }
    .tour__card-tourname {
      display: block;
      letter-spacing: -0.8px;
      text-align: right;
      line-height: 1.2;
      max-width: 250px;
    }
        .tour__swiper {
      margin: 14px 0 0;
    }
    .tour__swiper .swiper-slide {
      /* transform: scale(0.9); */
    }
    .tour__base {
      display: flex;
      flex-direction: column;
    }
    .tour__slider-wrap {
      width: 100%;
    }
  }
  @media (min-width: 1024px) {
    .dropdown-selected-input,
    .date-filter-text,
    .date-filter input.flatpickr {
      font-size: 14px;
      line-height: 1
    }
    .tour__base {
      margin-top: 13px;
      width: 100%;
    }
    .tour__info {
      display: flex;
      align-items: center;
      flex-direction: row-reverse;
      padding: 0 var(--px);
      gap: 24px;
      margin: 40px 0 0;
    }
    .tour__info .concert-desc__card:first-child {
      max-width: 763px;
      width: 100%;
      padding: 40px 0;
    }
   .tour__card-venue {
      max-width: 400px;
    }
    .tour__slider-wrap {
        max-width: 503px;
        width: 100%;
        flex: 1;
    }
    .tour__title {
      font-size: 30px;
    }
    .tour__empty {
      margin-bottom: 10px;
    }
    .tour__swiper {
      margin-top: 0;
    }
    .tour__list {
      margin-top: 10px;
      height: auto; 
      padding: 0;
    }
    .tour__card {
      padding: 8px 12px 7px 8px;
      min-height: 98px;
    }
    .tour__card-date {
      height: 80px
    }
    .tour__card-day {
      line-height: 48px;
    }
    .tour__card-month {
      line-height: 32px;
    }
    .tour__card-time-time, .tour__card-time-devider, .tour__card-time-day {
      font-size: 16px;
    }
    .tour__card-details {
      flex-direction: row;
      flex-wrap: wrap;
      margin: 1px auto 0 0;
    }
    .tour__card-time,
    .tour__card-city,
    .tour__card-venue {
      width: 100%
    } 
    .tour__card-time {
      margin-top: 5px;
    }
    .dropdown-selected-input,
    .date-filter-text,
    .date-filter input.flatpickr {
      font-size: 14px;
      line-height: 1.4;
    }
    .tour__slider-heading {
      font-size: 30px;
      display: none;
    } 
  }
  
  /* ================================================================
       CONCERT DESCRIPTION
    ================================================================ */
  .concert-desc {
    padding: 48px 0 0;
    background-color: var(--color-overlay);
    /* background-image: url("../images/concert-desc-bg.jpg"); */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
  }
  .concert-desc__inner {
    padding: 0 var(--px);
    display: flex;
    justify-content: center;
  }
  .concert-desc__card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
  .concert-desc__heading {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.0075em;
    text-align: center;
    color: var(--color-text);
  }
  .concert-desc__text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    text-align: center;
  }
  .concert-desc__text > * {
    margin-bottom: 16px;
  }
  @media (min-width: 769px) {
    .concert-desc {
      padding: 106px 0 10px 0;
    }
    .concert-desc__heading {
      font-size: 20px;
    }
    .concert-desc__text {
      margin: 3px auto 0;
    }
  }
  @media (min-width: 1024px) { 
    .concert-desc {
      padding: 76px 0 10px 0;
    }
    .concert-desc__heading {
      font-size: 30px;
    } 
    .concert-desc__text {
      margin: -2px auto;
    }
    
    .concert-desc__card {
      max-width: 45%;
      flex: 1;
    }
  }
  
  /* ================================================================
       ABOUT LANIE GARDNER
    ================================================================ */
  .about {
    padding: 0 0;
  }
  
  .about__base {
    padding: 0 var(--px);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  /* Main photo Swiper */
  .about__swiper-main {
    width: 100%;
    height: 320px;
    border-radius: var(--r-md);
    overflow: hidden;
    flex-shrink: 0;
  }
  .about__swiper-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Thumbnails Swiper ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â horizontal row on mobile */
  .about__swiper-thumbs {
    width: 100%;
  }
 
  .about__swiper-thumbs .swiper-slide {
    aspect-ratio: 1;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.55;
    transition:
      border-color var(--transition),
      opacity var(--transition),
      transform var(--transition);
  }
  .about__swiper-thumbs .swiper-slide:hover {
    opacity: 1;
  }
  .about__swiper-thumbs .swiper-slide-thumb-active {
    border-color: var(--color-accent);
    opacity: 0.8;
  }
  .about__swiper-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Info column */
  .about__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 25px;
  }
  .about__text-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .about__heading {
    font-size: 30px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.0075em;
    color: var(--color-text);
    margin-bottom: 16px;
  }
  .about__bio {
    font-size: 14px;
    line-height: 1.43;
    color: var(--color-text);
  }
  
  /* Socials */
  .about__socials {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    margin: 14px 0 0;
  }
  .about__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 36px;
    border-radius: var(--r-sm);
    color: var(--color-text);
    transition:
      background var(--transition),
      color var(--transition),
      border-color var(--transition);
  }
  .about__social-link:hover {
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
  }
  
  /* Spotify embed */
  .toptracks-section {
    padding: 0 var(--px) 40px;
  }
  .about__spotify {
    border-radius: var(--r-md);
    overflow: hidden;
    margin: -3px 0 0;
  }

  .about__spotify-desktop {
    display: none
  }

.about__spotify-heading {
  font-size: 20px;
  margin: 0 0 26px;
}
  
  /* Tablet / Desktop layout */
  @media (min-width: 769px) {
    .about__spotify-heading {
      display: none
    }

    .about__base {
      align-items: flex-start;
      gap: 20px;
    }
    .about__swiper-main {
      width: 503px;
      height: 776px;
    } 
    .about__swiper-thumbs .swiper-slide {
      aspect-ratio: unset;
      height: calc((776px - 2 * 20px) / 3);
    }
    .about__info {
      flex: 1;
      justify-content: space-between;
      margin: 0;
      padding: 0 12px;
      height: 100%;
    }
    .about__heading {
      margin-bottom: 10px;
    }
    .about__bio {
      font-size: 16px;
      letter-spacing: 0.2px;
      line-height: 1.7;
    }
    .about__socials {
      margin: 3px 0 0;
    }
    .about__spotify {
      margin: 24px -12px 6px;
    }
    
  }
@media (min-width: 1024px) {
  .about__spotify-desktop {
    display: block
  }
  .about__spotify-desktop iframe {
    height: 100%
  }
  .about {
    padding: 54px 0 0 0;
  }
  .about__heading {
    font-size: 30px
  }
  .about__bio {
    line-height: 1.56;
  }
  .tour__content {
    flex-direction: column;
    margin-top: 18px;
    gap: 17px;
    height: auto;
    flex: 1;
  } 
  .about__swiper-thumbs  {
    height: 776px;
  }

  .about__swiper-thumbs {
    width: auto;
  }

  .about__socials {
    margin: 14px 0;
  }

  .about__base {
    display: grid;
    grid-template-columns: minmax(400px, 503px) minmax(100px, 185px) 1fr;
    gap: 24px;
  }

  .about__spotify {
    margin: 0px -12px 0;
    height: auto;
    flex: 1;
  }
}
  
  /* ================================================================
       FEATURED SETLIST
    ================================================================ */
  .setlist {
    padding: 40px 0 40px 0;
    background: var(--color-overlay);
  }
  .setlist__inner {
    padding: 0 var(--px);
    display: flex;
    flex-direction: column;
    gap: 19px;
  }
  .setlist__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .setlist__heading {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.0075em;
    color: var(--color-text);
  }


.setlist__meta-date {
  border: 1px solid #757575;
  display: inline-block;
  border-radius: var(--r-sm);
  color: var(--color-muted);
  font-size: 15px;
  padding: 1px 8px;
  letter-spacing: -0.5px;
  margin: 3px 0;
  line-height: 1.4;
}

.setlist__meta-venue {
  display: flex;
  font-size: 14px;
  gap: 13px;
  margin: 8px 0;
  color: var(--color-muted);
}
  .setlist__meta-item {
    font-size: 14px;
    color: var(--color-muted);
  }
  .setlist__meta-sep {
    color: var(--color-muted);
  }
  
  .setlist__columns {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .setlist__list {
    display: flex;
    flex-direction: column;
  }
  
  .setlist__item {
    display: flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid var(--color-border);
    min-height: 58px;
    padding: 9px 0;
  }
 

  
  .setlist__num {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-muted);
    width: 15px;
    display: block;
  }
  .setlist__song span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    display: block;
  }
  .setlist__song .setlist__type {
    display: block;
    color: var(--color-muted);
    line-height: 1.1;
    font-size: 11px;
    margin: 3px 0 0;
  }
  
  @media (min-width: 769px) {
    .setlist__columns {
      flex-direction: row;
      gap: 0;
      width: 100%;
    }
    .setlist__list {
      display: grid;
      gap: 24px;
      grid-template-columns: repeat(2, 1fr);
      grid-auto-flow: column;
      width: 100%;
    }
    .setlist__list + .setlist__list {
      border-left: 1px solid var(--color-border);
      padding-left: 40px;
      margin-left: 40px;
    }
    .setlist__list:last-child .setlist__item:first-child {
      border-top: none;
    }
    .setlist__item {
     break-inside: avoid;
    }
    .setlist__header {
      gap: 12px;
    }
    .setlist__meta-date {
      margin: 0;
      padding: 4px 8px;
    }
      .setlist__meta {
          display: flex;
          gap: 13px;
          align-items: center;
    }
    .setlist__inner {
      gap: 32px;
    }
  }

  @media (min-width: 1024px) {
    .setlist {
      padding: 50px 0 10px;
    }
    .setlist__heading {
      font-size: 30px
    }
    .setlist__header {
      gap: 4px;
    }
    .setlist__meta-venue {
      font-size: 15px;
      letter-spacing: 0.4px;
    }
    .setlist__meta-date {
      font-size: 17px;
      padding: 3px 8px;
      height: 32px;
    }
    .setlist__song span {
      font-size: 15px;
    }
    .setlist__inner {
      gap: 25px;
    }
    .setlist__num {
      font-size: 14px
    }
    .setlist__list {
      gap: 0;
    }

  }
  /* ================================================================
       VIDEO SECTION
    ================================================================ */
  .video-section {
    padding: 0 0 40px 0;
  }
  .video-section__inner {
    padding: 0 var(--px);
  }
  .video-section__heading {
    font-size: 30px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.0075em;
    color: var(--color-text);
  }
  .video-section__wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: var(--r-lg);
    background: #000;
    margin: 30px 0 0;
  }
  .video-section__wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  @media (min-width: 1024px) {
      .video-section__heading {
        display: none
      }
  }
  
  /* ================================================================
       FAQ
    ================================================================ */
  .faq {
    padding: 40px 0;
  }
  .faq__inner {
    padding: 0 var(--px);
    display: flex;
    flex-direction: column;
    gap: 29px;
  }
  .faq__heading {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.0075em;
    color: var(--color-text);
    text-align: center;
  }
  .faq__list {
    display: flex;
    flex-direction: column;
  }
  .faq__item {
    border-bottom: 1px solid var(--color-border);
  }
  .faq__item:first-child {
    border-top: 1px solid var(--color-border);
  }
  
  .faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0.4px;
    transition: color var(--transition);
  }
  .faq__question:after {
    content: '';
    width: 52px;
    height: 36px;
    background-image: url(../images/chevron-down-white.png);
    background-size: 25px;
    cursor: pointer;
    transition: transform var(--transition);
    background-repeat: no-repeat;
    background-position: 50%;
    transition: .3s all;
    flex: 0 0 52px;
  }

  .faq__question[aria-expanded="true"]:after {
    transform: rotate(180deg)
  }
     
  .faq__question:hover {
    color: var(--color-accent);
  } 
  
  .faq__answer {
    display: none;
    width: 100%;
    padding-bottom: 20px;
  }
  .faq__answer p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-muted);
    padding-right: 15px;
  }
  
  .faq__disclaimer {
    font-size: 12px;
    line-height: 1.2;
    color: var(--color-muted);
    text-align: center;
    padding-top: 7px;
  }

  @media (min-width: 1024px) {
    .faq__heading {
      font-size: 30px
    }
    .faq__list {
      max-width: 720px;
      margin: 0 auto;
      width: 100%;
    }
    .faq__question {
      font-size: 17px;
      letter-spacing: 0.6px;
    }
    .faq__answer {
      padding-top: 10px
    }
  }
  
  /* ================================================================
       ICONS
    ================================================================ */
  .icon {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
  }
  .icon--arrow-right {
    background-image: url(../images/arrow-right.png);
  }
  .icon--chevron-down {
    background-image: url(../images/chevron-down.png);
    position: absolute;
    right: 12px;
    top: 11px;
    z-index: 1;
    transition: all 0.3s;
  }
  .icon--chevron-down.active {
    transform: rotate(180deg)
  }
  
  .icon--close {
    background-image: url(../images/icon-delete.png);
    position: absolute;
    right: 39px;
    top: 0;
    width: 40px;
    height: 40px;
    display: none;
    z-index: 33;
    background-size: 15px;
    background-position: 50%;
  }

  
  /* ================================================================
       FOOTER
    ================================================================ */
  .footer {
    padding: 34px 0;
  }
  .footer__inner {
    padding: 0 var(--px);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer__logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .footer__logo-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.1px;
  }
  .footer__logo-sub {
    font-size: 12px;
    color: var(--color-muted);
    letter-spacing: -0.3px;
  }
  .footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 23px;
  }
  .footer__nav-link {
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
  }
  .footer__copy,
  .footer__legal-links {
    flex-direction: column;
    display: flex;
    align-items: center
  }
  .footer__nav-link:hover {
    color: var(--color-text);
  }
  .footer__legal-links a,
  .footer__copy {
    font-size: 12px;
    color: var(--color-muted);
  }
  .footer__copy {
  gap: 10px;
  }
  .footer__legal-links {
    text-align: center;
    margin-top: 18px;
    margin-bottom: -9px;
  }
  .footer__legal {
    text-align: center;
    margin-top: -2px;
  }
  .footer__legal span {
    font-size: 12px;
    color: #D1D5DB;
  }
  .footer__legal a {
    font-size: 12px; 
  }
  .footer__divider {
    display: none
  }
  
  @media (min-width: 769px) {
    .footer {
      padding: 67px 0;
      position: relative
    }
    .footer__inner {
      padding: 0 32px;
      gap: 5px;
      flex-direction: row;
      flex-wrap: wrap;
    }
    .footer__btn {
      position: absolute;
      top: 67px;
      right: 31px;
      margin: 0;
      font-size: 12px;
    }
    .footer__nav {
      justify-content: center;
      width: 100%;
      gap: 37px;
      margin-bottom: 40px;
    }
    .footer__nav-link {
      font-size: 12px
    }
    .footer__logo-sub {
      line-height: 1;
    }
    .footer__copy {
      flex-direction: row;
      margin-left: auto;
      gap: 77px;
      margin: 0;
    }
    .footer__legal-links {
      margin: 0 auto 0 60px;
    }
    .footer__legal-links a {
     line-height: 24px
    }
  }
  @media (min-width: 1024px) {
    .footer__inner {
      padding: 12px var(--px);
      align-items: baseline;
    }
    .footer__logo-title {
      font-size: 24px;
      max-width: 480px;
      line-height: 1.4;
    }
    .footer {
      padding: 53px 0;
    }

    .footer__logo-sub {
      line-height: 0.7;
    }
    .footer__btn {
      position: static;
      align-self: flex-start;
    }
    .footer__nav {
      width: auto;
      margin: 0 22px 0 auto;
    }
    .footer__legal {
      text-align: left;
      margin: 25px 0 0;
    }
    .footer__nav-link {
      font-size: 14px;
    }
    .footer__legal span {
      display: inline-block;
      color: #393939;
      margin-right: 7px;
    }
    .footer__divider {
      display: block;
      width: 100%;
      height: 0;
    }
  }
  
  /* ================================================================
       FLATPICKR ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â dark theme overrides
    ================================================================ */
  .flatpickr-calendar {
    background: #1a1a1a !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--r-lg) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.65) !important;
    font-family: var(--font) !important;
    overflow: hidden;
  }
  .flatpickr-months .flatpickr-month,
  .flatpickr-weekdays,
  span.flatpickr-weekday {
    background: #1a1a1a !important;
    color: var(--color-text) !important;
    fill: var(--color-text) !important;
  }
  .flatpickr-day {
    color: var(--color-text);
    border-radius: 50% !important;
  }

  .flatpickr-day.hasEvent:before {
    position: absolute;
    content: "";
    border-radius: 50%;
    width: 4px;
    height: 4px;
    background: #F2D87C;
    left: 50%;
    margin-left: -2px;
    bottom: 4px;
  }
  .flatpickr-day.hasEvent.startRange:before,
  .flatpickr-day.hasEvent.endRange:before,
  .flatpickr-day.hasEvent.inRange:before {
    background: var(--color-bg);
  }
  
  .flatpickr-day.flatpickr-disabled {
    color: var(--color-muted) !important;
  }
  .flatpickr-day.today {
    border-color: var(--color-accent) !important;
  }
  .flatpickr-day.selected,
  .flatpickr-day.startRange,
  .flatpickr-day.endRange,
  .flatpickr-day.selected.inRange {
    background: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    color: var(--color-bg) !important;
  }

  .flatpickr-day.inRange {
    background: #FBF3D6!important;
    border-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0!important;
    position: relative;
    color: var(--color-bg)!important;
  }
  .flatpickr-day:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .flatpickr-day.disabled,
  .flatpickr-day:not(.inRange).prevMonthDay,
  .flatpickr-day:not(.inRange).nextMonthDay {
    color: rgba(255, 255, 255, 0.25) !important;
  }
  .flatpickr-prev-month svg,
  .flatpickr-next-month svg {
    fill: var(--color-text) !important;
  }
  .flatpickr-prev-month:hover svg,
  .flatpickr-next-month:hover svg {
    fill: var(--color-accent) !important;
  }
  .numInput,
  .cur-year {
    color: var(--color-text) !important;
    background: transparent !important;
  }
  .flatpickr-months .flatpickr-prev-month:hover,
  .flatpickr-months .flatpickr-next-month:hover {
    background: var(--color-card) !important;
  }

  .flatpickr-day.endRange {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top-left-radius: 0!important;
    border-bottom-left-radius: 0!important;
  }
  .flatpickr-day.startRange {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    border-top-right-radius: 0!important;
    border-bottom-right-radius: 0!important;
  } 
  .flatpickr-day.inRange:after {
    position: absolute;
    content: '';
    background: #FBF3D6;
    left: -5px;
    right: -5px;
    width: auto;
    height: auto;
    top: -1px;
    bottom: -1px;
    z-index: -1;
  }

  .flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
      -webkit-box-shadow: -10px 0 0 #FBF3D6;
      box-shadow: -10px 0 0 #FBF3D6
  }

  .flatpickr-calendar:before, .flatpickr-calendar:after {
    display: none;
  }

  /* Native select arrows on iOS ignore color — custom chevron (same as --color-text #f1f1f1). */
  .flatpickr-current-month .flatpickr-monthDropdown-months {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f1f1f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.2rem center;
    background-size: 14px 14px;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    color: var(--color-text);
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    font-weight: 300;
    height: auto;
    line-height: inherit;
    margin: -1px 0 0 0;
    outline: none;
    padding: 0 1.35rem 0 .5ch;
    position: relative;
    vertical-align: initial;
    -webkit-box-sizing: border-box;
    width: auto;
  }

  .flatpickr-current-month .flatpickr-monthDropdown-months::-ms-expand {
    display: none;
  }

  .flatpickr-current-month .flatpickr-monthDropdown-months:focus,
  .flatpickr-current-month .flatpickr-monthDropdown-months:active {
    outline: none;
  }

  .flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .flatpickr-current-month .flatpickr-monthDropdown-months option,
  .flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
    color: #1a1a1a;
    background: #fff;
  }

  .flatpickr-current-month .numInputWrapper.flatpickr-has-year-dropdown {
    width: auto;
    min-width: 4.25rem;
  }

  .flatpickr-current-month .flatpickr-yearDropdown-years {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f1f1f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.2rem center;
    background-size: 14px 14px;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    color: var(--color-text);
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    font-weight: 300;
    height: auto;
    line-height: inherit;
    margin: -1px 0 0 0;
    outline: none;
    padding: 0 1.35rem 0 .5ch;
    position: relative;
    vertical-align: initial;
    -webkit-box-sizing: border-box;
    width: auto;
  }

  .flatpickr-current-month .flatpickr-yearDropdown-years::-ms-expand {
    display: none;
  }

  .flatpickr-current-month .flatpickr-yearDropdown-years:focus,
  .flatpickr-current-month .flatpickr-yearDropdown-years:active {
    outline: none;
  }

  .flatpickr-current-month .flatpickr-yearDropdown-years:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .flatpickr-current-month .flatpickr-yearDropdown-years option {
    color: #1a1a1a;
    background: #fff;
  }

  .flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-bottom-color: var(--color-text) !important;
  }

  .flatpickr-current-month .numInputWrapper span.arrowDown:after {
    border-top-color: var(--color-text) !important;
  }
  
  .lb-cancel,
  .loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -36px;
    width: 72px;
    height: 72px;
    border: 3px dotted #9d7132;
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
    z-index: 222;
  }
  .lb-cancel {
    display: block;
  }
  .lb-cancel::after,
  .loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted #000;
    border-style: solid solid dotted;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 1s linear infinite;
    transform-origin: center center;
  }
  .lb-cancel::before,
  .loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -24px;
    border: 2px dotted #000;
    border-style: solid dotted solid dotted;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    animation: rotationBack 2.5s linear infinite;
    transform-origin: center center;
  }
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes rotationBack {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  }
  
  .lb-prev {
    transform: rotate(180deg);
    background: url(../images/arrow-right.png) right 52% no-repeat;
  } 

  .lb-nav a.lb-prev {
    background-position: 100% calc(50% + 10px);
  }

  /* desktop ordering */ 
  @media (min-width: 1024px) {  
    .toptracks-section {
        display: none;
    } 
  }