/* ════════════════════════════════════════════════
   FLOWRA – Resin Art Website  |  style.css
   Theme: Ocean / Teal / Sandy Ivory
════════════════════════════════════════════════ */

:root {
  --teal: #4ABFCC;
  --teal-dark: #2A9BAE;
  --teal-light: #A8E6EF;
  --sand: #F4EFE4;
  --sand-dark: #E2D9C8;
  --shell: #CEC0A5;
  --ivory: #FDFAF5;
  --text-dark: #1E3A3A;
  --text-mid: #3D6060;
  --accent: #E8A87C;
  --white: #FFFFFF;
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
}

.script {
  font-family: 'Great Vibes', cursive;
}

.serif {
  font-family: 'Cormorant Garamond', serif;
}

.site-wrap {
  max-width: 75%;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .site-wrap {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .site-wrap {
    max-width: 96%;
  }
}

/* ══ NAVBAR ══ */
#mainNav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(74, 191, 204, 0.2);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(74, 191, 204, 0.12);
}

.navbar-brand {
  font-family: 'Great Vibes', cursive;
  font-size: 3.9rem;
  color: var(--teal-dark) !important;
  line-height: 1;
}

.nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text-dark) !important;
  margin: 0 4px;
  position: relative;
  transition: color .3s;
}

.nav-link::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  width: 0;
  transition: width .3s;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--teal-dark) !important;
}

.nav-link:hover::after {
  width: 70%;
}

.nav-btn {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white !important;
  border-radius: 50px;
  padding: 7px 22px !important;
  font-size: .92rem !important;
  transition: transform .2s, box-shadow .2s;
}

.nav-btn:hover,
.nav-link.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(74, 191, 204, .4);
  color: white !important;
}

.nav-btn::after {
  display: none !important;
}

/* ══ HERO ══ */
#hero {
  min-height: 90vh;
  background: linear-gradient(160deg, #c9f0f5 0%, #7dd8e6 40%, #4abfcc 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  animation: floatBubble linear infinite;
}

@keyframes floatBubble {
  0% {
    transform: translateY(0) scale(1);
    opacity: .7;
  }

  50% {
    opacity: .4;
  }

  100% {
    transform: translateY(-120vh) scale(1.3);
    opacity: 0;
  }
}

.wave-wrap {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave-wrap svg {
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50px;
  padding: 5px 18px;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--white);
  text-shadow: 0 4px 20px rgba(30, 60, 60, .2);
  line-height: 1.1;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, .9);
  font-style: italic;
  margin: 12px 0 28px;
}

.btn-hero {
  background: white;
  color: var(--teal-dark);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .08em;
  padding: 12px 34px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 24px rgba(30, 60, 60, .2);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(30, 60, 60, .28);
  color: var(--teal-dark);
}

.btn-hero-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .8);
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 32px;
  border-radius: 50px;
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, .18);
  color: white;
}

.hero-img-card {
  background: rgba(255, 255, 255, .28);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, .55);
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 16px 48px rgba(30, 60, 60, .18);
  position: relative;
}

.hero-img-card img {
  border-radius: 18px;
  width: 100%;
  object-fit: cover;
  height: 380px;
}

.hero-badge {
  position: absolute;
  bottom: -14px;
  left: 30px;
  background: white;
  border-radius: 16px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(30, 60, 60, .15);
  font-size: .84rem;
}

.hero-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5DD693;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

/* ══ STATS ══ */
#stats {
  background: var(--white);
  padding: 36px 0;
  border-bottom: 1px solid var(--sand-dark);
}

.stat-box {
  text-align: center;
  padding: 20px 10px;
  border-right: 1.5px solid var(--sand-dark);
}

.stat-box:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-mid);
  font-size: .95rem;
  letter-spacing: .08em;
}

/* ══ SECTION COMMONS ══ */
section {
  padding: 80px 0;
}

.sec-label {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 600;
}

.sec-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--text-dark);
  line-height: 1.1;
}

.sec-title span {
  color: var(--teal);
}

.sec-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #000;
  font-style: italic;
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 20px;
}

.divider span {
  display: block;
  height: 1.5px;
  border-radius: 2px;
}

.divider .short {
  width: 28px;
  background: var(--accent);
}

.divider .long {
  width: 60px;
  background: var(--teal-light);
}

/* ══ ABOUT ══ */
#about {
  background: var(--ivory);
}

.about-card {
  background: linear-gradient(135deg, #e8f8fb, #d0f2f7);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(74, 191, 204, .2);
  height: 100%;
}

.about-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
}

.about-img-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: .82rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--teal-dark);
  font-weight: 600;
  border: 1px solid rgba(74, 191, 204, .3);
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(74, 191, 204, .12);
  border: 1px solid rgba(74, 191, 204, .25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .83rem;
  color: var(--teal-dark);
  font-weight: 600;
  margin: 4px 4px 4px 0;
}

.feature-pill i {
  color: var(--teal);
}

