*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #F8F7F4;
    --text-dark: #111111;
    --text-mid: #888888;
    --text-light: #AAAAAA;
    --text-whisper: #BBBBBB;
    --rule: #DDDDDD;
    --header-height: 64px;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    color: var(--text-dark);
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--bg);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    border-bottom: 0.5px solid var(--rule);
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.25s ease;
    flex-shrink: 0;
}

.header-logo:hover {
    opacity: 0.45;
}

.header-logo img {
    height: 28px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
}

.header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.header-nav a {
    font-size: 9.5px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.header-nav a:hover {
    opacity: 0.45;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-actions a {
    font-size: 9.5px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.header-actions a:hover {
    opacity: 0.45;
}

.header-divider {
    width: 0.5px;
    height: 10px;
    background: var(--rule);
    flex-shrink: 0;
}

main {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -40px;
}

.editorial-image-wrap {
    width: 480px;
    height: 640px;
    overflow: hidden;
    position: relative;
}

.editorial-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.90;
    transition: opacity 0.6s ease;
}

.editorial-image-wrap:hover img {
    opacity: 0.97;
}

.image-caption {
    margin-top: 24px;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-whisper);
    text-align: center;
    white-space: nowrap;
}

.upcoming-line {
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8.5px;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-whisper);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0;
    transition: color 0.25s ease;
}

.upcoming-line:hover {
    color: var(--text-mid);
}

.upcoming-line .arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.25s ease;
    font-size: 8.5px;
    letter-spacing: 0;
}

.upcoming-line:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .header-nav {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }

    .header-nav {
        display: none;
    }

    .header-actions {
        gap: 14px;
    }

    .editorial-image-wrap {
        width: 320px;
        height: 426px;
    }

    .page-center {
        margin-top: -20px;
    }
}

@media (max-width: 480px) {
    .editorial-image-wrap {
        width: 280px;
        height: 373px;
    }

    .header-actions .header-divider:not(:first-child),
    .header-actions a:first-child {
        display: none;
    }
}

.editorial-image-wrap {
    display: block;
    text-decoration: none;
    cursor: pointer;
}


/*
EVENTS
*/

:root {
    --page-padding: 40px;
}

/* EVENTS PAGE */

.page-content {
    padding: 0 var(--page-padding);
}

.page-title-zone {
    padding-top: 56px;
    padding-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
}

.page-title-meta {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
}

.title-rule,
.archive-rule {
    width: 100%;
    height: 0.5px;
    background: var(--rule);
}

.section-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 28px;
    margin-bottom: 32px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.event-item {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.empty-events {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-light);
    grid-column: 1 / -1;
    padding-bottom: 40px;
}

.event-image-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
}

.event-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(50%);
    transition: opacity 0.4s ease, transform 0.5s ease;
}

.upcoming .event-image-wrap img {
    opacity: 0.88;
}

.archive .event-image-wrap img {
    opacity: 0.75;
}

.event-item:hover .event-image-wrap img {
    opacity: 0.96 !important;
    transform: scale(1.015);
}

.event-label {
    margin-top: 12px;
    padding-bottom: 20px;
}

.event-name {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 4px;
    transition: opacity 0.2s ease;
}

.event-item:hover .event-name {
    opacity: 0.55;
}

.event-meta {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mid);
    line-height: 1.5;
}

.archive-section {
    margin-top: 64px;
}

.page-end {
    height: 80px;
}

@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --page-padding: 20px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .events-grid {
        gap: 1px;
    }
}

/*
COLLECTIONS PAGE
*/

:root {
  --text-category: #999999;
}

.collections-page {
  padding-top: var(--header-height);
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 100px;
  display: block;
}

.category-nav-collections {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 48px;
  list-style: none;
}

.category-nav-collections li a {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-category);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
  padding-bottom: 2px;
}

.category-nav-collections li a:hover,
.category-nav-collections li a.active {
  color: var(--text-dark);
}

.category-nav-collections li a.active {
  border-bottom: 0.5px solid var(--text-dark);
}

.page-header-zone-collections {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 32px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--rule);
}

