/* ============================================
   Bernardita Aguirre — Fine Art Photography
   Sesiones Fine Art en Scarsdale
   ============================================ */

:root {
  --cream: #ffffff;
  --cream-alt: #e5dace;
  --card: #fbf9f4;
  --ink: #2a2620;
  --ink-soft: #55503f;
  --ink-faint: #8a8272;
  --line: #ddd4c0;
  --brown: #7a5a3f;
  --brown-dark: #5f4530;
  --btn-primary: #b2b2a2;
  --btn-primary-dark: #97978a;
  --overlay-dark: rgba(20, 16, 10, 0.55);

  --font-serif: "Playfair Display", "Georgia", serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 72px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.kicker {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
}

.section-head {
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--btn-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--btn-primary-dark);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

section {
  padding: 96px 0;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  height: 34px;
  width: auto;
}

.brand-text {
  line-height: 1.1;
}

.brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.brand-sub {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.nav {
  display: none;
  align-items: center;
  gap: 26px;
}

.nav a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.15s ease;
}

.nav a:hover {
  color: var(--ink);
}

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

.site-header .btn {
  padding: 12px 22px;
  font-size: 0.72rem;
}

.nav-reserve {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 8px 24px 20px;
}

.nav.is-open a {
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

/* ---------- Hero ----------
   Mobile-first: por defecto es una sección simple (texto arriba,
   foto completa abajo, sin overlay). El tratamiento "foto de fondo
   a pantalla completa" se activa solo en escritorio (ver breakpoint
   min-width: 860px). */

.hero {
  background: var(--cream);
  color: var(--ink);
}

.hero-inner {
  padding-top: 136px;
  padding-bottom: 40px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}

.hero-kicker-dash {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--btn-primary);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.1rem, 8vw, 3.8rem);
  color: var(--ink);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 4vw, 1.4rem);
  color: var(--ink-soft);
  margin: 10px 0 0;
}

.hero-note {
  border-left: 2px solid var(--btn-primary);
  padding: 4px 0 4px 20px;
  margin: 24px 0;
  max-width: 480px;
}

.hero-note p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin: 0;
}

