.sc-gallery {
  padding-top: 40px;
  padding-bottom: 30px;
}

.gallery--box {
  padding-top: 50px;
  padding-bottom: 50px;
}
.gallery--box .icon-arrow {
  margin-left: 10px;
  font-size: 10px;
  transition: 0.3s;
}
.gallery--box .icon-arrow:before {
  font-size: 10px;
  transition: 0.3s;
}
.gallery--box .gallery__details {
  padding-top: 80px;
  padding-bottom: 80px;
  height: 100%;
  width: 100%;
  max-width: 780px;
  display: flex;
  flex-wrap: wrap;
}
.gallery--box .gallery__details a {
  color: var(--dark);
  transition: 0.3s;
}
.gallery--box .gallery__details a:hover {
  color: var(--yellow);
}
.gallery--box .gallery__details a:hover .icon:before {
  color: var(--yellow);
}
.gallery--box .gallery__details a:focus {
  color: #E0AD47;
}
.gallery--box .gallery__details a:focus .icon:before {
  color: #E0AD47;
}
.gallery--box .gallery__details .gallery__detail-top {
  align-self: flex-start;
  width: 100%;
}
.gallery--box .gallery__details .gallery__detail-bottom {
  align-self: flex-end;
  width: 100%;
  text-align: right;
}
.gallery--box .gallery__details h4 {
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.gallery--box .gallery__details .place {
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
}
.gallery--box .gallery__details .sizes {
  margin-top: 52px;
  margin-bottom: 52px;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  list-style: none;
  width: 100%;
  padding-left: 0;
}
.gallery--box .gallery__details .sizes li {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 24px;
}
.gallery--box .gallery__details .sizes li:last-of-type {
  margin-bottom: 0;
}
.gallery--box .gallery__details .sizes .cost {
  font-weight: 600;
  margin-left: auto;
  margin-right: 40px;
}
.gallery--box .gallery__details .order {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.gallery--box .gallery__details .limited {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
}
.gallery--box .sold-out {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  margin-top: 52px;
}
.gallery--box .detail__link {
  color: var(--dark);
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.gallery--box .parallaxSwiper {
  max-width: 780px;
  padding-bottom: 35px;
}
.gallery--box .parallaxSwiper:before {
  background-color: #FFFEFC;
  background-image: url(../../img/bd-bg.png);
}
.gallery--box .slide__item-bg {
  width: 100%;
  position: relative;
}
.gallery--box .slide__item-bg img {
  width: 100%;
}
.gallery--box .gal__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  z-index: 1;
}

.hidden {
  display: none;
}

.footer h4 {
  margin-bottom: 8px;
}

    .prints-shop {
      max-width: 1200px;
      margin: 0 auto;
      padding: 32px 16px 64px;
    }

    .prints-shop-header {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 24px;
    }

    .prints-shop-title {
      font-size: 1.6rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .prints-shop-subtitle {
      font-size: 0.95rem;
      color: var(--text-muted);
      text-transform: uppercase;
      max-width: 540px;
    }

    .prints-shop-subtitle2 {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 540px;
    }

    .prints-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    @media (min-width: 640px) {
      .prints-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 960px) {
      .prints-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .print-card {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      cursor: pointer;
    }

    .print-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    }

    .print-image-wrapper {
      position: relative;
      width: 100%;
      /* 1:1 aspect ratio */
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #ddd;
    }

    .print-image-wrapper img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .print-card:hover .print-image-wrapper img {
      transform: scale(1.03);
    }

    .print-content {
      padding: 14px 14px 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
    }

    .print-name {
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .print-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      min-height: 40px;
    }

    .print-controls {
      margin-top: 8px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .print-size-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
    }

    .print-size-select {
      position: relative;
    }

    .print-size-select select {
      width: 100%;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid var(--border-soft);
      font-size: 0.85rem;
      background: #fff;
      appearance: none;
      outline: none;
      cursor: pointer;
    }

    .print-size-select::after {
      content: "▾";
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.7rem;
      pointer-events: none;
      color: var(--text-muted);
    }

    .print-footer {
      margin-top: 4px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.95rem;
    }

    .print-price {
      font-weight: 600;
    }

/* RESET + STYLE: "BUY NOW" button in Prints shop */
.print-footer button.print-cta {
  all: unset;                /* wipe out ANY global button/cta styles */
  box-sizing: border-box;    /* restore box sizing */

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid var(--border-soft);
  padding: 6px 14px;

  font-family: "Gilroy", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  background: #ffffff;
  color: #413B2E;            /* safe fallback */
  cursor: pointer;

  /* remove any weird transitions from globals */
  opacity: 1;
  visibility: visible;
}

/* Hover state */
.print-footer button.print-cta:hover,
.print-footer button.print-cta:focus {
  background: #413B2E;       /* or var(--dark) if you prefer */
  color: #ffffff;
}




@media screen and (min-width: 1300px) and (max-height: 950px) {
  .gallery--box .parallaxSwiper .slide__item-bg{
    max-height: 70vh;
  }
}
@media (min-width: 991px) {
  .gallery--box:nth-of-type(odd) .parallaxSwiper {
    margin-left: auto;
    margin-right: 0;
  }
  .gallery--box:nth-of-type(odd) .detail__link {
    justify-content: flex-end;
  }
  .gallery--box:nth-of-type(even) .detail__col {
    order: 2;
  }
  .gallery--box:nth-of-type(even) .slider__col {
    order: 1;
  }
  .gallery--box:nth-of-type(even) .parallaxSwiper {
    margin-right: auto;
    margin-left: 0;
  }
  .gallery--box:nth-of-type(even) .gallery__details {
    margin-left: auto;
  }
}
@media (max-width: 1920px) {
  .sc-gallery .artwork__img {
    height: 77vh;
    min-height: auto;
  }
}
@media (max-width: 1200px) {
  .gallery--box .gallery__details {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .sc-gallery {
    padding-bottom: 10px;
  }
  .sc-gallery .artwork__info {
    margin-bottom: 0;
  }
  .gallery--box .gallery__details {
    padding-top: 0;
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .sc-gallery {
    padding-top: 32px;
    padding-bottom: 20px;
  }
  .sc-gallery .artwork__img {
    height: auto;
    padding-top: 120%;
  }
  .sc-gallery .artwork__info {
    margin-top: 80px;
  }
  .gallery--box .gallery__details h4 {
    font-size: 24px;
    line-height: 29px;
  }
  .gallery--box .gallery__details .place {
    font-size: 14px;
    line-height: 16px;
  }
  .gallery--box .gallery__details .sizes {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 19px;
  }
  .gallery--box .gallery__details .sizes li {
    margin-bottom: 14px;
  }
  .gallery--box .gallery__details .sizes a {
    font-size: 18px;
  }
  .gallery--box .gallery__details .limited {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 32px;
  }
  .gallery--box .sold-out {
    margin-top: 14px;
    font-size: 16px;
    margin-bottom: 30px;
  }
}
