/* Ninify: https://static.app/css-minifier */

/* open-sans-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/open-sans-v40-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  display: swap;
}

/* open-sans-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/open-sans-v40-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans condensed */
@font-face {
  font-family: 'open-sans-condensed';
  src: url('/fonts/open-sans-condensed.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: var(--color-background, #131313);
  color: var(--color-text, #E0E0E0);
  font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4 {
  margin: 1.25rem 0;
  color: var(--color-heading, #fff);
}

p {
  margin: 1.25rem 0;
}

.main-color {
  color: var(--color-heading, #fff);
}

@media (max-width: 768px) {

  h1,
  h2,
  h3,
  h4 {
    margin: .75rem 0;
  }

  p {
    margin: .75rem 0;
  }
}

h1 strong,
h2 strong,
h3 strong,
h4 strong {
  color: var(--color-main);
}

h1 {
  font-size: 1.625rem;
  text-transform: uppercase;
}

.page-basic-header h1 {
  font-size: clamp(1.25rem, 2vw + 1rem, 2.25rem);
  text-transform: none;
}

h3 {
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw + 1rem, 1.25rem);
}

small {
  font-size: 0.8125rem;
}

.wrapper,
.site-footer {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
}

.page-elokuva .main-content {
  max-width: 46.5rem;
}

a {
  color: var(--color-link, #fff);
  text-decoration: none;
}

.notification-bar {
  background-color: rgba(224, 2, 26, .8);
  position: relative;
  color: #fff;
  text-align: center;
}

.notification-bar a {
  display: block;
  color: #fff;
  padding: 1rem;
}

.notification-bar span {
  position: absolute;
  top: .15rem;
  right: .5rem;
  font-size: 2rem;
}

/* HEADER */
.site-header {
  position: relative;
}

.site-header .wrapper,
.page-basic-header.header-img .site-header .wrapper {
  max-width: 100%;
  position: absolute;
  inset: 0 0 auto 0;
  backdrop-filter: blur(40px);
  background-color: rgba(0, 0, 0, .25);
  z-index: 100;
}

.site-header .wrapper>div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding: 1rem 2rem;
}

.page-basic-header .site-header .wrapper {
  backdrop-filter: none;
  position: relative;
  background-color: transparent;
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header .logo a {
  display: block;
  flex-shrink: 0;
}

.site-header .logo img {
  height: 2.6875rem;
  width: auto;
  display: block;
}

.site-header .menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  color: var(--color-main, #fff) !important;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle.active .icon-menu {
  display: none;
}

.menu-toggle.active .icon-close {
  display: block;
}

.search-cart .search,
.search-cart .cart,
.search-cart .profile {
  display: inline-block;
  width: 2rem;
  height: 1.9rem;
  padding-top: 1.9rem;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 0;
}

.search-cart .search {
  background-image: url('/images/icons/white/search-icon.svg');
}

.search-cart .cart {
  background-image: url('/images/icons/white/cart-icon.svg');
  position: relative;
  display: none;
}

.search-cart .has-items .cart {
  display: inline-block;
}

.search-cart .cart::after {
  content: attr(data-count);
  position: absolute;
  top: -.5rem;
  right: -1rem;
  z-index: 10;
  background-color: var(--color-main);
  color: var(--color-button-text, #fff);
  width: 1.35rem;
  height: 1.45rem;
  border-radius: 100%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .93rem;
  font-weight: bold;
  /* Hide when cart is empty */
  opacity: 1;
  transform: scale(1);
  transition: all 0.2s ease;
}

/* Hide cart counter when empty */
.search-cart .cart[data-count="0"]::after,
.search-cart .cart:not([data-count])::after {
  opacity: 0;
  transform: scale(0);
}

/* Show cart counter when has items */
.search-cart .cart[data-count]:not([data-count="0"])::after {
  opacity: 1;
  transform: scale(1);
}

.search-cart .profile {
  background-image: url('/images/icons/white/user-icon.svg');
}

.search-cart {
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}

.languages {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  font-weight: bold;
  margin-right: 1rem;

  a:hover {
    color: var(--color-main);
  }
}

.languages .current {
  color: var(--color-main);
}

/* MAIN NAVIGATION */
.primary ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.primary a:hover {
  text-decoration: underline;
}

.primary .current a {
  font-weight: bold;
}

.featured {
  max-height: 715px;
  overflow: hidden;
  position: relative;
}

.featured img {
  width: 100%;
  height: auto;
}

.featured img.movie_banner {
  min-height: 560px;
  max-height: 700px;
  object-fit: cover;
  object-position: center center;
}

.featured .caption {
  position: absolute;
  left: auto;
  right: auto;
  bottom: 5rem;
  z-index: 25;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.1;
}

.swiper {
  width: 100%;
  height: 100%;
  max-height: 715px;
}

.swiper-slide {
  position: relative;
  max-height: 715px;
}

.featured .swiper-slide::after,
.page-elokuva .featured::after,
.header-img .featured::after {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 15rem;
  content: '';
  background: rgb(19, 19, 19);
  background: linear-gradient(0deg, var(--color-background, #131313) 10%, rgba(255, 255, 255, 0) 100%);
}

.featured .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: var(--color-main);
  opacity: .5;
}

.featured .swiper-pagination-bullet-active {
  background-color: var(--color-main);
  opacity: 1;
}

.main-content {
  padding: 1rem;
  max-width: var(--content-width);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .main-content {
    padding: .5rem .7rem;
  }
}

.movies {
  overflow: hidden;
  gap: 1rem;
  margin: 1rem 0;
  text-transform: uppercase;
}

.movies img {
  max-width: 100%;
  height: auto;
  margin-bottom: .5rem;
  display: block;
}

.grid-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  font-weight: bold;
  font-size: 1.125rem;
}

.grid-content.columns-3 {
  grid-template-columns: repeat(3, 1fr);
  margin: 1rem 0;
}

.grid-content .thumb {
  overflow: hidden;
  max-height: 359px;
  margin-bottom: .5rem;
  border-radius: 4px;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0.1875rem 0.375rem 0 #000, 0px 0.6875rem 1.25rem -0.3125rem #000;
}

.grid-content img {
  transition: transform ease-in-out .1s;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
}

.grid-content div:hover {
  color: var(--color-main);
}

.grid-content div:hover img {
  transform: scale(1.1);
}

.spacer {
  height: 1rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: bold;
}

.breadcrumbs a {
  font-weight: normal;
  color: var(--color-text, #FFF);
}

.breadcrumbs a:hover {
  color: var(--color-main);
}

/* ELOKUVA */
.page-elokuva .featured {
  overflow: visible;
  max-height: none;
}

.page-elokuva .featured img {
  opacity: .5;
}

.page-elokuva .featured .caption {
  bottom: -2rem;
}

.page-elokuva .featured .caption img {
  width: 270px;
  height: auto;
  margin: 0 auto;
  opacity: 1;
  box-shadow: 0 0 30px rgba(0, 0, 0, .95);
}

.page-elokuva .label {
  font-weight: bold;
}

.play {
  display: block;
  width: 64px;
  height: 64px;
  background-image: url('/images/icons/red/play-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  margin: 2rem auto 0;
  cursor: pointer;
}

.movie-icons {
  margin: .5rem 0;
}

.movie-icons img {
  display: inline-block;
  margin-right: .1rem;
  width: 1.7rem;
  height: 1.7rem;
  background-color: #4F4F4F;
  border-radius: 100%;
}

.movie-specs span {
  display: inline-block;
  width: auto;
  height: 20px;
}

.movie-specs img {
  width: auto;
  height: 20px;
}

.movie-specs {
  margin-top: -0.8rem;
  margin-bottom: -0.5rem;
}

.movie-specs .tag {
  background: var(--color-main);
  color: var(--color-button-text, #FFF);
  padding: .25rem .5rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
}

.movie-genres {
  display: inline-block;
  padding: 4px 10px;
  margin: 10px 2px 2px 2px;
  border: 1px solid var(--color-heading, #FFF);
  border-radius: 30px;
  font-size: 14px;
}

.quick-nav a {
  color: var(--color-main);
  text-transform: uppercase;
  margin-right: .8rem;
}

.quick-nav a:hover {
  color: var(--color-heading, #FFF);
}

.quick-nav a.current {
  text-decoration: underline;
}

.description-container {
  position: relative;
  max-height: 4.5em;
  overflow: hidden;
}

.description-container.fade:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--color-background, #131313));
}

.additional-materials-btn {
  display: block;
  background-color: var(--color-main);
  font-weight: 700;
  border-radius: 4px;
  padding: .4rem;
  color: var(--color-button-text, #fff) !important;
  text-decoration: none !important;
  border: none;
  width: 100%;
  max-width: 13rem;
  margin-top: 1rem;
  cursor: pointer;
  text-align: center;
}

.read-more-btn {
  text-align: left;
  margin-top: 5px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text, #FFF) !important;
  font-size: 14px;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.read-more-btn:hover {
  text-decoration: underline;
}

.filters {
  display: flex;
  justify-content: space-between;
  margin: .5rem 0;
  gap: .5rem;
}

.filters select {
  border: none;
  background-color: var(--color-main);
  color: var(--color-button-text, #fff);
  padding: .5rem 2.5rem .5rem 1rem;
  border-radius: 4px;
  appearance: none;
  width: 100%;
}

.filters select option {
  background-color: #000;
  color: #fff;
}

.filters div {
  position: relative;
  width: 100%;
}

.filters div::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid black;
  /* Arrow color */
  pointer-events: none;
}

.poster-img {
  border-radius: 4px;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0.1875rem 0.375rem 0 #000, 0px 0.6875rem 1.25rem -0.3125rem #000;
}

.screenings {
  border-top: 1px solid var(--color-main);
  margin: 0 0 3rem;
}

.screenings .item {
  border-bottom: 1px solid var(--color-main);
  display: grid;
  grid-template-columns: 35% 55%;
  gap: 1rem;
  padding: 1rem 0 1rem;
}

.screenings .item div:last-child {
  align-content: center;
  text-align: right;
}

.screenings.movie-list {
  border-top: none;
}

.screenings.movie-list .item {
  display: grid;
  grid-template-columns: 25% 65%;
  gap: 1rem;
}

.screenings.movie-list .item h3 {
  margin-top: .1rem;
  margin-bottom: .1rem;
}

.screenings.movie-list .item div:last-child {
  text-align: left;
  align-content: start;
}

.screenings.movie-list .poster {
  padding-top: 1rem;
}

.screenings.movie-list .poster a {
  background-color: transparent;
  padding: 0;
}

.screenings.movie-list .poster img {
  width: 100%;
  height: auto;
}

.screenings strong {
  text-transform: uppercase;
  font-size: 1.125rem;
  display: block;
  margin-top: 1rem;
}

.screenings strong span {
  color: var(--color-main);
}

.screenings.movies-grid {
  padding: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.screenings.movies-grid .item {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  border-bottom: none;
  padding: 0;
}

.screenings.movies-grid .item p {
  margin-top: .5rem;
  text-align: left;
}

.screenings.movies-grid .movie-header {
  margin-top: .5rem;
  min-height: 50px;
  font-weight: bold;
}

.screenings.movies-grid strong {
  font-size: 1.125rem;
  display: block;
  color: var(--color-main);
  margin-top: .3rem;
}

.screenings.movies-grid .button-screening {
  width: 100%;
}

.screenings.movies-grid .movie-header p {
  color: var(--color-main, #E0E0E0);
}

.screenings.movies-grid .item div:last-child {
  text-align: center;
  align-content: center;
}

.screenings.list .item {
  display: grid;
  grid-template-columns: 35% 60%;
  gap: 1rem;
}

.screenings.list .item div:last-child img.poster-img {
  display: inline-block;
}

.screenings .button-screening {
  display: inline-block;
  background-color: var(--color-main);
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
  padding: .5rem 1rem;
  color: var(--color-button-text, #fff);
}

.screenings .button-screening:hover {
  opacity: .8;
}

.text-with-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.text-with-media.right div:first-child {
  order: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
  text-align: center;
  color: #e0e0e0;
  font-size: .875rem;
  font-weight: 600;
}

.steps div {
  background-color: #333;
  border-radius: 30px;
  padding: .5rem;
  white-space: nowrap;
}

.steps .current {
  background-color: var(--color-main);
  color: var(--color-button-text, #fff);
}

@media (max-width: 768px) {
  .steps {
    gap: .5rem;
    margin: .5rem 0;
    font-size: .75rem;
  }
}

/* Kirjautuminen */
.notice {
  text-align: center;
}

.notice p {
  margin: .5rem 0;
}

.notice label {
  text-align: left;
}

.notice form {
  margin-bottom: 2rem;
}

.notice a {
  color: var(--color-main);
}

.notice span {
  color: var(--color-main);
}

.notice a:hover {
  opacity: .8;
}

.notice img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/* Rekisteröiminen */
.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-row>div {
  flex: 1;
  min-width: 150px;
}

.error {
  background-color: #fd0d0d;
  color: white;
  border-radius: 4px;
  padding: 0.5rem;
  text-align: center;
}

/* istuinpaikat */
.seating-wrapper {
  max-width: 100%;
  overflow: auto;
}

.mobile-text {
  display: none;
}

.seating-container {
  display: grid;
  grid-gap: 3px;
  margin-bottom: 20px;
  margin-top: 20px;
  width: 42rem;
  height: 44rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  user-select: none;
}

.row-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.seat {
  /* width: 30px; */
  /*height: 45px;  */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.seat:hover {
  opacity: .8;
}

.wheelchair-icon {
  display: block;
  width: 70%;
  height: 70%;
  background-image: url('/images/icons/white/wheelchair-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Seat Mobile */
@media (max-width: 768px) {
  .seat {
    font-size: 10px;
  }

  .seating-container {
    width: 100%;
    height: auto;
    min-height: 22rem;
  }
}

/* MYYTY PAIKKA (JOKU MUU KUIN ASIAKAS ITSE) */
.status-2 {
  background-color: #57534d !important;
  cursor: not-allowed;
}

/* Myyty paikka (Asiakkaan ostama) */
.status-3 {
  background-color: #dd21c4 !important;
  cursor: not-allowed;
}

/* Varattu paikka (Asiakkaan varaama) */
.status-4 {
  background-color: #f0b100 !important;
  cursor: not-allowed;
}

/* Valittu paikka (Asiakkaan valitsema) */
.status-5 {
  background-color: #8400dd !important;
}

.empty {
  cursor: default;
}

.screen-area {
  position: relative;
  width: 100%;
  height: 40px;
  margin: 0.5rem 0;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.screen-area::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  box-shadow:
    0 4px 20px var(--color-heading, rgba(255, 255, 255, 0.25)),
    0 8px 30px var(--color-heading, rgba(255, 255, 255, 0.15));
}

.screen-area span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.screen-bottom::before {
  border-bottom: 4px solid var(--color-heading, rgba(255, 255, 255, 0.9));
  border-radius: 0 0 200px 200px;
}

.screen-bottom::after {
  bottom: 0;
}

.screen-top::before {
  top: 10px;
  border-top: 4px solid var(--color-heading, rgba(255, 255, 255, 0.9));
  border-radius: 200px 200px 0 0;
}

.screen-top span {
  bottom: 8px;
}

@media (max-width: 768px) {
  .screen-area::before {
    width: 100%;
  }
}

.legend {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 4px 20px;
  margin-top: 20px;
}

.legend-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 8px;
}

.legend-color {
  width: 22px;
  height: 22px;
  margin-right: 5px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Link hover underline */
.link:hover {
  text-decoration: underline;
}

form {
  margin: 2rem auto;
  max-width: 26rem;
}

@media (max-width: 768px) {
  form {
    margin: 1rem auto;
  }
}

form a {
  color: var(--color-main);
}

form a:hover {
  color: #fff;
}

form label {
  display: block;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="tel"],
form select {
  width: 100%;
  padding: .5rem;
  margin-bottom: .5rem;
  border: 1px solid var(--color-main);
  border-radius: 4px;
  background-color: #e0e0e0;
  color: #000;
}

input[type="submit"]:disabled {
  background-color: #ccc !important;
  cursor: not-allowed !important;
}

form p {
  text-align: center;
}

form input[type="checkbox"] {
  display: block;
  margin: 1rem auto .5rem;
  width: 2rem;
  height: 2rem;
}

button[type="submit"],
a.button,
button {
  display: block;
  background-color: var(--color-main);
  font-weight: bold;
  border-radius: 4px;
  padding: 1rem 2rem;
  color: var(--color-button-text, #fff) !important;
  text-decoration: none !important;
  border: none;
  width: 100%;
  max-width: 15rem;
  margin-top: 1rem;
  margin-inline: auto;
  cursor: pointer;
  text-align: center;
}

button[type="submit"]:hover,
a.button:hover,
button:hover {
  opacity: .8;
}

button[type="submit"]:disabled,
a.button.disabled,
button.disabled {
  background-color: #99a1af !important;
  cursor: not-allowed !important;
  opacity: 0.7 !important;
}

a.button.secondary {
  background-color: #fff;
  border: 1px solid #000;
  color: #000 !important;
}

a.button.third {
  margin-inline: 0;
  max-width: 10rem;
}

.main-content .cart {
  background-color: #e0e0e0;
  color: #000;
  border-radius: 10px;
  overflow: hidden;
}

.main-content .cart p {
  margin: 0.5rem 0;
}

.main-content .cart .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  border-bottom: 1px solid #000;
}

.main-content .cart .item .remove {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  text-align: center;
  border-radius: 100%;
  background-color: var(--color-main);
  cursor: pointer;
  color: var(--color-button-text, #fff);
}

.cart-total {
  padding: 0 1rem 2rem;
}

.cart-total h3 {
  color: #000;
  display: flex;
  justify-content: space-between;
}

.cart.checkout .item {
  display: block;
  padding: 0;
}

.cart.checkout .item {
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 1rem 0;
  color: #000;
  font-weight: bold;
  background-color: transparent;
  text-align: center;
  cursor: pointer;
}

.cart.checkout .item img {
  width: auto;
  height: 65px;
  margin: 0 auto;
}

.payment-header {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: center;
}

.payment-header h1,
.payment-header p {
  margin: 0;
}

/* Timer styling */
.cart-timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-main);
  color: var(--color-button-text, #fff);
  font-weight: bold;
  font-size: 1.5rem;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* MAKSUTAVAT */
.payment-widget-form {
  display: none;
}

.payment-widget-form.active {
  display: block;
}

.payment-widget-form-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.payment-widget-back-button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  margin-right: 15px;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.payment-widget-back-button:hover {
  background-color: #f0f0f0;
}

.payment-widget-form-title {
  font-size: 20px;
  color: #333;
  margin: 0;
}

.payment-widget-form-group {
  margin-bottom: 20px;
}

.payment-widget-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

.payment-widget-form-group input[type="email"],
.payment-widget-form-group input[type="text"] {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.payment-widget-form-group input[type="email"]:focus,
.payment-widget-form-group input[type="text"]:focus {
  border-color: #007cba;
  outline: none;
}

.payment-widget-total-display {
  background-color: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}

.payment-widget-total-label {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.payment-widget-total-amount {
  font-size: 28px;
  font-weight: bold;
  color: #28a745;
}

.payment-widget-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.payment-widget-method-option {
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  background: white;
}

.payment-widget-method-option:hover {
  border-color: #007cba;
  box-shadow: 0 2px 8px rgba(0, 124, 186, 0.2);
}

.payment-widget-method-option.selected {
  border-color: #007cba;
  background-color: #f0f8ff;
}

.payment-widget-method-option img {
  max-width: 100%;
  max-height: 35px;
  object-fit: contain;
  margin-bottom: 8px;
}

.payment-widget-method-option .payment-widget-method-name {
  font-size: 14px;
  color: #555;
}

.payment-widget-method-option input[type="radio"] {
  display: none;
}

.payment-widget-submit-button {
  width: 100%;
  background-color: #007cba;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.payment-widget-submit-button:hover {
  background-color: #005a87;
}

.payment-widget-submit-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.payment-widget-loading {
  text-align: center;
  padding: 20px;
  color: #666;
}

.payment-widget-method-error {
  color: #dc3545;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

.payment-widget-error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
  border: 1px solid #f5c6cb;
}

.form-grid {
  display: grid;
  grid-template-columns: 80% 20%;
  gap: 0.5rem;
  align-items: center;
}

.form-grid button {
  width: 100%;
  margin-bottom: .5rem;
  margin-top: 0;
  padding: .25rem .5rem;
  height: 2.5rem;
  box-sizing: border-box;
}

.liput .tickets {
  background-color: #e0e0e0;
  color: #000;
  overflow: hidden;
  padding: 1rem;
  border-radius: 10px;
}

.liput .tickets p {
  margin: 0.5rem 0;
}

.liput .tickets .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  border-bottom: 1px solid #000;
}


.liput .tickets .item {
  display: block;
  padding: 0;
}

.liput .tickets .item .button {
  padding: .5rem 1rem;
  margin-top: .5rem;
}

.liput .tickets .item a {
  width: auto;
  height: auto;
  font-weight: bold;
  display: inline-block;
  color: var(--color-main);
}

.liput .tickets .item a:hover {
  opacity: .8;
}

a.red {
  color: var(--color-main);
}

a.red:hover {
  opacity: .8;
}

/* HAKU */
.search-grid {
  display: grid;
  grid-template-columns: 80% 20%;
  gap: 0.5rem;
  align-items: center;
}

.search-grid button {
  width: 100%;
  margin-bottom: .5rem;
  margin-top: 0;
  padding: .25rem .5rem;
  height: 2.5rem;
  box-sizing: border-box;
}

.search-grid input[type="text"] {
  width: 100%;
  margin-bottom: .5rem;
  margin-top: 0;
  padding: .25rem .5rem;
  height: 2.5rem;
  box-sizing: border-box;
}

.result-item {
  margin-bottom: 1rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--color-main);
}

.result-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.result-type {
  padding: 3px 6px;
  border-radius: 3px;
  margin-bottom: 8px;
  display: inline-block;
}

.result-snippet {
  margin-bottom: 8px;
}

.movie-info {
  display: flex;
  gap: 15px;
}

.movie-poster {
  width: 100px;
  flex-shrink: 0;
}

.movie-poster img {
  max-width: 100%;
  border-radius: 4px;
}

.movie-details {
  flex-grow: 1;
}

.movie-meta {
  margin-top: 5px;
}

.movie-meta-item {
  font-size: 12px;
  margin-bottom: .5rem;
}

.loading {
  text-align: center;
  padding: 20px;
}

.tabs {
  display: flex;
  border-bottom: 1px solid var(--color-main);
  margin: 1rem 0;
  color: var(--color-main);
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid transparent;
}

.tab.active {
  border: 1px solid var(--color-main);
  border-bottom-color: var(--color-main);
  background-color: var(--color-main);
  margin-bottom: -1px;
  font-weight: bold;
  color: var(--color-button-text, #fff);
}

.no-results {
  display: none;
}

.message {
  margin: 20px 0;
  padding: 10px;
  border-radius: 3px;
}

.message-success {
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  color: #3c763d;
  border-radius: 4px;
}

.message-error {
  background-color: #f2dede;
  border: 1px solid #ebccd1;
  color: #a94442;
  border-radius: 4px;
}

.button-secondary {
  background-color: #9e9e9e;
  padding: 1rem 2rem;
  width: 100%;
  max-width: 15rem;
  margin-top: 1rem;
  margin-inline: auto;
}

/* KAUPPA */
.page-kauppa .price,
.page-tuote .price {
  color: var(--color-main);
  font-weight: bold;
  float: none;
  font-size: 24px;
}

.sku {
  font-size: .8rem;
}

.product-info span {
  color: var(--color-main);
}

.product-info .description {
  text-align: left;
}

.product-info form {
  max-width: 100%;
}

.product-info input.quantity {
  border: 1px solid var(--color-text, #FFF);
  border-radius: 4px;
  background-color: transparent;
  color: var(--color-text, #FFF);
  padding: .5rem;
  margin-right: .25rem;
}

.product-info input.price {
  border: 1px solid var(--color-text, #FFF);
  border-radius: 4px;
  background-color: transparent;
  padding: .2rem;
  margin-right: .25rem;
  color: var(--color-main);
  font-weight: bold;
  float: none;
  font-size: 24px;
}

.product-info input[type="submit"] {
  background-color: var(--color-main);
  color: var(--color-button-text, #fff);
  font-weight: bold;
  border-radius: 4px;
  padding: .5rem 1rem;
  border: none;
  cursor: pointer;
  margin-left: .5rem;
}

.product-info input[type="submit"]:hover {
  opacity: .8;
}

.product-info {
  display: grid;
  grid-template-columns: 49% 49%;
  gap: 2%;
}

.cart .item.product {
  display: grid;
  grid-template-columns: 20% 75%;
  gap: 5%;
  padding: 1rem;
}

.cart .empty-cart {
  padding: 1rem;
}

/* KAUPPA OSTOSKORI */
.page-ostoskori .item.product .price,
.page-ostoskori .cart-total span {
  color: var(--color-main);
  font-weight: bold;
  white-space: nowrap;
}

.page-ostoskori .item.product .product-title {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: .5rem;
  position: relative;
}

.page-ostoskori .item.product.loading .price {
  margin-right: 1.5rem;
}

.page-ostoskori .main-content .cart .item {
  align-items: start;
}

.page-ostoskori .item-details {
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 1rem;
  align-items: center;
}

.page-ostoskori .qty-controls {
  display: grid;
  grid-template-columns: 25% 50% 25%;
}

.qty-controls button {
  margin: 0;
  padding: .5rem;
}

.qty-controls input {
  margin: 0 .25rem;
  padding: .25rem .5rem;
  text-align: center;
}

.item-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.quantity-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f8f8f8;
}

.quantity-input:disabled {
  background-color: #f8f8f8;
  color: #999;
}

.product-title {
  font-weight: bold;
  margin-bottom: 8px;
  position: relative;
}

.product-title .loading-indicator {
  display: none;
  margin-left: 8px;
  color: #e30613;
  font-size: 16px;
  animation: spin 1s linear infinite;
  font-weight: normal;
  position: absolute;
  right: 0;
  top: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.remove {
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e30613;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.remove:hover {
  background-color: #c50510;
  transform: scale(1.1);
}

.price {
  color: var(--color-main);
  font-weight: bold;
  float: right;
}

.price-list {
  color: var(--color-main);
  font-weight: bold;
}

.quantity-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.quantity-input:focus {
  outline: none;
  border-color: var(--color-main);
  box-shadow: 0 0 0 2px rgba(227, 6, 19, 0.1);
}

.item.product.loading {
  position: relative;
  opacity: 0.8;
}

.item.product.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
  pointer-events: none;
  border-radius: 4px;
}

.site-footer {
  padding: 2rem 0;
  color: #AFAFAF;
}

.site-footer a {
  font-weight: normal;
  font-size: 0.875rem;
  color: #AFAFAF;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid #393939;
  border-bottom: 1px solid #393939;
  margin-bottom: 4rem;
}

.footer-nav li a,
.footer-nav strong {
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--color-main);
}

.footer-nav li ul a {
  font-weight: normal;
  font-size: 0.875rem;
  color: #AFAFAF;
}

.copy {
  text-align: center;
  font-size: .875rem;
}

.maksutavat {
  text-align: center;
}

.maksutavat img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 .5rem;
}

.powered-by {
  text-align: center;
}

.powered-by p {
  margin: 0;
}

ul.some {
  list-style: none;
  margin: 1rem 0;
  text-align: center;
}

ul.some li {
  display: inline-block;
  margin: 0 .25rem;
}

ul.some a {
  display: block;
  width: 2rem;
  height: 2rem;
  padding-top: 2rem;
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
}

ul.some .facebook a {
  background-image: url('/images/icons/white/fb-icon.svg');
}

ul.some .instagram a {
  background-image: url('/images/icons/white/instagram-icon.svg');
}

ul.some .tiktok a {
  background-image: url('/images/icons/white/tiktok-icon.svg');
}

ul.some .youtube a {
  background-image: url('/images/icons/white/youtube-icon.svg');
}

ul.some .snapchat a {
  background-image: url('/images/icons/white/snap-icon.svg');
}

ul.some .x a {
  background-image: url('/images/icons/white/x-icon.svg');
}

ul.some .pinterest a {
  background-image: url('/images/icons/white/pinterest-icon.svg');
}

ul.some .whatsapp a {
  background-image: url('/images/icons/white/whatsapp-icon.svg');
}

ul.some .reddit a {
  background-image: url('/images/icons/white/reddit-icon.svg');
}

ul.some .linkedin a {
  background-image: url('/images/icons/white/linkedin-icon.svg');
}

ul.some a:hover {
  opacity: .8;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #000;
  padding: 1rem;
  opacity: 0;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: opacity .3s;
}

.mobile-menu.is-open {
  opacity: 1;
  height: auto;
  overflow: visible;
  visibility: visible;
}

.mobile-menu .menu-close {
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url('/images/icons/white/icon-close.svg');
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 2rem;
  overflow: hidden;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.mobile-menu li {
  line-height: 1.75;
}

.mobile-menu .lang a {
  font-weight: bold;
  margin-right: .5rem;
}

.mobile-menu .lang .current {
  color: var(--color-main);
}

@media screen and (max-width: 74em) {
  .site-header .wrapper>div {
    padding: 1rem;
  }

  .site-header .menu-toggle {
    display: block;
  }

  .site-header .search-cart {
    justify-content: flex-end;
  }

  .primary,
  .site-header .languages {
    display: none;
  }

  .search-cart .cart,
  .search-cart .profile,
  .search-cart .search {
    width: 1.5rem;
    height: 1.5rem;
    padding-top: 1.25rem;
  }

  .search-cart .profile {
    display: inline-block;
  }

  .featured img {
    margin-top: 50px;
    min-height: 310px;
    object-fit: cover;
    display: inline;
    object-position: center center;
  }

  .featured .swiper-slide::after,
  .page-elokuva .featured::after,
  .header-img .featured::after {
    height: 6rem;
    /* smaller gradient for shorter banner */
    background: linear-gradient(0deg, var(--color-background, #131313) 20%, rgba(19, 19, 19, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
  }

  .featured .caption img {
    min-height: 1px;
  }

  .featured .caption {
    margin: 0;
    font-size: 30px;
  }

  .grid-content {
    gap: 1rem;
  }

  .grid-content.columns-3 .thumb {
    max-height: auto;
  }

  .grid-content img {
    height: 260px;
  }

  .site-footer {
    padding: 2rem 1rem;
  }

  .site-footer .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
}

@media screen and (max-width: 40em) {
  .mobile-text {
    display: block;
    margin-bottom: .5rem;
    color: var(--color-main);
    font-size: .8rem;
  }

  .filters {
    flex-direction: column;
    gap: 1rem;
  }

  .filters select {
    width: 100%;
  }

  .screenings .item {
    grid-template-columns: 60% 40%;
    gap: 0.5rem;
  }

  .screenings.list .item {
    grid-template-columns: 55% 40%;
    gap: 1rem;
  }

  .screenings .item div:last-child {
    text-align: left;
  }

  .screenings.movie-list .item {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 1rem;
  }

  .screenings.movies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .grid-content,
  .site-footer .footer-nav {
    grid-template-columns: 1fr;
  }

  .grid-content.columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-info {
    grid-template-columns: 1fr;
  }

  .text-with-media {
    display: block;
  }

  .footer-nav ul {
    margin-bottom: 2rem;
  }

  .footer-nav ul ul {
    margin-top: .5rem;
  }

  .site-footer {
    text-align: center;
  }

  .movie-icons img {
    width: 1.5rem;
    height: 1.5rem;
  }

  form input[type="text"],
  form input[type="email"],
  form input[type="password"],
  form select {
    max-width: 100%;
  }

  .movie-description {
    display: none;
  }
}

.shadowed {
  -moz-box-shadow: 0px 0px 5px #444444;
  -webkit-box-shadow: 0px 0px 5px #444444;
  box-shadow: 0px 0px 5px #444444;
}

/* LIGHTBOX */
.trailer {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.trailer img {
  width: 100%;
  height: auto;
  display: block;
}

.video-title {
  padding: 15px;
  background: white;
  font-weight: bold;
  color: #333;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  overflow: auto;
}

.lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.lightbox-header {
  background: #000;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lightbox-title {
  color: var(--color-main);
  margin: 0;
  font-size: 18px;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
  margin: 0;
}

.close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.popup-icon {
  width: 50px;
  height: 50px;
  background-color: #e30613;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-icon::after {
  content: "✓";
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.popup h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: #333;
}

.popup p {
  margin: 0 0 25px 0;
  color: #666;
  font-size: 14px;
}

.popup-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.popup-button {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}

.popup-button.primary {
  background-color: var(--color-main);
  color: white;
}

.popup-button.primary:hover {
  opacity: 0.9;
}

.popup-button.secondary {
  background-color: white;
  color: #333 !important;
  border: 2px solid #ddd;
}

.popup-button.secondary:hover {
  background-color: #f5f5f5;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.close-btn:hover {
  color: #333;
}

#loadingIndicator {
  color: #666;
  font-style: italic;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .lightbox-content {
    width: 95%;
    margin: 0;
  }

  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }

  .page-ostoskori .item-details {
    grid-template-columns: 50% 50%;
  }
}

.movie-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .movie-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.movie-gallery img {
  width: 100%;
  display: block;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
  aspect-ratio: auto;
}

.movie-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.movie-gallery img.horizontal {
  height: 140px;
}

.movie-gallery img.vertical {
  height: 300px;
  grid-row: span 2;
}

/* Gallery lightbox styles */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.gallery-lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.show-info {
  margin-top: 20px;
  display: flex;
  gap: 1.3rem;
  margin-bottom: 20px;
  align-items: flex-end;
}

.show-info h1 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.show-info .poster {
  width: 9rem;
}

.show-info .movie-icons {
  margin: .4rem 0;
}

.show-info .icons-list {
  display: grid;
  flex-wrap: wrap;
  gap: .7rem;
  font-size: 16px;
  text-transform: uppercase;
}

.show-info .icon {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

@media (max-width: 600px) {
  .show-info .poster {
    width: 8rem;
    flex-shrink: 0;
  }

  .show-info .icons-list {
    display: flex;
    font-size: 12px;
  }
}

.headline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase !important;
  letter-spacing: -0.05em;
}

.headline-block {
  display: block;
  width: 0.375rem;
  height: 1.5rem;
  background-color: var(--color-main);
}

.ticket-div,
.seat-div {
  padding: 1.25rem;
  background-color: var(--color-surface, #1c1b1b);
  border: 2px solid var(--color-surface-border, rgb(94 63 59 / 0.05));
  border-radius: 0.25rem;
  margin-bottom: 1.25rem;
}

.tickets-cart {
  padding: 1.25rem;
  background-color: var(--color-surface, #1c1b1b);
  border: 2px solid var(--color-surface-border, rgb(94 63 59 / 0.05));
  border-radius: 0.25rem;
}

.tickets-total h3 {
  color: var(--color-heading, #fff);
  display: flex;
  margin: 0;
  justify-content: space-between;
}

.seat-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.seat-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.seat-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.seat-info {
  background-color: #333;
  color: #e0e0e0;
  border: 1px solid var(--color-surface-border, rgb(94 63 59 / 0.05));
  border-radius: 0.125rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.seat-info .label {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 10px;
}

.seat-div .content,
.seat-info .content {
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.ticket-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ticket-option {
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 10px;
  margin-top: 0px;
  gap: 4px;
  padding: 8px 10px;
  color: #fff !important;
  cursor: pointer;
  text-align: left;
  margin-inline: 0;
  max-width: 100%;
}

.ticket-option:hover {
  border-color: var(--color-main);
  opacity: 1;
}

.ticket-option.active {
  background: var(--color-main);
  border-color: var(--color-main);
  color: var(--color-button-text, #fff) !important;
}

.ticket-option .desc {
  font-size: 11px;
  color: #bbb;
}

.ticket-option .top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-weight: 600;
  font-size: 13px;
}

.ticket-selection {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.seats-container {
  flex: 1 1 auto;
  min-width: 0;
}

.tickets-flow {
  max-width: 55em;
  margin: 0 auto;
}

.carousel-item img {
  min-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 20%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  align-items: center;
}

.carousel-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem 0rem;
  max-width: 18rem;
}

.badge {
  background: var(--color-main);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .carousel-content {
    padding: 2rem 3rem 1rem;
    max-width: 700px;
  }
}

.carousel-title {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -1px;
}

.highlight {
  color: var(--color-main);
}

@media (min-width: 768px) {
  .carousel-title {
    font-size: 4rem;
  }
}

.carousel-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: .5rem 1rem;
  font-weight: bold;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-transform: uppercase;
}

.btn span {
  font-size: 20px;
}

.btn-primary {
  background: var(--color-main);
  color: var(--color-button-text, #fff);
}

.margin-0 {
  margin: 0;
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.share-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: .5rem 1rem;
  font-weight: bold;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-transform: uppercase;
  width: auto;
  margin-inline: 0;
  margin-top: 0;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 600px) {
  .tickets-grid {
    grid-template-columns: 1fr;
  }
}

.ticket-details {
  display: flex;
  gap: 2rem;
}

.ticket-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ticket-seats {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.ticket-content {
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
}

.qr-code {
  text-align: center;
}

.qr-code img {
  border-radius: .25rem;
  width: 9rem;
}