.hero-note p br {
  content: "";
  display: block;
  margin-top: 0.5em;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-badge {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--cream-alt);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-cta {
  margin-bottom: 32px;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- About ---------- */

.about {
  background: var(--cream);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.about-photo img {
  width: 100%;
  border-radius: 2px;
}

.about-body blockquote {
  margin: 28px 0;
  padding-left: 22px;
  border-left: 3px solid var(--brown);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
}

.about-body .role {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Style / feature grid ---------- */

.style-section {
  background: var(--cream-alt);
}

.style-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 700px;
  margin: 0 0 20px;
}

.style-lead-emphasis {
  font-style: italic;
  color: var(--brown-dark);
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

.feature {
  padding: 34px 8px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.feature-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--brown);
  display: block;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature p {
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Gallery ---------- */

.gallery {
  background: var(--cream);
  padding: 0;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 7 / 5;
  min-height: 340px;
  overflow: hidden;
  background: var(--cream-alt);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(20, 16, 10, 0.35);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.carousel-arrow:hover {
  background: rgba(20, 16, 10, 0.6);
}

.carousel-arrow-prev {
  left: 16px;
}

.carousel-arrow-next {
  right: 16px;
}

@media (max-width: 520px) {
  .carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
}

/* ---------- Experience timeline ---------- */

.experience {
  background: var(--cream-alt);
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

.step {
  padding: 28px 4px;
  border-bottom: 1px solid var(--line);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--brown);
  display: block;
  margin-bottom: 6px;
}

.step-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.step p {
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Testimonials ---------- */

.testimonials {
  background: var(--cream-alt);
}

.testimonials-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 48px 28px;
}

.testimonials-kicker {
  display: block;
  text-align: center;
}

.testimonials-title {
  text-align: center;
  font-style: italic;
  margin: 6px 0 44px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-alt);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 320px;
}

.testimonial-name {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
  margin: 0;
}

/* ---------- Pricing / offer ---------- */

.pricing {
  background: var(--cream);
}

.offer {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
}

.offer-body {
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.offer-body h2 {
  margin-top: 4px;
}

.offer-date {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: -10px 0 0;
}

.offer-includes-label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.offer-list li {
  display: flex;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.offer-list li::before {
  content: "\2713";
  color: var(--brown);
  font-weight: 600;
  flex-shrink: 0;
}

.offer-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.offer-plan-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.offer-tagline {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-faint);
}

.offer-price {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: var(--ink);
  white-space: nowrap;
}

.offer-body .btn {
  align-self: flex-start;
}

.offer-photo {
  min-height: 320px;
  background: var(--cream-alt);
}

.offer-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- Availability banner ---------- */

.availability {
  position: relative;
  color: #fff;
  text-align: center;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0;
  background: linear-gradient(180deg, rgba(20, 16, 10, 0.5), rgba(20, 16, 10, 0.65)),
    url("../images/cta-bg.jpg") center 62% / cover no-repeat;
}

.availability .kicker {
  color: rgba(255, 255, 255, 0.85);
}

.availability h2 {
  color: #fff;
  margin-bottom: 18px;
}

.availability p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 480px;
  margin: 0 auto;
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--cream);
}

.faq-list {
  border-top: 1px solid var(--line);
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
  text-align: left;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-question .icon {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  color: var(--brown);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 4px 22px;
  font-size: 0.95rem;
}

/* ---------- Final CTA ---------- */

.final-cta {
  background: var(--cream-alt);
  text-align: center;
  padding: 96px 0 0;
}

.final-cta h2 {
  margin-bottom: 14px;
}

.final-cta p {
  margin-bottom: 32px;
}

.final-cta .container {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

/* ---------- Galería completa ---------- */

.full-gallery {
  background: var(--cream-alt);
}

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

.full-gallery-item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.full-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.full-gallery-item:hover img {
  transform: scale(1.04);
}

@media (min-width: 600px) {
  .full-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 860px) {
  .full-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

footer {
  background: var(--cream-alt);
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- Responsive ---------- */

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature {
    border-right: 1px solid var(--line);
  }

  .feature:nth-child(2n) {
    border-right: none;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
  }

  .step {
    border-right: 1px solid var(--line);
    padding-right: 24px;
  }

  .step:nth-child(2n) {
    border-right: none;
    padding-right: 0;
    padding-left: 24px;
  }

  .footer-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 860px) {
  .hero {
    position: relative;
    color: #fff;
    overflow: hidden;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-media img {
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 10, 0.28) 0%, rgba(20, 16, 10, 0.1) 32%, rgba(20, 16, 10, 0.55) 100%);
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 620px;
    padding-top: 168px;
    padding-bottom: 76px;
  }

  .hero-kicker {
    color: rgba(255, 255, 255, 0.9);
  }

  .hero h1 {
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  }

  .hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
  }

  .hero-note {
    background: rgba(20, 16, 10, 0.45);
    backdrop-filter: blur(3px);
  }

  .hero-note p {
    color: rgba(255, 255, 255, 0.92);
  }

  .hero-badge {
    color: #fff;
    background: rgba(20, 16, 10, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .hero-cta {
    box-shadow: 0 18px 36px -18px rgba(0, 0, 0, 0.5);
  }

  .testimonials-card {
    padding: 64px 56px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .testimonial {
    padding: 0 32px;
    border-right: 1px solid var(--line);
  }

  .testimonial:last-child {
    border-right: none;
  }

  .about .container {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
  }

  .offer {
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }

  .offer-body {
    padding: 56px;
  }
}

@media (max-width: 719px) {
  section {
    padding: 64px 0;
  }

  .hero-inner {
    padding-top: 118px;
    padding-bottom: 48px;
  }
}

@media (min-width: 980px) {
  .nav {
    display: flex;
  }

  .nav-reserve {
    display: inline-block;
  }

  .nav-toggle {
    display: none;
  }
}

/* ---------- Página de reservas ---------- */

.booking-intro {
  background: var(--cream-alt);
  padding-top: 150px;
}

.booking-intro h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 6px;
}

.booking-intro-text {
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.booking-slots {
  background: var(--cream);
}

.slots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.slot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px 20px;
  text-align: center;
}

.slot-card.is-reserved {
  opacity: 0.6;
}

.slot-time {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
}

.slot-badge {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.slot-badge.available {
  background: var(--cream-alt);
  color: var(--ink);
  border: 1px solid var(--line);
}

.slot-badge.reserved {
  background: var(--ink);
  color: #fff;
}

.slot-card .btn {
  width: 100%;
}

.slot-taken-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.booking-form-section {
  background: var(--cream-alt);
}

.booking-form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.booking-form,
.payment-info {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 36px 28px;
}

.booking-form h2 {
  margin: 6px 0 26px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 2px;
}

.form-field textarea {
  min-height: 90px;
  resize: vertical;
}

.booking-submit {
  width: 100%;
  margin-top: 4px;
}

.booking-form-note {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin: 14px 0 0;
}

.payment-info h3 {
  font-size: 1.05rem;
  margin: 22px 0 8px;
}

.payment-info h3:first-of-type {
  margin-top: 18px;
}

.payment-info p {
  font-size: 0.92rem;
}

.payment-stripe-btn {
  margin-top: 4px;
}

@media (min-width: 600px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-form-wrap {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

/* ---------- WhatsApp flotante ---------- */

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  box-shadow: 0 12px 28px -12px rgba(20, 16, 10, 0.35);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.whatsapp-fab:hover {
  box-shadow: 0 16px 34px -12px rgba(20, 16, 10, 0.45);
  transform: translateY(-1px);
}

.whatsapp-fab-avatar {
  position: relative;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
}

.whatsapp-fab-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.whatsapp-fab-avatar::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid #fff;
}

.whatsapp-fab-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .whatsapp-fab-text {
    display: none;
  }

  .whatsapp-fab {
    padding: 4px;
  }
}