/* ══ GALLERY ══ */
#gallery {
  background: linear-gradient(180deg, var(--sand) 0%, var(--ivory) 100%);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-tab {
  background: white;
  border: 1.5px solid var(--sand-dark);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: .85rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all .25s;
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

.art-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(30, 60, 60, .07);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
  position: relative;
}

.art-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(30, 60, 60, .14);
}

.art-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.art-card:hover .art-card-img {
  transform: scale(1.06);
}

.art-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 60, 60, .7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
}

.art-card:hover .art-card-overlay {
  opacity: 1;
}

.art-card-overlay-inner {
  padding: 18px;
  color: white;
}

.art-card-body {
  padding: 16px 18px;
}

.art-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.art-card-price {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: .9rem;
}

.art-card-tag {
  font-size: .72rem;
  background: rgba(74, 191, 204, .1);
  color: var(--teal-dark);
  border-radius: 50px;
  padding: 2px 10px;
}

/* Upload */
.upload-zone {
  border: 2.5px dashed var(--teal-light);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  background: rgba(74, 191, 204, .04);
  transition: all .25s;
  cursor: pointer;
}

.upload-zone:hover,
.upload-zone.drag {
  border-color: var(--teal);
  background: rgba(74, 191, 204, .1);
}

.upload-icon {
  font-size: 3rem;
  color: var(--teal-light);
  margin-bottom: 12px;
}

.upload-zone h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-mid);
  font-size: 1.2rem;
}

.upload-zone p {
  font-size: .85rem;
  color: var(--shell);
}

.btn-upload {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: .9rem;
  font-weight: 600;
  transition: all .25s;
  margin-top: 14px;
  cursor: pointer;
}

.btn-upload:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(74, 191, 204, .4);
}

#previewGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.preview-thumb {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--teal-light);
  box-shadow: 0 3px 10px rgba(30, 60, 60, .1);
}

.upload-msg {
  border-radius: 12px;
  padding: 12px 18px;
  margin-top: 14px;
  font-size: .88rem;
  font-weight: 600;
  display: none;
}

.upload-msg.success {
  background: rgba(93, 214, 147, .15);
  color: #1a7a4a;
  border: 1px solid rgba(93, 214, 147, .4);
}

.upload-msg.error {
  background: rgba(232, 80, 80, .1);
  color: #b33535;
  border: 1px solid rgba(232, 80, 80, .3);
}

/* ══ PROCESS ══ */
#process {
  background: var(--white);
}

.process-step {
  background: var(--ivory);
  border: 1px solid var(--sand-dark);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(74, 191, 204, .15);
  border-color: var(--teal-light);
}

.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 4px 12px rgba(74, 191, 204, .4);
}

.step-icon {
  font-size: 2.4rem;
  color: var(--teal);
  margin: 14px 0 10px;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.step-desc {
  font-size: .84rem;
  color: var(--text-mid);
  margin-top: 6px;
}

/* ══ TESTIMONIALS ══ */
#testimonials {
  background: linear-gradient(135deg, #e5f7fb, #cdf0f5);
}

.testi-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(30, 60, 60, .07);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 7rem;
  color: rgba(74, 191, 204, .12);
  position: absolute;
  top: -10px;
  left: 14px;
  line-height: 1;
}

.testi-stars {
  color: #F9C74F;
  font-size: 1rem;
  margin-bottom: 8px;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.testi-author {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

.testi-name {
  font-weight: 700;
  font-size: .9rem;
}

.testi-loc {
  font-size: .78rem;
  color: var(--shell);
}

/* ══ CONTACT ══ */
#contact {
  background: var(--ivory);
}

.contact-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 6px 28px rgba(30, 60, 60, .07);
  border: 1px solid var(--sand-dark);
}

.form-control,
.form-select {
  border: 1.5px solid var(--sand-dark);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: border-color .25s, box-shadow .25s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74, 191, 204, .15);
  outline: none;
  background: white;
}

.form-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--text-dark);
  font-size: .95rem;
  margin-bottom: 6px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  border-radius: 12px;
  padding: 13px;
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: .06em;
  transition: all .3s;
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(74, 191, 204, .4);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--ivory);
  border-radius: 14px;
  border: 1px solid var(--sand-dark);
  margin-bottom: 12px;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text strong {
  font-size: .85rem;
  color: var(--text-dark);
  display: block;
}

.contact-info-text span {
  font-size: .78rem;
  color: var(--shell);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ivory);
  border: 1.5px solid var(--sand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 1.1rem;
  transition: all .25s;
  margin-right: 6px;
  text-decoration: none;
}

.social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  transform: translateY(-3px);
}

/* ══ FOOTER ══ */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, .8);
  padding: 56px 0 0;
}

.footer-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: var(--teal-light);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255, 255, 255, .5);
  font-size: .95rem;
  margin-top: 4px;
}

.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: .88rem;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--teal-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 40px;
  padding: 18px 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .3);
}

