/* ─── HERO SLIDER ───────────────────────────────────────── */
.hero-section {
  width: 100%;
  overflow: hidden;
  background: var(--bg);
  padding: 30px 0 34px;
  position: relative;
}

.hero-track-wrapper {
  position: relative;
}

.hero-track {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

/* Side (peek) panels */
.hero-side {
  flex-shrink: 0;
  width: 775.353px;
  height: 517.592px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: opacity 0.4s;
  cursor: pointer;
}



.hero-side img, .hero-side .img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
   transition: transform 0.3s ease;
}

.hero-side:hover img { transform: scale(1.05); }

/* Center (active) panel */
.hero-center {
  flex-shrink: 0;
  width: min(775px, 80vw);
  aspect-ratio: 775.353 / 517.592;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 -30px;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  position: relative;
  cursor: pointer;
}
.hero-center img, .hero-center .img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero-center:hover img { transform: scale(1.015); }

/* Center hover overlay */
.hero-slide-overlay {
   position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0,0,0,0);
  transition: background 0.35s;
  z-index: 3;
}
.hero-center:hover .hero-slide-overlay { background: rgba(0,0,0,0.22); }

.hero-slide-label {
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'Jost', Arial, sans-serif;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(1);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

.hero-center:hover .hero-slide-overlay {
  pointer-events: auto;        /* let mouse events reach the label */
}

.hero-center:hover .hero-slide-label {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1.02);
}

.hero-center:hover .hero-slide-label:hover {
  background: rgba(255, 255, 255, 0.67);
  transform: translateY(0) scale(1.09);
}

/* Prev/Next arrow buttons */
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  opacity: 0;
   transition: background 0.2s, opacity 0.2s, transform 0.2s;
}
.hero-track-wrapper:hover .slider-btn { opacity: 1; }
.slider-btn:hover { background: rgba(255,255,255,0.8); transform: translateY(-50%) scale(1.05); }
.slider-btn.prev { left: calc((100% - min(775px, 80vw)) / 2 - 70px); }
.slider-btn.next { right: calc((100% - min(775px, 80vw)) / 2 - 70px); }
.slider-btn svg { width: 40px; height: 40px; }
.slider-btn svg path { fill: var(--text); stroke: var(--text); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.slider-dots {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 14px;
}
.dot {
  width: 13.57px; height: 13.57px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: var(--text); }

/* ─── HOME SECTIONS ─────────────────────────────────────── */
.home-sections {
  max-width: var(--container);
  margin: 0px auto 0;
  padding: 4px;
}
.home-section {
  display: block;
  padding: 30px 110px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border-radius: 10px;
  margin-bottom: 20px;
  padding-bottom: 30px;
}
.home-section:last-child { border-bottom: none; }

.section-title {
  font-family: 'Jost', Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: -5px;
}
.section-sub {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 20px;
  font-family: 'Jost', Arial, sans-serif;
}
.section-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}

/* Prints section */

.print-option-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.print-option-info p { font-size: 13px; line-height: 1.6; color: var(--muted); }

/* Framed prints */
.framed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-right: -20px;
  margin-left: -20px;
  margin-top: 20px;
  margin-bottom: 20px;
  align-items: start;
}
.framed-photo { width: 100%; object-fit: cover; }
.framed-photo img {
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border-radius: 2px;
  display: block;
  width: 100%;
}
.framed-text {
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}
.framed-option-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.framed-option-info p { font-size: 13px; line-height: 1.6; color: var(--muted); }
.framed-item { transition: transform 0.2s ease; }
.framed-item:hover { transform: scale(1.03); }

/* ─── FRAMED LIGHTBOX ──────────────────────────────────── */
#framed-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#framed-lightbox.open { display: flex; }

/* Outer row: [arrow] [image] [arrow] */
.flb-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 96vw;
}

/* Arrow zones — sit outside the image, full image height */
.flb-arrow-zone {
  flex-shrink: 0;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  opacity: 0;
  transition: opacity 0.2s;
  align-self: stretch;
}
.flb-inner:hover .flb-arrow-zone {
  opacity: 1;
}
.flb-arrow-zone svg {
  width: 42px;
  height: 42px;
  fill: #fff;
  background: var(--text);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.068);
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  transition: background 0.2s, transform 0.15s;
  padding: 8px;
}
.flb-arrow-zone:hover svg {
  background: rgba(20,20,20,0.9);
  transform: scale(1.08);
}

