:root {
  --bg: #0b0b0b;
  --fg: #ffffff;
  --muted: #bdbdbd;
  --accent: #E74B5B;
  --accent2: #35E0D0;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Base Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Login button */
.btn-login {
  display:inline-block;
  padding:8px 16px;
  border-radius:6px;
  background:#E74B5B;     /* same red as login form */
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:background .2s ease;
}
.btn-login:hover {
  background:#c0392b;     /* darker red on hover */
}

/* Ensure it shows on mobile nav */
.site-nav ul {
  display:flex;
  flex-wrap:wrap;         /* wrap items on small screens */
  gap:12px;
  list-style:none;
  padding:0;
  margin:0;
}
.site-nav a {
  color:#fff;             /* or your site’s nav color */
  text-decoration:none;
}


/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn--primary {
  background-color: var(--accent);
  color: var(--fg);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #d14350;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(231, 75, 91, 0.3);
}

.btn--secondary {
  background-color: transparent;
  color: var(--fg);
  border: 2px solid var(--fg);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--hero {
  padding: 0;
  position: relative;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  background-color: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--fg);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--fg);
}

/* Hero Section */
.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero__title {
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  font-weight: 600;
}



.hero__image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.service__category h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service__list {
  list-style: none;
}

.service__list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service__list li:last-child {
  border-bottom: none;
}

.deposit-notice {
  text-align: center;
  background-color: rgba(231, 75, 91, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--accent);
}

.deposit-notice span {
  color: var(--accent);
  font-weight: 600;
}

/* ================================
   Transformations – Showcase slider
   ================================ */

.showcase-slider {
  position: relative;
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
}

/* The viewport is what we size; slides will be absolutely stacked inside */
.showcase__viewport {
  position: relative;
  width: 100%;
  /* default height until JS sets exact height of active slide */
  min-height: 320px;
}

.showcase__slide {
  /* one slide per view: stack them on top of each other */
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}

.showcase__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* desktop: two columns (image left, text right) */
@media (min-width: 900px) {
  .showcase__slide {
    grid-template-columns: 1.2fr 1fr;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
  }
}

/* media: keep natural ratio (no crop, no stretch) */
.showcase__media {
  display: grid;
  place-items: center;
}
.showcase__media img {
  max-width: 100%;
  height: auto;            /* keep natural proportions */
  max-height: 520px;       /* guardrail for very tall images */
  border-radius: 12px;
  display: block;
  background: #111;
}

.showcase__copy h3 {
  margin: 0 0 .5rem 0;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  color: #fff;
}
.showcase__copy p {
  margin: 0;
  color: #cfcfcf;
  line-height: 1.6;
}