.page-header-title-collections {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.page-header-light-collections,
.page-header-bold-collections {
  font-size: 42px;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  line-height: 1;
}

.page-header-light-collections {
  font-weight: 300;
}

.page-header-bold-collections {
  font-weight: 700;
}

.grid-section {
  margin-top: 32px;
}

.row-asymmetric {
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 20px;
  margin-bottom: 56px;
}

.hero-item,
.portrait-item,
.product-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.hero-image-wrap,
.portrait-image-wrap,
.product-image-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-image-wrap {
  aspect-ratio: 4 / 3;
}

.portrait-image-wrap,
.product-image-wrap {
  aspect-ratio: 3 / 4;
}

.hero-image-wrap img,
.portrait-image-wrap img,
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(80%);
  opacity: 0.92;
  transition: filter 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
}

.hero-item:hover .hero-image-wrap img,
.portrait-item:hover .portrait-image-wrap img,
.product-item:hover .product-image-wrap img {
  filter: grayscale(50%);
  opacity: 1;
  transform: scale(1.015);
}

.hero-info,
.product-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-info {
  margin-top: 14px;
}

.product-info {
  margin-top: 12px;
}

.new-tag {
  display: inline-block;
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-whisper);
  border: 0.5px solid var(--rule);
  padding: 1px 5px;
  margin-bottom: 2px;
  align-self: flex-start;
}

.hero-name,
.product-name {
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.4;
}

.hero-name {
  font-size: 11px;
}

.product-name {
  font-size: 10px;
}

.hero-price-row,
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero-price,
.product-price {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

.hero-limited,
.product-limited {
  font-size: 9px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

.hero-series {
  font-size: 8px;
  font-weight: 400;
  color: var(--text-whisper);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
}

.row-four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  margin-bottom: 56px;
}

.row-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
}

.filtered-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 56px;
  margin-top: 32px;
}

.filtered-grid.is-visible {
  display: grid !important;
}

.editorial-grid.is-hidden {
  display: none !important;
}

.filtered-product[hidden] {
  display: none !important;
}

.filtered-grid .filtered-product {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.filtered-grid .product-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
}

@media (max-width: 1200px) {
  .row-four-col,
  .filtered-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }
}

@media (max-width: 1024px) {
  .page-header-light-collections,
  .page-header-bold-collections {
    font-size: 32px;
  }

  .row-four-col,
  .filtered-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}

@media (max-width: 900px) {
  .row-asymmetric {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .hero-image-wrap,
  .portrait-image-wrap {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .collections-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .row-four-col,
  .row-three-col,
  .filtered-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
    column-gap: 12px;
  }

  .page-header-light-collections,
  .page-header-bold-collections {
    font-size: 28px;
  }

  .category-nav-collections {
    gap: 18px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .row-four-col,
  .row-three-col,
  .filtered-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 12px;
  }
}

/*
PRODUCT PAGE
*/

.product-page {
  padding-top: var(--header-height);
  padding-bottom: 72px;
  min-height: 100vh;
}

.product-page .breadcrumb-bar {
  width: 1440px;
  max-width: 100%;
  margin: 16px auto 0;
  padding: 0;
}

.product-page .breadcrumb-bar span,
.product-page .breadcrumb-bar a {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  cursor: pointer;
}

.product-page .breadcrumb-bar span:hover,
.product-page .breadcrumb-bar a:hover {
  opacity: 0.6;
}

.product-page .breadcrumb-bar .sep {
  font-size: 9px;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin: 0 6px;
  cursor: default;
}

.product-page .breadcrumb-bar .sep:hover {
  opacity: 1;
}

.product-page .product-layout {
  width: 1440px;
  max-width: 100%;
  margin: 24px auto 0;
  display: flex;
  align-items: flex-start;
}

.product-page .col-left {
  width: 58%;
  flex-shrink: 0;
}

.product-page .main-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #eeeeee;
}

.product-page .main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.75);
  transition: transform 0.6s ease;
}

.product-page .main-image-wrap:hover img {
  transform: scale(1.03);
}

.product-page .thumbnails {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.product-page .thumb {
  width: 72px;
  height: 72px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  background: #eeeeee;
}

.product-page .thumb.active {
  opacity: 1;
}

.product-page .thumb:hover {
  opacity: 0.85;
}

.product-page .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.75);
}

.product-page .col-right {
  width: 42%;
  flex-shrink: 0;
  padding-left: 64px;
}

.product-page .product-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.2;
}

.product-page .product-identity {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-whisper);
}

.product-page .product-price {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.product-page .hairline {
  width: 100%;
  height: 0.5px;
  background: var(--rule);
  margin-top: 24px;
}

.product-page .selector-block {
  margin-top: 28px;
}

.product-page .selector-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999999;
}

