/* 2026 gallery, shop and exhibition refinements */

/* 2026 refinement: seamless ticker, complete shop, visual collection, exhibitions and artist page */
.home-latest {
  padding-bottom: 118px;
}

.home-closing {
  border-top: 1px solid var(--line);
}

.product-hover-hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(17,17,17,.62);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  opacity: 0;
  transition: opacity .28s;
  padding-bottom: 58px;
  text-align: center;
}

.product-card:hover .product-hover-hint {
  opacity: 1;
}

.product-card:hover .product-tag,.product-card:hover .wishlist-btn {
  z-index: 3;
}

.quick-add {
  z-index: 4;
}

.product-grid {
  align-items: start;
}

.shop-page-section .product-grid {
  grid-template-columns: repeat(4,minmax(0,1fr));
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  border: 1px solid #333;
  display: grid !important;
  place-items: center;
  position: relative;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.social-link span {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.social-link:hover {
  background: #fff;
  color: #111;
}

.collection-hero {
  max-width: var(--max);
  margin: auto;
  padding: 90px 34px 110px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 90px;
  align-items: center;
  min-height: 720px;
}

.collection-hero h1,.exhibitions-hero h1,.artist-intro h1 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .96;
  font-size: clamp(62px,7vw,112px);
  margin: 0 0 30px;
}

.collection-hero>div:first-child>p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
}

.collection-hero-stack {
  height: 610px;
  position: relative;
}

.collection-hero-stack img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.collection-hero-stack img:nth-child(1) {
  width: 49%;
  height: 78%;
  left: 0;
  top: 11%;
}

.collection-hero-stack img:nth-child(2) {
  width: 46%;
  height: 66%;
  right: 2%;
  top: 0;
}

.collection-hero-stack img:nth-child(3) {
  width: 39%;
  height: 49%;
  right: 11%;
  bottom: 0;
  border: 10px solid #fff;
}

.collection-browser {
  max-width: var(--max);
  margin: auto;
  padding: 30px 34px 140px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
  align-items: start;
}

.collection-sticky {
  position: sticky;
  top: 120px;
}

.filter-pills.vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.filter-pills.vertical button {
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  background: transparent;
}

.filter-pills.vertical button.active {
  padding-left: 14px;
}

.collection-masonry {
  columns: 3;
  column-gap: 16px;
}

.collection-item {
  break-inside: avoid;
  margin: 0 0 16px;
  position: relative;
  background: var(--soft);
  cursor: zoom-in;
  overflow: hidden;
}

.collection-item[hidden] {
  display: none;
}

.collection-item img {
  width: 100%;
  height: auto;
  min-height: 250px;
  object-fit: cover;
  transition: transform .55s;
}

.collection-item:hover img {
  transform: scale(1.018);
}

.collection-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent,rgba(0,0,0,.78));
  color: #fff;
  padding: 65px 18px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  opacity: 0;
  transition: .25s;
}

.collection-item:hover figcaption,.collection-item:focus figcaption {
  opacity: 1;
}

.collection-item figcaption span {
  font-family: var(--serif);
  font-size: 19px;
}