/* nav arrows */
.showcase__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  z-index: 3;
}
.showcase__nav:hover { background: rgba(0,0,0,.55); border-color: rgba(255,255,255,.5); }
.showcase__nav:focus-visible { outline: 2px solid #E74B5B; outline-offset: 2px; }
.showcase__nav.prev { left: .75rem; }
.showcase__nav.next { right: .75rem; }

/* dots */
.showcase__dots {
  position: relative;
  z-index: 3;
  display: flex;
  gap: .5rem;
  justify-content: center;
  padding: .75rem 1rem 1.25rem;
}
.showcase__dots button {
  width: 8px; height: 8px; border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.25);
  transition: transform .2s ease, background .2s ease;
  cursor: pointer;
}
.showcase__dots button:hover { background: rgba(255,255,255,.45); }
.showcase__dots button:focus-visible { outline: 2px solid #E74B5B; outline-offset: 2px; }
.showcase__dots button.is-active {
  background: #E74B5B;
  transform: scale(1.2);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .showcase__slide { transition: none; transform: none; }
  .showcase__nav, .showcase__dots button { transition: none; }
}



/* Gallery */
.gallery__filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: transparent;
  color: var(--fg);
  border: 1px solid var(--fg);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus-visible {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff; /* stand out on accent */
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery__item {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery__item.is-hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute; /* take it out of flow while hidden */
}

.gallery__item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__cta {
  text-align: center;
}

/* ===== About the Artist (Banner + Card) ===== */
.section--about {
  position: relative;
  padding: 0; /* banner handles top spacing */
  color: var(--fg);
  overflow: hidden;
}

/* Full-width background image with gradient overlay */
.about__banner {
  height: 420px;
  background-image: url('/assets/img/artist_faraji.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}
.about__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.85));
}

/* Card that overlaps the banner */
.about__card {
  max-width: 920px;
  margin: -140px auto 4rem; /* pulls the card up over the banner */
  padding: 2rem 2rem 2.25rem;
  background: rgba(12, 12, 12, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* Title & headings */
.about__title { margin-bottom: 0.75rem; text-align: left; }
.about__name { font-size: 1.6rem; font-weight: 800; margin-bottom: .5rem; }
.about__aka { color: var(--accent); font-weight: 700; }

/* Body copy */
.about__lead { color: var(--muted); margin-bottom: 1rem; }
.about__list { list-style: none; padding: 0; margin: 0 0 1rem; }
.about__list li {
  position: relative;
  padding-left: 1.05rem;
  margin: .35rem 0;
}
.about__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.about__process { color: var(--muted); margin-bottom: .75rem; }
.about__process span { color: #fff; font-weight: 700; }
.about__tagline { font-style: italic; color: #fff; margin-bottom: 1rem; }

/* CTA */
.about__cta { display: flex; gap: .8rem; flex-wrap: wrap; }

/* Responsive tweaks */
@media (max-width: 960px) {
  .about__banner { height: 320px; }
  .about__card { margin: -100px 1rem 3rem; padding: 1.5rem; }
  .about__name { font-size: 1.35rem; }
}
@media (max-width: 640px) {
  .about__banner { height: 260px; }
  .about__card { margin: -80px 1rem 2.5rem; }
}



/* Responsive */
@media (max-width: 980px) {
  .about__wrap {
    grid-template-columns: 1fr;
  }
  .about__media {
    order: 1;
  }
  .about__content {
    order: 2;
  }
}


/* Booking Form */
.booking__form {
  max-width: 640px;            /* slightly wider for comfort */
  margin: 0 auto 2rem;
}

.form__group {
  margin-bottom: 1.25rem;      /* a bit tighter rhythm */
}

.form__group label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;            /* clearer hierarchy */
  letter-spacing: 0.01em;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;          /* a touch softer */
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--muted);
  opacity: 0.9;
}

/* Focus state: clear & accessible */
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(231, 75, 91, 0.22);
  background-color: rgba(255, 255, 255, 0.08);
}

/* Disabled/read-only look */
.form__group input:disabled,
.form__group select:disabled,
.form__group textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Date & Time side-by-side on wider screens */
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) {
  .form__row { grid-template-columns: 1fr; }
}

/* Fine-tune select (prevents jump on open in some browsers) */
.form__group select {
  background-clip: padding-box;
}

/* File Upload Styling */
.form__group input[type="file"] {
  padding: 0.7rem;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
}

/* Deposit Policy Note */
.policy-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(231, 75, 91, 0.35);
  background: rgba(231, 75, 91, 0.08);
  border-radius: 10px;         /* slightly rounder */
  color: var(--fg);
  font-size: 0.95rem;
  line-height: 1.55;
}

.policy-note__icon {
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 0.15rem;
}

.policy-note__text strong {
  color: var(--accent);
  font-weight: 700;
}

.policy-note__text em {
  font-style: normal;
  opacity: 0.9;
  margin-left: 0.35rem;
  display: inline-block;
}

/* WhatsApp CTA */
.whatsapp-cta { text-align: center; }


/* Studio */
.studio__images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Force all images into the same aspect ratio box */
.studio__image {
  aspect-ratio: 4 / 3; /* Change to 16/9 if you prefer wider look */
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.studio__image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crop to fit evenly */
  display: block;
  transition: transform 0.3s ease;
}

/* Optional hover zoom for polish */
.studio__image:hover img {
  transform: scale(1.05);
}

.studio__info h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.studio__info ul {
  list-style: none;
  margin-bottom: 1rem;
}

.studio__info ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.studio__info ul li:before {
  content: "✓";
  color: var(--accent2);
  position: absolute;
  left: 0;
}

.studio__expect {
  font-style: italic;
  color: var(--muted);
}


/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.testimonial__text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--fg);
}