.product-page .colour-swatches {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.product-page .swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
  border: 0.5px solid var(--rule);
}

.product-page .swatch:hover {
  opacity: 0.7;
}

.product-page .swatch.active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 0.5px solid var(--text-dark);
}

.product-page .size-block {
  margin-top: 24px;
}

.product-page .size-options {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-page .size-opt {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
  padding-bottom: 3px;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.product-page .size-opt:hover {
  opacity: 0.5;
}

.product-page .size-opt.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.5px;
  background: var(--text-dark);
}

.product-page .size-opt.out-of-stock {
  color: var(--text-light);
  cursor: default;
  text-decoration: line-through;
  text-decoration-color: var(--text-light);
}

.product-page .size-opt.out-of-stock:hover {
  opacity: 1;
}

.product-page .accordion {
  margin-top: 40px;
}

.product-page .accordion-item {
  border-top: 0.5px solid var(--rule);
}

.product-page .accordion-item:last-child {
  border-bottom: 0.5px solid var(--rule);
}

.product-page .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.product-page .accordion-header:hover {
  opacity: 0.5;
}

.product-page .accordion-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.product-page .accordion-toggle {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1;
  transition: transform 0.3s ease;
}

.product-page .accordion-item.open .accordion-toggle {
  transform: rotate(45deg);
}

.product-page .accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.product-page .accordion-item.open .accordion-body {
  max-height: 500px;
}

.product-page .accordion-body-inner {
  padding-bottom: 16px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

.product-page-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  transition: background 0.2s ease;
}

.product-page-bottom-bar:hover {
  background: #2a2a2a;
}

.product-page-bottom-bar:active {
  background: #000000;
}

.product-page-bottom-bar span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
}

.product-page-bottom-bar.disabled {
  background: #999999;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 1440px) {
  .product-page .breadcrumb-bar,
  .product-page .product-layout {
    width: 100%;
    padding: 0 40px;
  }
}

@media (max-width: 1024px) {
  .product-page .col-right {
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  .product-page .breadcrumb-bar,
  .product-page .product-layout {
    padding: 0 20px;
  }

  .product-page .product-layout {
    flex-direction: column;
  }

  .product-page .col-left,
  .product-page .col-right {
    width: 100%;
  }

  .product-page .col-right {
    padding-left: 0;
    margin-top: 32px;
  }
}

/*
CART PAGE
*/

.cart-page {
  min-height: auto;
  padding-top: var(--header-height);
  display: block;
  align-items: initial;
  justify-content: initial;
  position: relative;
}

.cart-page .cart-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 40px 120px;
}

.cart-page .page-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cart-page .page-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.cart-page .item-count {
  font-size: 9px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-page .page-rule {
  width: 100%;
  height: 0.5px;
  background: var(--rule);
}

.cart-page .cart-layout {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.cart-page .cart-items {
  flex: 1;
  min-width: 0;
}

.cart-page .cart-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  min-height: 120px;
  border-bottom: 0.5px solid var(--rule);
  transition: opacity 0.35s ease, height 0.35s ease, padding 0.35s ease;
}

.cart-page .item-image {
  width: 80px;
  height: 105px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: #eeeeee;
}

.cart-page .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  opacity: 0.88;
  transition: opacity 0.4s ease;
}

.cart-page .cart-item:hover .item-image img {
  opacity: 0.97;
}

.cart-page .item-details {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.cart-page .item-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.cart-page .item-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.2;
}

.cart-page .item-size,
.cart-page .item-colour {
  margin-top: 6px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  line-height: 1;
}

.cart-page .item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  flex-shrink: 0;
}

.cart-page .item-price {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: 0.05em;
}

.cart-page .qty-control {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.cart-page .qty-btn {
  cursor: pointer;
  transition: opacity 0.2s ease;
  padding: 2px 0;
  border: none;
  background: transparent;
  font: inherit;
  color: inherit;
}

.cart-page .qty-btn:hover {
  opacity: 0.4;
}

.cart-page .qty-value {
  min-width: 10px;
  text-align: center;
}

.cart-page .item-remove {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 400;
  color: var(--text-whisper);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
  line-height: 1;
  letter-spacing: 0.05em;
  border: none;
  background: transparent;
  font-family: inherit;
}

.cart-page .item-remove:hover {
  color: var(--text-dark);
}

.cart-page .order-summary {
  width: 360px;
  flex-shrink: 0;
  margin-left: 80px;
}

.cart-page .summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid var(--rule);
}

