@font-face {
  font-family: 'Intro Cond';
  src: url('../fonts/intro-cond.black-free.woff2') format('woff2'),
       url('../fonts/intro-cond.black-free.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --lavender: #c27ad5;          /* a bit stronger */
  --lavender-dark: #8b3fb3;     /* darker for headings/buttons */
  --pink: #f47ab5;
  --bg-light: #ffeefe;          /* slightly deeper pink */
  --text-dark: #241628;         /* darker text */
  --text-muted: #4f4658;        /* less faded subtitles */
  --radius-lg: 24px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.12);
  --gradient-main: linear-gradient(135deg, #f47ab5, #c27ad5);
}

    * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


    body {
      background: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.6;
    }

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

    /* NAVBAR */

    .navbar {
  position: sticky;
  top: 0;
  z-index: 20;

  background-color: rgba(255, 255, 255, 0.80); /* TRUE white with opacity */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}


/* Glass effect on scroll */
.navbar.scrolled {
  background: rgba(	255, 249, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}


    .nav-inner {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0.75rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .brand-logo {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      background: var(--gradient-main);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 1rem;
      box-shadow: var(--shadow-soft);
    }

    .brand-text-main {
      font-weight: 700;
      font-size: 1.1rem;
    }

    .brand-tagline {
      font-size: 0.8rem;
      color: var(--lavender-dark);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.95rem;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 2px;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      height: 2px;
      left: 0;
      bottom: 0;
      width: 0;
      background: var(--gradient-main);
      transition: width 0.2s ease-out;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 0.5rem 1.1rem;
      border-radius: 999px;
      background: var(--gradient-main);
      color: white;
      font-size: 0.9rem;
      font-weight: 600;
      box-shadow: var(--shadow-soft);
      border: none;
      cursor: pointer;
      white-space: nowrap;
    }



    /* HERO */

    .hero-left {
      position: relative;
    }

    .hero-title {
      font-size: clamp(2.5rem, 4.5vw, 3.2rem);
      font-weight: 800;
      letter-spacing: 0.01em;
      line-height: 1.35;
      margin-bottom: 2rem;
      background: var(--gradient-main);
      -webkit-background-clip: text;
      color: transparent;
    }

.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 1.8rem;
  text-align: center;
}

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-bottom: 2rem;
    }

    .btn-primary {
      padding: 0.75rem 1.4rem;
      border-radius: 999px;
      background: var(--gradient-main);
      color: white;
      border: none;
      font-size: 0.95rem;
      font-weight: 600;
      box-shadow: var(--shadow-soft);
      cursor: pointer;
    }

    .btn-secondary {
      padding: 0.75rem 1.4rem;
      border-radius: 999px;
      background: white;
      color: var(--lavender-dark);
      border: 1px solid rgba(200, 162, 200, 0.4);
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
    }

.hero-note {
  margin-top: 0.6rem;
  margin-bottom: 1.5rem;   /* creates breathing room before stats */
  font-size: 1rem;
  color: var(--text-muted);
}

.scroll-hint {
  display: none;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.75;
}

/* Mobile only */
@media (max-width: 768px) {
  .scroll-hint {
    display: block;
  }
}



/* ===== SUBTLE BUTTON HOVER (GLOBAL) ===== */
.btn-primary,
.btn-secondary,
.nav-cta {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

/* Subtle glow only for gradient buttons */
.btn-primary:hover,
.nav-cta:hover {
  filter: brightness(1.05);
}


    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .stat-card {
      min-width: 160px;
      padding: 0.8rem 1rem;
      border-radius: 18px;
      background: white;
      box-shadow: var(--shadow-soft);
    }

    .stat-number {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--lavender-dark);
    }

    .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .hero-right {
      position: relative;
    }

    .hero-card {
      background: white;
      border-radius: 28px;
      padding: 1.5rem;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .hero-card-tag {
      font-size: 0.8rem;
      color: var(--lavender-dark);
      margin-bottom: 0.5rem;
    }

    .hero-card-title {
      font-weight: 700;
      margin-bottom: 0.3rem;
    }

    .hero-card-text {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 0.9rem;
    }

    .hero-swatch-row {
      display: flex;
      gap: 0.6rem;
      margin-bottom: 1.2rem;
    }

    .swatch {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      border: 2px solid white;
      box-shadow: var(--shadow-soft);
    }

    .swatch-1 { background: #f7b3d0; }
    .swatch-2 { background: #c8a2ff; }
    .swatch-3 { background: #ffe6ff; }

    .hero-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .badge-soft {
      padding: 0.2rem 0.7rem;
      border-radius: 999px;
      background: rgba(200, 162, 200, 0.15);
      color: var(--lavender-dark);
      font-size: 0.75rem;
    }

    .hero-circle {
      position: absolute;
      width: 160px;
      height: 160px;
      border-radius: 999px;
      background: radial-gradient(circle, #ffe0f2, transparent 70%);
      top: -40px;
      right: -40px;
      opacity: 0.7;
      pointer-events: none;
    }

    /* SECTIONS */
    section {
      max-width: 1380px;
      margin: 0 auto;
      padding: 0 1.25rem 3rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .section-title {
  font-size: 2.35rem;
  letter-spacing: 0.02em;                 /* smaller & elegant */
  font-weight: 750;                   /* softer than hero */
  margin-bottom: 0.4rem;
  background: var(--gradient-main);   /* same gradient */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

    .section-subtitle {
      font-size: 1.25rem;
      color: var(--text-muted);
    }

    /* PRINTS GRID */

.prints-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
}

.print-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 0.9rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
}
.print-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.print-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.print-card:hover img {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}

.print-thumb {
  width: 100%;
  aspect-ratio: 3 / 4;   /* taller frame */
  border-radius: 18px;
  overflow: hidden;
}

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

.print-thumb {
  margin-bottom: 0.6rem;
}


    .print-name {
      font-weight: 600;
    }

/* Prints to Gallery CTA */
.prints-gallery-cta {
  text-align: center;
  margin: 3rem auto 4rem;
}

.prints-gallery-cta .btn-primary {
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
}

    /* WHY SECTION */

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
    }

    .why-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 1.2rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
    }

.why-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

    .why-icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: rgba(200, 162, 200, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.7rem;
      font-size: 1.1rem;
      opacity: 0.85;
    }

    .why-title {
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .why-text {
      color: var(--text-muted);
      font-size: 0.88rem;
    }

    /* CONTACT */
    .contact-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 12px 40px rgba(200, 162, 200, 0.25);
  max-width: 680px;
  margin: 0 auto 3rem;
}


    .contact-grid {
  display: block;
}

    .contact-form label {
      display: block;
      font-size: 0.85rem;
      margin-bottom: 0.25rem;
      color: var(--text-muted);
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 0.5rem 0.7rem;
      border-radius: 12px;
      border: 1px solid rgba(200, 162, 200, 0.6);
      font-size: 0.9rem;
      outline: none;
    }

    .contact-form textarea {
      min-height: 100px;
      resize: vertical;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--lavender-dark);
      box-shadow: 0 0 0 1px rgba(200, 162, 200, 0.5);
    }

    .contact-mini {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .wa-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 0.7rem;
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      background: rgba(40, 201, 88, 0.08);
      font-size: 0.85rem;
    }

    /* FOOTER */
    footer {
      background: #f3e5f5;
      border-top: 1px solid rgba(200, 162, 200, 0.4);
      padding: 1.4rem 1.25rem;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .footer-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    /* RESPONSIVE */
    @media (max-width: 880px) {
      .hero {
        grid-template-columns: 1fr;
      }
      .hero-right {
        order: -1;
      }
      .prints-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .why-grid {
        grid-template-columns: 1fr;
      }
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .nav-links {
        display: none; /* simple mobile nav hide */
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding-top: 1.6rem;
      }
      .hero-buttons {
        flex-direction: column;
        align-items: stretch;
      }
      .stat-card {
        flex: 1 1 100%;
      }
    }

/* ===== HERO CENTER FIX (ZOOMED IN) ===== */





.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 52vh;              /* reduced height */
  text-align: center;
  padding: 1.2rem 1.5rem 0.8rem;  /* tighter bottom spacing */
}


.hero-center {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-center {
  transform: scale(1.1);
  transform-origin: center top;
}

.hero-pill {
  margin: 0 auto 0.5rem;
}

.hero-buttons,
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ===== CLEAN HEADER STYLE ===== */

.clean-header {
  background: transparent;
  border-bottom: none;
}


.clean-inner {
  max-width: 1200px;
  padding: 0.8rem 2.5rem;
}

/* Logo text only */

.brand-text-only {
  position: relative;

  font-family: 'Intro Cond', 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;

  padding: 0.35rem 1.1rem;
  border-radius: 999px;

  /* Text gradient */
  background-image: linear-gradient(90deg, #f47ab5, #9b7bcf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-decoration: none;
  cursor: pointer;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ✨ Glass pill background */
.brand-text-only::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

  z-index: -1; /* stays behind text */
}

/* Hover */
.brand-text-only:hover {
  transform: translateY(-0.1px);
}

.brand-text-only:hover::before {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}


/* Navigation */
.clean-nav {
  gap: 2.5rem;
}

.clean-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #6b5a7a;
}

.clean-nav a::after {
  display: none; /* remove underline animation */
}

.clean-nav a:hover {
  color: #9b7bcf;
}

/* ADD THIS HERE */
.brand-text-only {
  cursor: pointer;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: 0.02em;
}

p {
  font-weight: 500;
}







/* =========================
   GALLERY PAGE
========================= */

.gallery-section {
  padding: 80px 6%;
  text-align: center;
}

.gallery-section h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 6px;
}

.gallery-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.gallery-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.gallery-item h3 {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .gallery-section {
    padding: 50px 5%;
  }

  .gallery-section h1 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .contact-wrapper {
    padding: 1.6rem;
    margin-bottom: 2rem;
  }
}

/* VISIT OUR STORE – MAP LAYOUT */

.store-section {
  padding: 3rem 1.5rem;
}

.store-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.store-map {
  width: 100%;
  height: 340px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.store-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.store-map .contact-mini {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .store-grid {
    grid-template-columns: 1fr;
  }

  .store-map {
    height: 260px;
    margin-top: 1.5rem;
  }
}



/* =========================
   PRODUCT CATEGORIES (HOME)
========================= */

.product-categories {
  padding: 1.8rem 1.25rem 4rem;
}


.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  text-align: center;
  text-decoration: none;
  color: inherit;
}

/* Image styling */
.category-card img {
  width: 100%;
  aspect-ratio: 2 / 3;   /* Portrait clothing ratio */
  object-fit: cover;     /* Keeps grid uniform */
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover img {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.category-card span {
  display: block;
  margin-top: 0.9rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text-dark);
}

/* Mobile */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   GALLERY FILTER BUTTONS
========================= */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 1.8rem 0 2.8rem;
}

.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 162, 200, 0.6);
  background: white;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: all 0.25s ease;
}

.filter-btn:hover {
  background: rgba(200, 162, 200, 0.15);
}

.filter-btn.active {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
}


/* =========================
   GALLERY FADE TRANSITION
========================= */

.gallery-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
}


