* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
* img {
  width: 100%;
  vertical-align: bottom;
}

.p-section-shows {
  width: 100%;
  max-height: 600px;
  height: 100%;
  overflow-y: clip;
  position: relative;
  background: url("../assets/images/img_show_fv.jpg");
  background-size: cover;
  background-position: center;
}
.p-section-shows__inner {
  height: 600px;
}
.p-section-shows__inner h2 {
  display: block;
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0px);
  font-family: "Oswald", sans-serif;
  font-size: clamp(55px, 15vw, 333px);
  text-align: center;
  line-height: 0.9;
  color: #ffffff;
}

.p-section-shops {
  width: 100%;
  max-height: 600px;
  height: 100%;
  overflow-y: clip;
  position: relative;
  background: url("../assets/images/img_shop_fv.jpg");
  background-size: cover;
  background-position: center;
}
.p-section-shops > video {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-section-shops__inner {
  height: 600px;
}
.p-section-shops__inner h2 {
  display: block;
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0px);
  font-family: "Oswald", sans-serif;
  font-size: clamp(55px, 15vw, 333px);
  text-align: center;
  line-height: 0.9;
  color: #ffffff;
}

.p-section-sd {
  background: #000000;
  height: 100vh;
  border-bottom: 1px solid #ffffff;
}

.filter-container {
  padding: 46px 30px 30px;
  background: #000000;
}
.filter-container__inner {
  max-width: 1450px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 46px;
  border-bottom: 3px solid #ffffff;
}

.filter-options {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 12px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-option label {
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  position: relative;
}
.filter-option input[type=checkbox] {
  display: none;
}
.filter-option input[type=checkbox] + label {
  padding-left: 30px;
}
.filter-option input[type=checkbox] + label:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ffffff;
  background-color: #000000;
  top: 50%;
  transform: translateY(-50%);
}
.filter-option input[type=checkbox]:checked + label:after {
  display: block;
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #ffffff;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
}

.items-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.item-card {
  background: #000000;
  padding: 30px;
  transition: opacity 0.3s;
}
.item-card.hidden {
  display: none;
}

.item-category {
  display: inline-block;
  padding: 6px 16px;
  background: #ffffff;
  color: #000000;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 15px;
}

.item-content {
  display: flex;
  gap: 30px;
}

.thumbnails-section {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  height: -moz-fit-content;
  height: fit-content;
}

.thumbnail-item {
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  transition: all 0.3s;
  background: #1a1a1a;
  aspect-ratio: 1;
  width: calc(25% - 10px);
}
.thumbnail-item:hover {
  border-color: #666;
  transform: scale(1.05);
}
.thumbnail-item.active {
  border-color: #ffffff;
}
.thumbnail-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.thumbnail-item .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #999;
  font-size: 14px;
  padding: 10px;
  text-align: center;
}

.detail-section {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  order: -1;
  max-width: 40vw;
  width: 100%;
}

.detail-main {
  position: sticky;
  top: 120px;
  overflow: hidden;
  background: #1a1a1a;
  margin-bottom: 30px;
}
.detail-main a {
  display: block;
  width: 100%;
  height: 100%;
}
.detail-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.detail-main .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #999;
  font-size: 18px;
}

.detail-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  position: sticky;
  top: 80px;
}

.no-item {
  padding: 40px;
  text-align: center;
  color: #999;
  font-size: 16px;
}

@media (max-width: 768px) {
  .item-content {
    flex-direction: column;
  }
  .thumbnails-section {
    flex-direction: row;
    flex: none;
    overflow-x: auto;
  }
  .thumbnail-item {
    flex: 0 0 120px;
  }
}/*# sourceMappingURL=secondary.css.map */