/* ================================
   CSS VARIABLES
================================ */
:root {
  --cream:       #F4EFE4;
  --cream-dark:  #E8E0D0;
  --blue:        #1A4FA3;
  --blue-light:  #2E65C3;
  --blue-pale:   #D6E4F7;
  --text-dark:   #1A1A1A;
  --text-mid:    #555550;
  --text-light:  #8A8880;
  --white:       #FFFFFF;
  --border:      rgba(26, 79, 163, 0.12);
}

/* ================================
   RESET & BASE
================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

/* ================================
   HEADER
================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.5px;
}

.nav {
  flex: 1;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--blue);
}

.lang-toggle {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.lang-toggle:hover {
  background: var(--blue);
  color: var(--white);
}

/* ================================
   HERO
================================ */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px 80px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-scroll span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: var(--text-light);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================
   LISTINGS
================================ */
.listings {
  background: var(--white);
  padding: 80px 0;
}

.listings-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
}

/* ================================
   APARTMENT CARD
================================ */
.apt-card {
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 79, 163, 0.1);
}

.apt-card-link {
  display: block;
}

.apt-img-wrap {
  position: relative;
  overflow: hidden;
}

.apt-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.apt-card:hover .apt-img {
  transform: scale(1.04);
}

.apt-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
}

.apt-info {
  padding: 28px;
}

.apt-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.apt-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.apt-amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
}

.amenity-icon {
  font-size: 12px;
}

.apt-footer {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.apt-specs {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.apt-badge--algarve {
  background: #C67C3A;
}

.apt-book {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  transition: letter-spacing 0.2s;
}

.apt-card:hover .apt-book {
  letter-spacing: 2px;
}

/* ================================
   FOOTER
================================ */
.footer {
  background: var(--text-dark);
  padding: 60px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream-dark);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-light);
}

.footer-copy a {
  color: var(--blue-light);
  transition: opacity 0.2s;
}

.footer-copy a:hover {
  opacity: 0.7;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 20px;
    gap: 16px;
  }

  .logo-text {
    display: none;
  }

  .nav ul {
    gap: 16px;
  }

  .hero {
    padding: 60px 20px 50px;
  }

  .listings-inner {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer {
    padding: 40px 20px;
  }
}

/* ================================
   DETAIL PAGE — BREADCRUMB
================================ */
.detail-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px 0;
}

.breadcrumb {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb a {
  color: var(--text-mid);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb span.sep {
  color: var(--border);
}

.detail-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.detail-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
}

.detail-location {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================================
   DETAIL PAGE — PHOTO MOSAIC
================================ */
.mosaic {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 480px;
}

.mosaic-item {
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
}

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

.mosaic-item:hover img {
  transform: scale(1.05);
}

.mosaic-item--main {
  grid-row: span 2;
}

.mosaic-more {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--border);
}

/* ================================
   DETAIL PAGE — BODY LAYOUT
================================ */
.detail-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.detail-section {
  margin-bottom: 44px;
}

.detail-section:last-child {
  margin-bottom: 0;
}

.detail-section h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.detail-section p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.detail-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--blue);
}

.meta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ================================
   DETAIL PAGE — AMENITIES GRID
================================ */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.amenity-grid li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.amenity-grid .amenity-icon {
  font-size: 18px;
}

/* ================================
   DETAIL PAGE — BOOKING CARD
================================ */
.booking-card {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(26, 79, 163, 0.06);
}

.booking-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.booking-card .booking-note {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--blue);
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  margin-bottom: 12px;
}

.btn--primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
}

.btn--ghost {
  background: transparent;
  color: var(--blue);
}

.btn--ghost:hover {
  background: var(--blue-pale);
}

.booking-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

.booking-divider::before,
.booking-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ================================
   DETAIL PAGE — MAP
================================ */
.map-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 4px;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(1.05);
}

/* ================================
   DETAIL PAGE — CONTACT MODAL
================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--cream);
  max-width: 460px;
  width: 100%;
  padding: 40px;
  position: relative;
  animation: fadeUp 0.4s ease forwards;
}

.modal h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.modal p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
}

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

/* ================================
   DETAIL PAGE — RESPONSIVE
================================ */
@media (max-width: 900px) {
  .detail-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-card {
    position: static;
  }

  .mosaic {
    height: 320px;
    grid-template-columns: 2fr 1fr;
  }

  .mosaic-item--main {
    grid-row: span 2;
  }

  .mosaic-item:nth-child(4),
  .mosaic-item:nth-child(5) {
    display: none;
  }
}

@media (max-width: 768px) {
  .detail-top,
  .detail-head,
  .mosaic,
  .detail-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .modal {
    padding: 28px;
  }
}

/* ================================
   ABOUT PAGE
================================ */
.page-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px 48px;
}

.page-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-dark);
  max-width: 720px;
}

.about-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 22px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text strong {
  font-weight: 700;
  color: var(--text-dark);
}

.about-figure {
  position: sticky;
  top: 96px;
}

.about-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border);
}

.about-figcaption {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}

.about-stats {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.about-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ================================
   CONTACT PAGE
================================ */
.contact-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-intro p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.contact-detail:last-of-type {
  border-bottom: 1px solid var(--border);
}

.contact-detail-icon {
  font-size: 20px;
  line-height: 1.4;
}

.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-detail-value a:hover {
  color: var(--blue);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
}

.contact-form h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ================================
   ABOUT / CONTACT RESPONSIVE
================================ */
@media (max-width: 900px) {
  .about-body,
  .contact-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-figure {
    position: static;
    order: -1;
  }

  .about-figure img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  .page-hero,
  .about-body,
  .about-stats-inner,
  .contact-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-form {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ================================
   DETAIL PAGE — MAP NOTE
================================ */
.map-note {
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-light);
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.map-note::before {
  content: "🔒";
  font-style: normal;
  font-size: 0.8rem;
}

/* ================================
   NETLIFY FORMS — HONEYPOT
================================ */
.hidden-field {
  display: none;
}

/* ================================
   THANK YOU PAGE
================================ */
.thankyou {
  max-width: 680px;
  margin: 0 auto;
  padding: 120px 40px;
  text-align: center;
}

.thankyou-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.thankyou h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.thankyou p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.thankyou .btn {
  display: inline-flex;
  width: auto;
  padding: 14px 32px;
}

@media (max-width: 768px) {
  .thankyou {
    padding: 80px 20px;
  }
}

/* ================================
   GALLERY LIGHTBOX
================================ */
.mosaic-item {
  cursor: pointer;
}

.gallery-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 40px;
}

.gallery-overlay.open {
  display: flex;
}

.gallery-stage {
  position: relative;
  max-width: 1100px;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-stage img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.gallery-counter {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.gallery-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.gallery-close:hover {
  opacity: 1;
}

.gallery-nav {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--cream);
  font-size: 1.8rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.gallery-prev {
  margin-right: 24px;
}

.gallery-next {
  margin-left: 24px;
}

@media (max-width: 768px) {
  .gallery-overlay {
    padding: 16px;
  }

  .gallery-nav {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }

  .gallery-prev {
    margin-right: 10px;
  }

  .gallery-next {
    margin-left: 10px;
  }

  .gallery-close {
    top: 12px;
    right: 16px;
  }
}