.collection-item figcaption small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.collection-lightbox {
  position: fixed;
  inset: 0;
  z-index: 160;
  background: rgba(10,10,10,.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.collection-lightbox.open {
  display: flex;
}

.collection-lightbox figure {
  margin: 0;
  max-width: min(1100px,88vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.collection-lightbox img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
}

.collection-lightbox figcaption {
  color: #fff;
  margin-top: 13px;
  font-family: var(--serif);
  font-size: 20px;
}

.collection-lightbox-close {
  position: absolute;
  right: 25px;
  top: 20px;
  color: #fff;
  background: none;
  border: 0;
  font-size: 36px;
  cursor: pointer;
}

.exhibitions-hero {
  background: #111;
  color: #fff;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 75px;
  padding: 100px max(34px,calc((100vw - var(--max))/2 + 34px));
  align-items: center;
  min-height: 720px;
}

.exhibitions-hero p:not(.eyebrow) {
  color: #bbb;
  max-width: 580px;
  font-size: 18px;
}

.exhibitions-hero img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.status-pill {
  display: inline-flex;
  border: 1px solid currentColor;
  border-radius: 50px;
  padding: 7px 12px;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.status-pill.live:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2da86f;
  margin-right: 8px;
  align-self: center;
}

.status-pill.past {
  color: #777;
}

.exhibition-current-card {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 55px;
  align-items: end;
}

.exhibition-current-card img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.exhibition-current-card>div {
  padding-bottom: 30px;
}

.exhibition-date {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
  color: var(--muted);
}

.past-exhibitions {
  background: var(--soft);
  padding: 130px max(34px,calc((100vw - var(--max))/2 + 34px));
}

.past-heading {
  margin-bottom: 65px;
}

.past-heading h2,.venue-inquiry h2,.artist-story h2 {
  font-family: var(--serif);
  font-size: clamp(50px,5vw,82px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
  margin: 0;
}

.past-feature {
  display: grid;
  grid-template-columns: .34fr .66fr;
  gap: 65px;
  align-items: start;
}

.past-feature-copy {
  position: sticky;
  top: 120px;
}

.past-feature h3,.past-compact h3 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
  margin: 14px 0 20px;
}

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

.vernissage-grid img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.vernissage-grid img:nth-child(3n) {
  grid-column: 1/-1;
  height: 620px;
}

.past-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
  margin-top: 120px;
  padding-top: 90px;
  border-top: 1px solid #d5d5d0;
}

.past-compact img {
  height: 580px;
  width: 100%;
  object-fit: cover;
}

.venue-inquiry {
  max-width: var(--max);
  margin: auto;
  padding: 140px 34px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
}

.venue-inquiry-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.venue-inquiry-intro>p:not(.eyebrow) {
  color: var(--muted);
  max-width: 520px;
}

.venue-form {
  border: 1px solid var(--line);
  padding: 50px;
}

.venue-form .btn {
  margin-top: 28px;
}

.artist-intro {
  max-width: var(--max);
  margin: auto;
  padding: 70px 34px 120px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.artist-portrait-wrap {
  position: relative;
}

.artist-portrait-wrap img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

.artist-portrait-wrap>span {
  position: absolute;
  right: -18px;
  bottom: 30px;
  background: #111;
  color: #fff;
  padding: 16px 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
}

.artist-lead {
  font-size: 20px;
  max-width: 660px;
  color: #4f4f4c;
}

.artist-story {
  background: var(--soft);
  padding: 130px max(34px,calc((100vw - var(--max))/2 + 34px));
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 120px;
  align-items: center;
}

.artist-story-copy>p:not(.eyebrow) {
  font-size: 17px;
  color: #555;
  max-width: 660px;
}

.artist-story blockquote {
  font-family: var(--serif);
  font-size: clamp(38px,4.2vw,68px);
  line-height: 1.08;
  margin: 0;
  font-style: italic;
}

.artist-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding: 16px;
}

.artist-gallery figure {
  margin: 0;
  height: 680px;
  overflow: hidden;
}

.artist-gallery figure:nth-child(2) {
  margin-top: 100px;
}

.artist-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ==================================================
   Nahtloses Laufband mit vier identischen Gruppen
   ================================================== */

.marquee {
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.marquee-track {
  display: flex !important;
  width: max-content !important;
  min-width: max-content !important;
  gap: 0 !important;
  will-change: transform;
  animation: bucks-marquee-infinite 22s linear infinite !important;
}

.marquee .marquee-group,
.marquee .marquee-group[aria-hidden="true"] {
  display: flex !important;
  visibility: visible !important;
  flex: 0 0 100vw !important;
  width: 100vw !important;
  min-width: 100vw !important;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  padding: 0 18px;
  box-sizing: border-box;
  white-space: nowrap;
}

.marquee-group span {
  flex: 0 0 auto;
  padding: 20px 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.marquee-group i {
  flex: 0 0 auto;
  padding: 0 4px;
  font-style: normal;
}

@keyframes bucks-marquee-infinite {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-25%, 0, 0);
  }
}