/* Image wrapper — fixed outer frame so arrows stay put */
.flb-img-wrap {
  position: relative;
  line-height: 0;
  flex-shrink: 0;
  width: 65vw;
  height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner wrapper sizes to the image's natural aspect ratio */
.flb-img-inner {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: var(--flb-aspect, 3/2);
  line-height: 0;
}

.flb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 5px;
  border: .1px solid #383838c0;
}

/* Close / Buy stay on the image — shown on image hover */
.flb-btn {
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  cursor: pointer;
  border: none;
  background: rgba(20,20,20,0.5);
  color: #fff;
  font-family: inherit;
}
.flb-img-inner:hover .flb-btn {
  background: rgba(20,20,20,0.8);
  opacity: 1;
  pointer-events: auto;
}

.flb-close {
  position: absolute;
  top: 15px; right: 15px;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-family: 'Jost', Arial, sans-serif;
  font-size: 18px; line-height: 1;
  font-weight: 700;
  background: rgba(20,20,20,0.295);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background 0.2s, transform 0.15s, opacity 0.2s;
}
.flb-img-inner:hover .flb-close:hover {
  background: rgba(20,20,20,0.95);
  transform: scale(1.05);
}

.flb-buy {
  position: absolute;
  bottom: 15px; right: 15px;
  padding: 6px 17px;
  border-radius: 40px;
  background: rgba(20,20,20,0.295);
  display: flex; align-items: center;
  z-index: 2;
  transition: background 0.2s, transform 0.15s;
}
.flb-buy svg {
  height: 25px;
  fill: #fff;
}
.flb-img-inner:hover .flb-buy:hover {
  background: rgba(20,20,20,0.95);
  transform: scale(1.05);
}


/* Acrylic section */

.acrylic-showcase {
  max-width: 104%;
  max-height: 100%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  margin-left: -20px;
  margin-right: -20px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease; 
}

.acrylic-showcase-wrap:hover .acrylic-showcase {
  transform: scale(1.007);
}

.acrylic-showcase-wrap {
  position: relative;
  display: inline-block;
}
.acrylic-buy-overlay {
  position: absolute;
  bottom: 10px; right: 10px;
  background: var(--surface);
  border: none;
  padding: 5px 18px;
  border-radius: 40px;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  transform: scale(1);
}

.acrylic-showcase-wrap:hover .acrylic-buy-overlay {
  opacity: 0.8;
  pointer-events: auto;
}

.acrylic-buy-overlay:hover {
  opacity: 1 !important;
  transform: scale(1.03);
}

.acrylic-buy-overlay svg {
  display: block;
  height: 25px;
  fill: var(--text);
}
.acrylic-option-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.acrylic-option-info p { font-size: 13px; line-height: 1.6; margin-right: 20px; color: var(--muted); }

/* FAQ section */

.faq-option-info {
  margin-bottom: 7px;
}
.faq-option-info h1 { font-size: 16px; font-weight: 600; margin-bottom: 4px; margin-top: 10px; }
.faq-option-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.faq-option-info p { font-size: 13px; line-height: 1.6; color: var(--muted); margin-bottom: 10px; }

/* Artist section */
.artist-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  margin-top: 20px;
  align-items: start;
}
.artist-photo {
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  object-fit: cover;
  border-radius: 8px;
}
.artist-bio p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }

/* Contact section */
.contact-form { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; max-width: 500px; }
.contact-form label { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 4px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  color: var(--text);
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--text); }
.contact-form textarea { height: 100px; resize: none; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: none;
  padding: 10px 18px;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary svg {
  fill: rgb(44, 44, 44);
  height: 20px;
  display: block;
  transition: fill 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-primary:hover svg {
  fill: var(--text);
}

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer {
  padding: 28px var(--buffer);
  margin-top: 60px;
  text-align: center;
}
.social-links { display: flex; gap: 10px; justify-content: center; margin-bottom: 12px; }
.social-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  transition: opacity 0.2s;
}
.social-icon:hover { opacity: 0.7; }
.footer-copy { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }