/* === AMORE - Elegant Bubble Balloons === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&family=Great+Vibes&display=swap');

:root {
  --cream: #faf7f4;
  --blush: #f5e6e0;
  --rose: #d4847a;
  --rose-dark: #c06b60;
  --rose-light: #f0b8b0;
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --charcoal: #2c2423;
  --warm-gray: #8c7c7a;
  --light-gray: #e8e0dc;
  --white: #ffffff;
  --shadow-soft: 0 4px 30px rgba(44,36,35,0.08);
  --shadow-card: 0 2px 20px rgba(44,36,35,0.06);
  --shadow-hover: 0 12px 40px rgba(44,36,35,0.15);
  --radius: 2px;
  --radius-lg: 4px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

p { color: var(--warm-gray); font-weight: 300; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::after { transform: translateX(0); }

.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,132,122,0.35); }

.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 1px solid var(--rose);
}
.btn-outline:hover { background: var(--rose); color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #b8923d; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,169,110,0.35); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 11px;
  padding: 11px 20px;
  width: 100%;
  justify-content: center;
  border-radius: var(--radius);
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }

/* === HEADER / NAV === */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(250,247,244,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Great Vibes", cursive;
  font-weight: 300;
  font-style: normal;

  font-size: 2rem;
  /*letter-spacing: 4px;*/
  color: var(--charcoal);
  text-transform:capitalize;
}
.logo span { /*color: var(--rose);*/ color: var(--charcoal); font-style: italic; }

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

nav ul li a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.3s ease;
}
nav ul li a:hover::after, nav ul li a.active::after { width: 100%; }
nav ul li a:hover, nav ul li a.active { color: var(--rose); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-social { display: flex; gap: 14px; }
.nav-social a {
  font-size: 14px;
  color: var(--warm-gray);
  transition: var(--transition);
}
.nav-social a:hover { color: var(--rose); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* === MOBILE NAV === */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 30px 40px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
  }
  nav.open { transform: translateY(0); opacity: 1; }
  nav ul { flex-direction: column; gap: 20px; }
  .nav-social { display: none; }
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--charcoal);
}

.hero h1 span {
  color: var(--rose);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--warm-gray);
  margin-bottom: 40px;
  max-width: 420px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-decoration {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,230,224,0.8) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--blush);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,230,224,0.3) 0%, transparent 60%);
}

/*.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
}*/

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--rose);
  animation: scrollDown 1.5s ease infinite;
}
@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* === SECTION STYLES === */
section { padding: 100px 0; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before, .section-tag::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.section-header h2 { margin-bottom: 14px; }
.section-header p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 1rem;
}

/* === PRODUCT GRID === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--blush);
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--rose);
  color: var(--white);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius);
}

.product-badge.new { background: var(--gold); }
.product-badge.sold { background: var(--charcoal); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,36,35,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.product-info {
  padding: 20px 22px 22px;
}

.product-category {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--rose);
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
}

/* === FEATURED SECTION === */
.featured-section { background: var(--cream); }

/* === ABOUT SECTION === */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content { padding: 20px 0; }

.about-content h2 { margin-bottom: 24px; }
.about-content h2 span { color: var(--rose); font-style: italic; }

.about-text { margin-bottom: 24px; font-size: 1rem; line-height: 1.8; }

.about-divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.value-item h4 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.value-item p { font-size: 0.92rem; }

/* === CONTACT SECTION === */
.contact-section { background: var(--blush); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 20px; }
.contact-info h2 span { color: var(--rose); font-style: italic; }
.contact-info p { margin-bottom: 40px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}

/* === FORM === */
.contact-form {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  background: var(--cream);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose-light);
  box-shadow: 0 0 0 3px rgba(212,132,122,0.1);
  background: var(--white);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: none;
}
.form-message.success { background: #d4edda; color: #155724; display: block; }
.form-message.error { background: #f8d7da; color: #721c24; display: block; }

/* === CATALOG PAGE === */
.page-banner {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
  text-align: center;
}

.page-banner h1 { margin-bottom: 10px; }
.page-banner p { font-size: 1rem; }

.catalog-section { padding: 80px 0; }

.filters {
  display: flex;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--warm-gray);
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}

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

/* === FOOTER === */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}

.footer-brand span{
  color: var(--white);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.5);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--rose-light); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* === TESTIMONIAL / MARQUEE === */
.marquee-section {
  background: var(--rose);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 50px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

/* Stagger children */
.stagger > * { 
  opacity: 0; 
  transform: translateY(20px); 
  transition: opacity 0.5s ease, transform 0.5s ease; 
}
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.5s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.6s; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 140px 40px 60px; }
  .hero-image-wrapper { height: 400px; }
  /*.hero-scroll-hint { left: 40px; }*/
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-container { padding: 0 24px; }
  .hero-content { padding: 120px 24px 60px; }
  .container { padding: 0 20px; }
  .contact-form { padding: 30px 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  section { padding: 70px 0; }
  /* Prevent horizontal overflow */
  body { overflow-x: hidden; }
  .about-image-accent { display: none; }
}

@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-info { padding: 16px; }
}

/* === LAZY LOADING === */
img[data-src] { opacity: 0; transition: opacity 0.5s ease; }
img.loaded { opacity: 1; }

/* === LOADER === */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-logo {
  font-family: "Great Vibes", cursive;
  font-weight: 300;
  font-style: normal;

  /*font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  */
  font-size: 2.5rem;
  text-transform: capitalize;
  color: var(--charcoal);
  animation: loaderPulse 1.5s ease infinite;
}
.loader-logo span { color: var(--rose); font-style: italic; }
@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Trigger cursor on product images */

.product-image-wrapper { cursor: zoom-in; }

/* Overlay completo */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

/* Fondo oscuro */
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 10, 0.93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Imagen centrada — ocupa el espacio disponible entre top y footer */
.lightbox-img-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  padding: 70px 70px 0; /* espacio para flechas y barra top */
  min-height: 0;
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  user-select: none;
  -webkit-user-drag: none;
}

/* Footer fijo abajo — nombre, precio y botón WhatsApp */
.lightbox-footer {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 20px 20px;
  background: linear-gradient(to top, rgba(10,6,6,0.85) 0%, transparent 100%);
}

.lightbox-caption-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.02em;
  text-align: center;
}

.lightbox-caption-price {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #f0b8b0;
  letter-spacing: 1.5px;
}

.lightbox-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  background: #25D366;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 4px;
}
.lightbox-order-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  color: #fff;
}

/* Botón cerrar */
.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}
.lightbox-close:hover {
  background: #d4847a;
  border-color: #d4847a;
  transform: rotate(90deg);
}

/* Flechas prev/next */
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}
.lightbox-arrow:hover { background: #d4847a; border-color: #d4847a; color: #fff; }
.lightbox-arrow.prev { left: 14px; }
.lightbox-arrow.next { right: 14px; }

/* Contador */
.lightbox-counter {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  white-space: nowrap;
}

/* === MÓVIL === */
@media (max-width: 600px) {
  .lightbox-img-wrap { padding: 60px 50px 0; }
  .lightbox-arrow.prev { left: 6px; width: 36px; height: 36px; }
  .lightbox-arrow.next { right: 6px; width: 36px; height: 36px; }
  .lightbox-close { top: 10px; right: 10px; width: 36px; height: 36px; font-size: 14px; }
  .lightbox-caption-name { font-size: 1.05rem; }
  .lightbox-order-btn { padding: 10px 22px; font-size: 10px; }
  .lightbox-footer { padding: 12px 16px 18px; gap: 4px; }
}