.cart-page .summary-row.subtotal {
  height: 48px;
}

.cart-page .summary-row.shipping {
  height: 40px;
}

.cart-page .summary-row.total {
  height: 52px;
}

.cart-page .summary-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.cart-page .summary-row.total .summary-label {
  font-weight: 600;
  color: var(--text-dark);
}

.cart-page .summary-value {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}

.cart-page .summary-value.muted {
  font-size: 9px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-align: right;
}

.cart-page .summary-row.total .summary-value {
  font-size: 13px;
}

.cart-page .summary-note {
  margin-top: 8px;
  font-size: 9px;
  font-style: italic;
  font-weight: 400;
  color: var(--text-whisper);
  letter-spacing: 0.1em;
  text-align: right;
}

.cart-page .checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  background: var(--text-dark);
  cursor: pointer;
  margin-top: 24px;
  transition: opacity 0.2s ease;
  border: none;
  text-decoration: none;
}

.cart-page .checkout-btn:hover {
  opacity: 0.82;
}

.cart-page .checkout-btn span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.cart-page .checkout-btn.disabled {
  opacity: 0.35;
  pointer-events: none;
}

.cart-page .continue-link {
  display: block;
  margin-top: 20px;
  font-size: 9px;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
  cursor: pointer;
}

.cart-page .continue-link:hover {
  color: var(--text-dark);
}

.cart-page .empty-cart {
  padding: 72px 0;
  border-bottom: 0.5px solid var(--rule);
}

.cart-page .empty-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.cart-page .empty-text {
  margin-top: 10px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .cart-page .order-summary {
    margin-left: 40px;
  }
}

@media (max-width: 768px) {
  .cart-page .cart-container {
    padding: 40px 20px 80px;
  }

  .cart-page .cart-layout {
    flex-direction: column;
  }

  .cart-page .cart-items {
    width: 100%;
  }

  .cart-page .cart-item {
    gap: 18px;
    min-height: 132px;
  }

  .cart-page .item-details {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .cart-page .item-controls {
    align-items: flex-start;
  }

  .cart-page .order-summary {
    width: 100%;
    margin-left: 0;
    margin-top: 32px;
  }
}

/*
ARCHIVE PAGE
*/

.archive-page {
  min-height: 100vh;
  padding-top: var(--header-height);
  display: block;
}

.archive-page .archive-body {
  padding-top: 52px;
  padding-bottom: 140px;
}

.archive-page .date-stamp {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 32px;
}

.archive-page .entry-rule {
  width: 100%;
  height: 0.5px;
  background: var(--rule);
  margin-top: 56px;
  margin-bottom: 56px;
}

.archive-page .entry-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 48px;
  align-items: center;
}

.archive-page .entry-split-photo {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #eeeeee;
}

.archive-page .entry-split-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  opacity: 0.88;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.archive-page .entry-split-photo:hover img {
  opacity: 0.96;
  transform: scale(1.015);
}

.archive-page .entry-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.archive-page .entry-session-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.3;
}

.archive-page .entry-session-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 8px;
}

.archive-page .entry-session-meta {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 24px;
}

.archive-page .entry-session-credit {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-whisper);
  margin-top: 16px;
}

.archive-page .video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.archive-page .video-placeholder:hover {
  background: #222222;
}

.archive-page .play-circle {
  width: 56px;
  height: 56px;
  opacity: 0.45;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.archive-page .video-placeholder:hover .play-circle {
  opacity: 0.75;
}

.archive-page .video-label-row,
.archive-page .gallery-label-row,
.archive-page .fullwidth-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 14px;
}

.archive-page .video-label-title,
.archive-page .gallery-label-title,
.archive-page .label-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.archive-page .video-label-right,
.archive-page .gallery-label-date,
.archive-page .label-sub,
.archive-page .fullwidth-label-right {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}

.archive-page .entry-poster {
  display: grid;
  grid-template-columns: 1fr 380px;
  column-gap: 64px;
  align-items: center;
  min-height: 520px;
}

.archive-page .entry-poster-text {
  min-width: 0;
}

.archive-page .poster-drop-label {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  line-height: 1;
}

.archive-page .poster-location,
.archive-page .poster-release,
.archive-page .poster-credit {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 14px;
}

.archive-page .entry-poster-image {
  width: 100%;
  overflow: hidden;
  background: #eeeeee;
}