.testimonial__author {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.testimonial__stars {
  color: #FFD700;
}

/* FAQs */
.faqs__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq summary {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.faq[open] summary:after {
  content: "-";
}

.faq p {
  padding: 0 1.5rem 1.5rem;
}

/* Contact */
.contact__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__address,
.contact__phone,
.contact__hours,
.contact__social {
  font-size: 1.125rem;
}

.contact__phone a,
.contact__social a {
  color: var(--fg);
  text-decoration: none;
}

.contact__phone a:hover,
.contact__social a:hover {
  color: var(--accent);
}

.map-placeholder {
  background-color: rgba(255, 255, 255, 0.05);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--muted);
}

.contact__cta {
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background-color: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  opacity: 0.9;
  transform: translateY(-3px);
}


/* Footer */
.footer {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 1rem;
}

.footer__nav,
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav a,
.footer__links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__nav a:hover,
.footer__links a:hover {
  color: var(--fg);
}

.footer__copyright {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.875rem;
}

/* AOS Animations */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 960px) {
  .nav__links {
    display: none;
  }
  
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .contact__cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3rem 0;
  }
  
  .hero__content {
    top: 60%;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .transformations__grid {
    grid-template-columns: 1fr;
  }
  
  .studio__images {
    grid-template-columns: 1fr;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Farliee Tattoo — Transformations Slider (robust + namespaced)
   Paste this whole block at the VERY END of style.css
   ========================================================= */

/* ---- Conflict neutralizer: stop old rules from stretching/cropping ---- */
.showcase__media img,
.showcase .showcase__media img,
.showcase-slider .showcase__media img,
.ft-media img {
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important; /* never crop; keep natural ratio */
  display: block;
}

/* =======================================================================
   FT Slider styles (works with either .ft-* OR .showcase-* class names)
   ======================================================================= */

/* Wrappers (support both class sets) */
.ft-slider,
.showcase-slider {
  position: relative;
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Viewport (the stage that holds stacked slides) */
.ft-viewport,
.showcase__viewport {
  position: relative;
  width: 100%;
  min-height: 320px; /* stable height before JS measures */
}

/* One slide visible at a time — stack absolutely inside the viewport */
.ft-slide,
.showcase__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr; /* mobile: stacked */
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;

  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}

.ft-slide.is-active,
.showcase__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Desktop two columns: image left, text right */
@media (min-width: 900px) {
  .ft-slide,
  .showcase__slide {
    grid-template-columns: minmax(0,1.25fr) minmax(0,1fr);
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
  }
}

/* Media block — keep natural image proportions */
.ft-media,
.showcase__media {
  display: grid;
  place-items: start;
}

.ft-media img,
.showcase__media img {
  max-width: 100%;
  height: auto;
  max-height: 560px;          /* adjust if you want taller/shorter */
  border-radius: 12px;
  background: #111;
}

/* Copy */
.ft-copy h3,
.showcase__copy h3 {
  margin: 0 0 .5rem 0;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  color: #fff;
}
.ft-copy p,
.showcase__copy p {
  margin: 0;
  color: #cfcfcf;
  line-height: 1.6;
}

/* Arrows (support both class sets) */
.ft-nav,
.showcase__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  z-index: 3;
}
.ft-nav:hover,
.showcase__nav:hover { background: rgba(0,0,0,.55); border-color: rgba(255,255,255,.5); }
.ft-nav:focus-visible,
.showcase__nav:focus-visible { outline: 2px solid #E74B5B; outline-offset: 2px; }
.ft-nav.prev, .showcase__nav.prev { left: .75rem; }
.ft-nav.next, .showcase__nav.next { right: .75rem; }

/* Dots (support both class sets) */
.ft-dots,
.showcase__dots {
  position: relative;
  z-index: 3;
  display: flex;
  gap: .5rem;
  justify-content: center;
  padding: .75rem 1rem 1.25rem;
}
.ft-dots button,
.showcase__dots button {
  width: 8px; height: 8px; border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.25);
  transition: transform .2s ease, background .2s ease;
  cursor: pointer;
}
.ft-dots button:hover,
.showcase__dots button:hover { background: rgba(255,255,255,.45); }
.ft-dots button:focus-visible,
.showcase__dots button:focus-visible { outline: 2px solid #E74B5B; outline-offset: 2px; }
.ft-dots button.is-active,
.showcase__dots button.is-active {
  background: #E74B5B; /* accent red */
  transform: scale(1.2);
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
  .ft-slide, .showcase__slide { transition: none; transform: none; }
  .ft-nav, .showcase__nav, .ft-dots button, .showcase__dots button { transition: none; }
}