.footer-shell {
  opacity: .07;
  position: absolute;
  font-size: 8rem;
  bottom: 30px;
  right: 30px;
  pointer-events: none;
}

/* ══ PATTERNS ══ */
.dot-pattern {
  background-image: radial-gradient(rgba(74, 191, 204, .15) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.shell-divider {
  text-align: center;
  margin: 8px 0;
  font-size: 1.3rem;
  color: var(--teal-light);
  letter-spacing: 10px;
}

/* ══ BACK TO TOP ══ */
#backTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(74, 191, 204, .4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all .25s;
  cursor: pointer;
}

#backTop:hover {
  transform: translateY(-3px);
}

#backTop.show {
  display: flex;
}

/* ══ ANIMATIONS ══ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
  .stat-box {
    border-right: none;
    border-bottom: 1px solid var(--sand-dark);
  }

  .stat-box:last-child {
    border-bottom: none;
  }

  section {
    padding: 56px 0;
  }

  .hero-img-card img {
    height: 260px;
  }

  .about-img-wrap img {
    height: 280px;
  }

  .contact-card {
    padding: 24px 18px;
  }
}

/* ════════ GALLERY LIGHTBOX MODAL ════════ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 60, 60, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: opacity 0.3s ease;
}

.lightbox-container {
  position: relative;
  z-index: 2001;
  max-width: 900px;
  width: 100%;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(30, 60, 60, 0.25);
  border: 1px solid rgba(74, 191, 204, 0.25);
  animation: lightboxScale 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes lightboxScale {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(74, 191, 204, 0.2);
  color: var(--text-dark);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2005;
  transition: all 0.25s ease;
  line-height: 1;
  padding: 0 0 4px 0;
}

.lightbox-close:hover {
  background: var(--teal);
  color: white;
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 4px 12px rgba(74, 191, 204, 0.3);
}

.lightbox-content {
  display: flex;
  flex-direction: row;
}

.lightbox-left {
  flex: 1.15;
  background: #f8f6f2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-height: 550px;
  min-height: 460px;
  border-right: 1px solid rgba(74, 191, 204, 0.1);
}

.lightbox-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.lightbox-left:hover img {
  transform: scale(1.03);
}

.lightbox-right {
  flex: 0.85;
  padding: 44px;
  display: flex;
  flex-direction: column;
  background: var(--ivory);
}

.lightbox-details {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lightbox-tag {
  font-size: 0.72rem;
  background: rgba(74, 191, 204, 0.12);
  color: var(--teal-dark);
  border: 1px solid rgba(74, 191, 204, 0.25);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lightbox-price {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--teal-dark);
  font-family: 'Nunito', sans-serif;
}

.lightbox-title {
  font-size: 2.3rem;
  color: var(--text-dark);
  margin: 10px 0 5px;
  line-height: 1.2;
}

.lightbox-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.lightbox-divider .short {
  width: 20px;
  background: var(--accent);
  height: 1.8px;
}

.lightbox-divider .long {
  width: 50px;
  background: var(--teal-light);
  height: 1.8px;
}

.lightbox-section-subtitle {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.lightbox-section-subtitle i {
  color: var(--teal);
}

.lightbox-desc {
  font-size: 1.18rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 0;
}

.lightbox-specs {
  background: rgba(74, 191, 204, 0.04);
  border: 1.5px dashed rgba(74, 191, 204, 0.25);
  border-radius: 18px;
  padding: 18px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.spec-cell {
  text-align: center;
  padding: 10px 4px;
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(30, 60, 60, 0.02);
  transition: transform 0.2s ease;
}

.spec-cell:hover {
  transform: translateY(-2px);
  border-color: var(--teal-light);
}

.spec-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--shell);
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 4px;
}

.spec-value {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 700;
}

.spec-notice {
  font-size: 0.72rem;
  color: var(--shell);
  font-style: italic;
  line-height: 1.3;
}

.lightbox-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.btn-lightbox-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2);
}

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

.btn-instagram {
  background: transparent;
  border: 2px solid var(--teal-dark);
  color: var(--teal-dark) !important;
}

.btn-instagram:hover {
  background: rgba(42, 155, 174, 0.06);
  transform: translateY(-2px);
}

/* ════════ LIGHTBOX RESPONSIVE ════════ */
@media (max-width: 992px) {
  .lightbox-container {
    max-width: 720px;
  }
  .lightbox-left {
    min-height: 400px;
  }
  .lightbox-right {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .lightbox-overlay {
    padding: 10px;
  }
  .lightbox-container {
    max-width: 100%;
    border-radius: 20px;
  }
  .lightbox-content {
    flex-direction: column;
  }
  .lightbox-left {
    min-height: 240px;
    max-height: 280px;
    border-right: none;
    border-bottom: 1px solid rgba(74, 191, 204, 0.1);
  }
  .lightbox-right {
    padding: 24px 20px;
  }
  .lightbox-title {
    font-size: 1.8rem;
  }
  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }
}