.archive-page .entry-poster-image img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  opacity: 0.88;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.archive-page .entry-poster-image:hover img {
  opacity: 0.96;
  transform: scale(1.015);
}

.archive-page .gallery-4-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.archive-page .gallery-4-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eeeeee;
}

.archive-page .gallery-4-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.archive-page .gallery-4-item:hover img {
  opacity: 0.98;
  transform: scale(1.015);
}

.archive-page .image-fullwidth {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eeeeee;
}

.archive-page .image-fullwidth img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.archive-page .image-fullwidth:hover img {
  opacity: 0.95;
  transform: scale(1.015);
}

.archive-page .fullwidth-label-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.archive-page .fullwidth-label-right {
  text-align: right;
  color: var(--text-whisper);
}

.archive-page .entry-fading-1 {
  opacity: 0.55;
}

.archive-page .entry-fading-2 {
  opacity: 0.28;
}

.archive-page .archive-text-block {
  max-width: 720px;
  padding: 40px 0;
}

.archive-page .archive-text-block h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  line-height: 1.1;
}

.archive-page .archive-text-subtitle {
  margin-top: 12px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.archive-page .archive-text-body {
  margin-top: 28px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

.archive-page .archive-quote-block {
  max-width: 920px;
  padding: 72px 0;
}

.archive-page .archive-quote-block p {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.archive-page .archive-quote-block span {
  display: block;
  margin-top: 24px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .archive-page .entry-split {
    grid-template-columns: 1.5fr 1fr;
    column-gap: 40px;
  }

  .archive-page .entry-poster {
    grid-template-columns: 1fr 300px;
    column-gap: 40px;
  }
}

@media (max-width: 768px) {
  .archive-page .archive-body {
    padding-top: 40px;
  }

  .archive-page .entry-split {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .archive-page .entry-poster {
    grid-template-columns: 1fr;
    row-gap: 32px;
    min-height: auto;
  }

  .archive-page .gallery-4-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .archive-page .video-label-row,
  .archive-page .gallery-label-row,
  .archive-page .fullwidth-label-row {
    flex-direction: column;
    gap: 8px;
  }

  .archive-page .fullwidth-label-right {
    text-align: left;
  }

  .archive-page .poster-drop-label,
  .archive-page .archive-text-block h2 {
    font-size: 24px;
  }

  .archive-page .archive-quote-block p {
    font-size: 26px;
  }
}

/*
LOGIN PAGE
*/

.login-page {
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-page .login-container {
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -32px;
}

.login-page .form-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1;
}

.login-page .form-microcopy {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-whisper);
  line-height: 1;
}

.login-page .field-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.login-page .field-group:first-of-type {
  margin-top: 40px;
}

.login-page .field-group + .field-group {
  margin-top: 32px;
}

.login-page .field-label {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1;
}

.login-page .field-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--rule);
  border-radius: 0;
  outline: none;
  padding-bottom: 10px;
  font-size: 13px;
  font-weight: 400;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.login-page .field-input::placeholder {
  color: #cccccc;
}

.login-page .field-input:focus {
  border-bottom-color: var(--text-dark);
}

.login-page .password-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  width: 100%;
}

.login-page .password-label-row .field-label {
  margin-bottom: 0;
}

.login-page .show-password-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.2s ease;
}

.login-page .show-password-btn:hover,
.login-page .show-password-btn.is-active {
  color: var(--text-dark);
}

.login-page .form-submit {
  margin-top: 40px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: none;
  border: none;
  border-bottom: 0.5px solid var(--text-dark);
  border-radius: 0;
  padding: 0 0 2px 0;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s ease;
  display: inline-block;
  line-height: 1.4;
}

.login-page .form-submit:hover,
.login-page .form-submit:focus {
  outline: none;
  opacity: 0.45;
}

.login-page .form-secondary {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-page .form-secondary-divider {
  width: 0.5px;
  height: 10px;
  background: var(--rule);
  flex-shrink: 0;
}

.login-page .form-secondary a {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.login-page .form-secondary a:hover {
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .login-page .login-container {
    width: 280px;
    margin-top: -20px;
  }
}

























































/*
DASHBOARD PAGE
*/

.dashboard-page {
  min-height: 100vh;
  padding-top: var(--header-height);
  display: block;
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 100px;
}

.dashboard-section {
  margin-top: 48px;
}

.dashboard-section-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
  margin-top: 12px;
  display: block;
}

.identity-zone {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 0.5px solid var(--rule);
}

.identity-left {
  display: flex;
  flex-direction: column;
}

.identity-name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1;
  text-decoration: none;
}

.identity-level {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.identity-stats {
  display: flex;
  align-items: stretch;
  margin-top: 20px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  padding-right: 16px;
  margin-right: 16px;
  border-right: 0.5px solid var(--rule);
}

.stat-block:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.identity-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.dashboard-settings-link {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
}

.dashboard-settings-link:hover {
  opacity: 0.45;
}

.identity-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0.5px solid var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.identity-badge span {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.missions-row {
  display: flex;
  align-items: stretch;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}

.mission-block {
  flex: 1;
  padding: 24px 28px;
  border-right: 0.5px solid var(--rule);
  display: flex;
  flex-direction: column;
}

.mission-block:last-child {
  border-right: none;
}

.mission-block:hover {
  background-color: rgba(17, 17, 17, 0.02);
}

.mission-primary-dot {
  width: 6px;
  height: 6px;
  background: var(--text-dark);
  margin-bottom: 12px;
}

.mission-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.4;
}

.mission-desc {
  margin-top: 6px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  line-height: 1.5;
}

.mission-completion {
  margin-top: 20px;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-whisper);
}

.two-col-middle,
.two-col-lower {
  display: flex;
  align-items: flex-start;
}

.col-pieces {
  flex: 0 0 55%;
  padding-right: 56px;
}

.col-tickets {
  flex: 0 0 45%;
  padding-left: 56px;
  border-left: 0.5px solid var(--rule);
}

.col-scans {
  flex: 0 0 50%;
  padding-right: 56px;
}

.col-notifications {
  flex: 0 0 50%;
  padding-left: 56px;
  border-left: 0.5px solid var(--rule);
}

.pieces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.piece-item {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.piece-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #eeeeee;
}

.piece-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  opacity: 0.88;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.piece-item:hover .piece-image-wrap img {
  opacity: 0.96;
  transform: scale(1.015);
}

.piece-name {
  margin-top: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.piece-price {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-light);
}

.ticket-row,
.scan-row,
.notif-row {
  display: flex;
  align-items: center;
  border-top: 0.5px solid var(--rule);
  text-decoration: none;
  color: inherit;
}

.ticket-row:last-child,
.scan-row:last-child,
.notif-row:last-child {
  border-bottom: 0.5px solid var(--rule);
}

.ticket-row {
  height: 52px;
  gap: 12px;
}

.scan-row,
.notif-row {
  height: 36px;
  gap: 12px;
}

.ticket-row:hover,
.scan-row:hover,
.notif-row:hover {
  background-color: rgba(17, 17, 17, 0.02);
}

.ticket-name,
.scan-username {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  flex: 1;
}

.ticket-date,
.ticket-location,
.scan-type,
.scan-date,
.notif-time {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

.notif-message {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-mid);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qr-placeholder {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 0.5px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 1px;
  padding: 2px;
}

.qr-cell {
  background: var(--rule);
}

.qr-cell.dark {
  background: var(--text-dark);
}

.view-all {
  display: inline-block;
  margin-top: 18px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
}

.view-all:hover {
  color: var(--text-dark);
}

.dashboard-empty {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.special-links-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.special-links-row a {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 0.5px solid var(--text-dark);
  padding-bottom: 2px;
}

.special-links-row a:hover {
  opacity: 0.45;
}

@media (max-width: 1024px) {
  .dashboard-container {
    padding: 40px 28px 80px;
  }

  .col-pieces,
  .col-scans {
    padding-right: 36px;
  }

  .col-tickets,
  .col-notifications {
    padding-left: 36px;
  }
}

@media (max-width: 768px) {
  .dashboard-container {
    padding: 28px 20px 80px;
  }

  .identity-zone {
    margin-top: 16px;
    flex-direction: column;
    gap: 24px;
  }

  .identity-right {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .missions-row,
  .two-col-middle,
  .two-col-lower {
    flex-direction: column;
  }

  .mission-block {
    border-right: none;
    border-bottom: 0.5px solid var(--rule);
  }

  .mission-block:last-child {
    border-bottom: none;
  }

  .col-pieces,
  .col-scans,
  .col-tickets,
  .col-notifications {
    flex: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    border-left: none;
  }

  .col-tickets,
  .col-notifications {
    border-top: 0.5px solid var(--rule);
    padding-top: 36px;
    margin-top: 36px;
  }

  .pieces-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}