/* =========================
   IMAGE MODAL
========================= */

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 1.5rem;
}

.image-modal.active {
  display: flex;
}

.modal-image {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.modal-nav {
  position: fixed;
  top: 50vh;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 3rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  user-select: none;
}

.modal-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.08);
}

.modal-prev { left: 16px; }
.modal-next { right: 16px; }


/* STORE CARD – same style as Contact card */
.store-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 12px 40px rgba(200, 162, 200, 0.25);
  max-width: 1100px;
  margin: 0 auto 3rem;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .store-card {
    padding: 1.6rem;
  }
}


/* =========================
   STORE INFO – SOFT ACCENT PANEL
========================= */

.store-info {
  background: rgba(200, 162, 200, 0.08); /* soft lavender tint */
  border-radius: 16px;
  padding: 1.8rem;
}

.store-info p {
  margin-bottom: 0.7rem;
}

.store-info {
  border: 1px solid rgba(200, 162, 200, 0.25);
}


/* =========================
   SOCIAL ICONS SECTION
========================= */

.social-section {
  padding: 1.8rem 1.25rem 3rem;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}

.social-icons a {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: white;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-icons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.social-icons img {
  width: 24px;
  height: 24px;
  transform: scale(1.28);
}

.social-icons {
  margin-top: 1.2rem;
}




.gallery-section {
  padding-top: 140px;
}








/* =========================
   FLOATING WHATSAPP BUTTON
========================= */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}


/* =========================
   MODAL WHATSAPP CTA BUTTON
========================= */

.modal-content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 90%;
}

.modal-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: #25d366;
  color: white;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.modal-whatsapp-btn img {
  filter: brightness(0) invert(1);
}

.modal-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}


/* =========================
   GALLERY ITEM LABEL
========================= */

.gallery-item {
  position: relative;
}

.gallery-item-label {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: 0.2px;
}


/* =========================
   INLINE FORM VALIDATION
========================= */

.field-error {
  display: block;
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 0.2rem;
  margin-bottom: 0.8rem;
  min-height: 1em;
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: #c0392b;
}
