/**
* BingoBodas — Cartones de Bingo Personalizados para Bodas
* Adapted from Axis Bootstrap Template
* Theme: Romantic, modern, elegant wedding style
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --heading-font: "Cormorant Garamond", Georgia, serif;
  --nav-font: "Montserrat", sans-serif;
}

:root {
  --background-color: #fffbf7;
  --default-color: #6b5e5e;
  --heading-color: #2d2424;
  --accent-color: #c97b84;
  --accent-color-2: #d4a574;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --rose-gold: #b76e79;
  --blush: #f5e6e0;
  --champagne: #f7e7ce;
  --sage: #9cad98;
  --deep-burgundy: #722f37;
}

:root {
  --nav-color: #8a7575;
  --nav-hover-color: #c97b84;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #6b5e5e;
  --nav-dropdown-hover-color: #c97b84;
}

.light-background {
  --background-color: #fdf5f0;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2d2424;
  --default-color: #e8d5d0;
  --heading-color: #ffffff;
  --accent-color: #e8a0bf;
  --surface-color: #3d3030;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
  max-width: 100%;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--rose-gold);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Form Messages
--------------------------------------------------------------*/
.error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.sent-message {
  display: none;
  color: #ffffff;
  background: var(--sage);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: loading-spin 1s linear infinite;
}

@keyframes loading-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 251, 247, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 42px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 600;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.scrolled .header {
  isolation: isolate;
  border-bottom: 1px solid rgba(201, 123, 132, 0.15);
}

.scrolled .header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 14px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 8px;
    z-index: 99;
    box-shadow: 0 8px 30px rgba(45, 36, 36, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 12px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 8px 40px rgba(45, 36, 36, 0.15);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(201, 123, 132, 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid rgba(107, 94, 94, 0.1);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(201, 123, 132, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(45, 36, 36, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }

  .navmenu .cta-nav-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 12px 20px 8px;
    padding: 10px 16px !important;
  }

  .navmenu .cta-nav-btn i,
  .navmenu .cta-nav-btn:focus i {
    width: auto;
    height: auto;
    margin-left: 0;
    background: transparent;
    border-radius: 0;
    font-size: 0.9rem;
  }

  .navmenu .cta-nav-btn i:hover,
  .navmenu .cta-nav-btn:focus i:hover {
    background: transparent;
    color: inherit;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  overflow-x: clip;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid rgba(232, 160, 191, 0.2);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--default-font);
  line-height: 1.8;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(232, 213, 208, 0.3);
  font-size: 16px;
  color: rgba(232, 213, 208, 0.6);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
  font-family: var(--heading-font);
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(232, 213, 208, 0.7);
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--blush);
  border-color: var(--accent-color) transparent var(--rose-gold) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(201, 123, 132, 0.4);
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--rose-gold);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

@media screen and (max-width: 991px) {
  body.configurador-page [data-aos="fade-left"],
  body.configurador-page [data-aos="fade-right"] {
    transform: translate3d(0, 20px, 0) !important;
  }

  body.configurador-page [data-aos="fade-left"].aos-animate,
  body.configurador-page [data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0) !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 87px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.2rem;
  }
}

.section-title .subtitle {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  position: relative;
  font-family: var(--nav-font);
}

.section-title .subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
  border-radius: 2px;
}

.section-title p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  max-width: 700px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 140px 0 100px;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fffbf7 0%, #fdf0ea 30%, #f5e6e0 60%, #f7e7ce 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 123, 132, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles .particle {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.15;
  animation: float-particle 15s ease-in-out infinite;
}

.particle-1 { top: 10%; left: 5%; animation-delay: 0s; }
.particle-2 { top: 20%; right: 8%; animation-delay: 2s; }
.particle-3 { top: 60%; left: 3%; animation-delay: 4s; }
.particle-4 { top: 80%; right: 12%; animation-delay: 6s; }
.particle-5 { top: 40%; left: 15%; animation-delay: 8s; }
.particle-6 { top: 70%; right: 5%; animation-delay: 10s; }

@keyframes float-particle {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  25% { transform: translateY(-20px) rotate(5deg); opacity: 0.25; }
  50% { transform: translateY(-10px) rotate(-3deg); opacity: 0.15; }
  75% { transform: translateY(-25px) rotate(8deg); opacity: 0.2; }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 123, 132, 0.1);
  border: 1px solid rgba(201, 123, 132, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 24px;
  font-family: var(--nav-font);
}

.hero-badge i {
  font-size: 0.75rem;
  animation: pulse-heart 1.5s ease-in-out infinite;
}

@keyframes pulse-heart {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-color-2), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-style: italic;
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content {
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .hero-stats .stat-item {
    text-align: center;
  }
}

.hero .hero-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--default-color);
}

.hero .hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: center;
}

@media (max-width: 576px) {
  .hero .hero-cta {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    width: 100%;
  }

  .hero .hero-cta .btn-primary {
    padding: 12px 16px;
    font-size: 0.82rem;
    gap: 6px;
    white-space: nowrap;
  }

  .hero .hero-cta .btn-secondary {
    font-size: 0.82rem;
    gap: 0.35rem;
    white-space: nowrap;
    justify-content: center;
  }

  .hero .hero-cta .btn-secondary i {
    font-size: 1.2rem;
  }
}

.hero .hero-cta .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  border: none;
  box-shadow: 0 8px 25px rgba(201, 123, 132, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nav-font);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.hero .hero-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 123, 132, 0.45);
}

.hero .hero-cta .btn-secondary {
  color: var(--heading-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: var(--nav-font);
  font-size: 0.95rem;
}

.hero .hero-cta .btn-secondary i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-cta .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

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

@media (max-width: 768px) {
  .hero .hero-stats { gap: 2rem; }
}

@media (max-width: 576px) {
  .hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 0.9rem;
  }

  .hero .hero-stats .stat-item {
    min-width: 0;
  }

  .hero .hero-stats .stat-item .stat-number {
    font-size: 1.45rem;
  }

  .hero .hero-stats .stat-item .stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.35px;
    line-height: 1.3;
  }
}

.hero .hero-stats .stat-item .stat-number {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
  font-family: var(--heading-font);
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--default-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bingo Card Hero Visual */
.bingo-card-hero {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  isolation: isolate;
}

.hero-carousel .swiper-wrapper {
  position: relative;
  z-index: 2;
}

.bingo-card-img {
  width: 100%;
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(45, 36, 36, 0.12),
    0 8px 20px rgba(201, 123, 132, 0.08);
  border: 2px solid rgba(201, 123, 132, 0.15);
  position: relative;
  z-index: 2;
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}

.bingo-card-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.bingo-card-shadow {
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(201, 123, 132, 0.1), rgba(212, 165, 116, 0.1));
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
}

.hero-carousel.swiper {
  overflow: visible;
}

.hero-carousel .hero-carousel-navigation {
  position: absolute;
  inset: auto 14px 56px 14px;
  display: flex;
  justify-content: space-between;
  z-index: 4;
  pointer-events: none;
}

.hero-carousel .hero-carousel-prev,
.hero-carousel .hero-carousel-next {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(25, 24, 24, 0.35);
  color: #fff;
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-carousel .hero-carousel-prev i,
.hero-carousel .hero-carousel-next i {
  font-size: 1.1rem;
}

.hero-carousel .hero-carousel-prev:hover,
.hero-carousel .hero-carousel-next:hover {
  transform: translateY(-2px) scale(1.05);
  background: rgba(201, 123, 132, 0.82);
}

.hero-carousel .hero-carousel-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 4;
  text-align: center;
}

.hero-carousel .hero-carousel-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.75);
  opacity: 1;
  margin: 0 5px !important;
}

.hero-carousel .hero-carousel-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: var(--accent-color);
}

.hero .hero-image {
  position: relative;
}

.hero .hero-image .floating-card {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--surface-color);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(45, 36, 36, 0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
  z-index: 3;
  border: 1px solid rgba(201, 123, 132, 0.1);
}

@media (max-width: 768px) {
  .hero-carousel .hero-carousel-navigation {
    inset: auto 10px 50px 10px;
  }

  .hero-carousel .hero-carousel-prev,
  .hero-carousel .hero-carousel-next {
    width: 38px;
    height: 38px;
  }

  .hero .hero-image .floating-card {
    bottom: -10px;
    left: 5px;
    padding: 0.75rem;
    min-width: 180px;
  }
}

.hero .hero-image .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(201, 123, 132, 0.15), rgba(212, 165, 116, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-image .floating-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-image .floating-card .card-content h5 {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.15rem 0;
  color: var(--heading-color);
  font-family: var(--nav-font);
}

.hero .hero-image .floating-card .card-content .growth-percentage {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sage);
}

@media (max-width: 992px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero .row {
    flex-direction: column-reverse;
  }

  .hero .col-lg-6:first-child {
    margin-top: 3rem;
  }

  #timing .content {
    text-align: center;
  }

  #timing .content .list-unstyled {
    margin-left: auto;
    margin-right: auto;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about .content h2,
.why-us .content h2 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 30px;
  font-family: var(--heading-font);
  font-style: italic;
}

@media (max-width: 768px) {
  .about .content h2,
  .why-us .content h2 { font-size: 2rem; }
}

.about .content .lead,
.why-us .content .lead {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--default-color);
}

.about .content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--default-color);
}

.about .stats-row {
  display: flex;
  gap: 40px;
  margin: 50px 0;
}

@media (max-width: 576px) {
  .about .stats-row { flex-direction: column; gap: 25px; }
}

.about .stats-row .stat-item .stat-number {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.about .stats-row .stat-item .stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--default-color);
  margin-top: 8px;
}

.about .cta-section {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.about .cta-section .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(201, 123, 132, 0.3);
  font-family: var(--nav-font);
  font-size: 0.95rem;
}

.about .cta-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 123, 132, 0.4);
  color: var(--contrast-color);
}

/* About Visual Cards */
.about-visual-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
  max-width: 100%;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(45, 36, 36, 0.15);
}

.about-carousel .swiper-slide {
  line-height: 0;
}

.about-visual-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-visual-img-founder {
  aspect-ratio: 16 / 10;
  object-position: center 36%;
}

.about-visual-wrap-founder {
  max-width: 680px;
}

.about-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 17, 17, 0.06) 40%, rgba(18, 17, 17, 0.14) 100%);
  z-index: 2;
  pointer-events: none;
}

.about-card-row {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: -34px auto 0;
  padding: 0 14px 2px;
}

.about-card {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 14px 11px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(20, 16, 16, 0.16);
  border: 1px solid rgba(201, 123, 132, 0.22);
  backdrop-filter: blur(4px);
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(201, 123, 132, 0.2);
  border-color: var(--accent-color);
}

.about-card i {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 6px;
  display: block;
}

.about-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: var(--nav-font);
  color: var(--heading-color);
}

.about-card p {
  font-size: 0.78rem;
  color: var(--default-color);
  margin: 0;
  line-height: 1.35;
}

.about-card-1,
.about-card-2,
.about-card-3 {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  transform: none;
}

.about-carousel-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 3;
  text-align: center;
}

.about-carousel-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  background: rgba(255, 255, 255, 0.72);
  opacity: 1;
}

.about-carousel-pagination .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 576px) {
  .about-card-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: -22px;
    padding: 0 10px 2px;
  }

  .about-card {
    width: 100%;
    padding: 11px 9px;
  }

  .about-card h4 {
    font-size: 0.82rem;
  }
}

@media (max-width: 992px) {
  .about .row { text-align: center; }
  .about .content { margin-bottom: 50px; }
  .about .stats-row { justify-content: center; }
  .about .cta-section { justify-content: center; }
}

/*--------------------------------------------------------------
# How It Works (Why Us Section)
--------------------------------------------------------------*/
.why-us {
  padding: 100px 0;
}

.why-us .features-grid {
  margin-top: 0;
}

.why-us .features-grid .row > [class*="col-"] {
  display: flex;
}

/* Step Cards */
.step-card {
  text-align: center;
  padding: 40px 25px !important;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(45, 36, 36, 0.06);
  border: 1px solid rgba(201, 123, 132, 0.08);
  transition: all 0.4s ease;
  position: relative;
  flex-direction: column !important;
  align-items: center !important;
}

.step-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 40px rgba(201, 123, 132, 0.15);
  border-color: var(--accent-color);
}

.step-number-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--nav-font);
  box-shadow: 0 4px 12px rgba(201, 123, 132, 0.3);
}

.step-card .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 123, 132, 0.1), rgba(212, 165, 116, 0.1));
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px !important;
  transition: all 0.4s ease;
}

.step-card:hover .icon-wrapper {
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: white;
  transform: scale(1.1);
}

.step-card .feature-content {
  text-align: center;
}

.step-card .feature-content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: var(--heading-font);
}

.step-card .feature-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--default-color);
  margin: 0;
}

.step-card .design-intro {
  margin-bottom: 10px;
}

.step-card .design-options {
  display: grid;
  gap: 9px;
}

.step-card .design-option {
  text-align: left;
  border-radius: 12px;
  border: 1px solid rgba(201, 123, 132, 0.2);
  background: rgba(255, 251, 247, 0.92);
  padding: 10px 11px;
}

.step-card .design-option h4 {
  margin: 0 0 4px;
  font-size: 0.83rem;
  font-family: var(--nav-font);
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--heading-color);
  text-transform: uppercase;
}

.step-card .design-option h4 em {
  font-style: italic;
}

.step-card .design-option p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.step-card .design-option-premium {
  border-color: rgba(201, 123, 132, 0.42);
  background:
    linear-gradient(135deg, rgba(201, 123, 132, 0.14), rgba(212, 165, 116, 0.1)),
    rgba(255, 251, 247, 0.92);
  box-shadow: 0 8px 18px rgba(201, 123, 132, 0.14);
}

.step-card .design-option-premium h4 {
  color: #7a3f47;
}

.step-card .design-premium-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.step-card .delivery-options {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.step-card .delivery-option {
  position: relative;
  text-align: left;
  border-radius: 12px;
  border: 1px solid rgba(201, 123, 132, 0.2);
  background: #fff;
  padding: 10px 11px;
}

.step-card .delivery-option h4 {
  margin: 0 0 4px;
  font-size: 0.82rem;
  font-family: var(--nav-font);
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--heading-color);
  text-transform: uppercase;
}

.step-card .delivery-option p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--default-color);
}

.step-card .delivery-option-pdf {
  background: rgba(255, 251, 247, 0.9);
}

.step-card .delivery-option-premium {
  border-color: rgba(201, 123, 132, 0.42);
  background:
    linear-gradient(135deg, rgba(201, 123, 132, 0.14), rgba(212, 165, 116, 0.1)),
    #fff;
  box-shadow: 0 8px 18px rgba(201, 123, 132, 0.14);
}

.step-card .delivery-option-premium h4 {
  color: #7a3f47;
}

.step-card .delivery-premium-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

/* Generic feature-item (used in why-us) */
.why-us .feature-item {
  display: flex;
  gap: 25px;
  padding: 30px 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.why-us .feature-item:hover {
  transform: translateY(-5px);
}

.why-us .icon-wrapper {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201, 123, 132, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all 0.4s ease;
}

.why-us .feature-item:hover .icon-wrapper {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.why-us .feature-content h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: var(--heading-font);
}

.why-us .feature-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--default-color);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background-color: var(--background-color);
}

.services .service-item {
  padding: 50px 35px;
  background-color: var(--surface-color);
  border-radius: 20px;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 123, 132, 0.08);
}

.services .service-item[data-style-preview] {
  cursor: pointer;
}

.services .service-item[data-style-preview]:focus-visible {
  outline: 3px solid rgba(201, 123, 132, 0.34);
  outline-offset: 3px;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(201, 123, 132, 0.12);
  border-color: var(--accent-color);
}

.services .service-item:hover::before {
  transform: scaleX(1);
}

.services .service-item:hover .service-icon {
  transform: scale(1.1);
}

.services .service-item .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.services .service-item .service-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.services .service-item h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.3;
  font-family: var(--heading-font);
}

.services .service-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 24px;
  flex-grow: 1;
}

.services .service-item .service-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-family: var(--nav-font);
}

.services .service-item .service-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-item:hover .service-link i {
  transform: translateX(6px);
}

.style-preview-modal {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(52, 30, 30, 0.2);
  overflow: hidden;
}

.style-preview-modal .modal-header {
  border-bottom: 0;
  padding: 10px 12px 2px;
}

.style-preview-modal .modal-body {
  padding: 4px 12px 12px;
}

.style-preview-media {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.style-preview-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
  object-fit: contain;
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 100px 0;
}

#pricingConfigurator {
  --summary-tone-accent: var(--accent-color);
  --summary-tone-border: rgba(201, 123, 132, 0.34);
  --summary-tone-soft: rgba(253, 238, 242, 0.92);
  --summary-tone-total-soft: rgba(250, 234, 239, 0.94);
  --summary-tone-shadow: rgba(201, 123, 132, 0.14);
}

.pricing-controls {
  margin-bottom: 36px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(201, 123, 132, 0.18);
  background: linear-gradient(135deg, rgba(253, 245, 240, 0.86), rgba(255, 255, 255, 0.95));
  box-shadow: 0 10px 26px rgba(45, 36, 36, 0.06);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-controls-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  font-size: 0.82rem;
  line-height: 1.3;
  color: #7e6f6f;
  font-family: var(--nav-font);
}

.pricing-toggle-label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--heading-color);
  font-family: var(--nav-font);
}

.pricing-toggle {
  display: inline-flex;
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(201, 123, 132, 0.22);
  background: #fff;
  padding: 4px;
  gap: 4px;
}

.pricing-toggle-btn {
  border: none;
  background: transparent;
  color: #6f6060;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 9px 14px;
  border-radius: 999px;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex: 1;
}

.pricing-toggle-btn:hover {
  color: var(--heading-color);
  background: rgba(201, 123, 132, 0.08);
}

.pricing-toggle-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  box-shadow: 0 8px 18px rgba(201, 123, 132, 0.3);
}

.pricing-combo {
  display: block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #7e6f6f;
  font-weight: 600;
  font-family: var(--nav-font);
}

.pricing-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(45, 36, 36, 0.06);
  border: 1px solid rgba(201, 123, 132, 0.1);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(201, 123, 132, 0.15);
}

.pricing-card.featured {
  border: 2px solid var(--accent-color);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: 12px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--nav-font);
  letter-spacing: 0.3px;
}

.configurador-page .pricing-card[data-pack-selected="true"]::before {
  content: "Pack seleccionado";
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 2;
  background: linear-gradient(135deg, #2f6b4f, #4f8d6f);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
  font-family: var(--nav-font);
  letter-spacing: 0.2px;
}

.pricing-header {
  padding: 40px 30px 30px;
  text-align: center;
  background: linear-gradient(135deg, #fdf5f0, #fef9f6);
  border-bottom: 1px solid rgba(201, 123, 132, 0.08);
}

.pricing-plan {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 16px;
  font-style: italic;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-color);
  margin-top: 8px;
  font-family: var(--heading-font);
}

.pricing-price .amount {
  font-size: 4rem;
  font-weight: 300;
  color: var(--heading-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--default-color);
  font-weight: 500;
}

.pricing-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--heading-color);
  border-bottom: 1px solid rgba(201, 123, 132, 0.06);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-features li .bi-check-circle-fill {
  color: var(--sage);
}

.pricing-features li .bi-x-circle {
  color: #ccc;
}

.pricing-features li.disabled {
  color: #bbb;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(201, 123, 132, 0.3);
  font-family: var(--nav-font);
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 123, 132, 0.4);
  color: white;
}

.pricing-extra-set {
  margin-top: 28px;
  border-radius: 24px;
  border: 1px solid rgba(201, 123, 132, 0.2);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(253, 245, 240, 0.92));
  box-shadow: 0 16px 34px rgba(45, 36, 36, 0.08);
  display: block;
  padding: 26px;
  overflow: hidden;
  position: relative;
}

.pricing-extra-set::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 123, 132, 0.2), rgba(201, 123, 132, 0));
  pointer-events: none;
}

.pricing-extra-set-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pricing-extra-set-kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--nav-font);
  margin-bottom: 10px;
}

.pricing-extra-set h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.pricing-extra-set p {
  margin: 0 auto;
  max-width: 58ch;
  color: var(--default-color);
  font-size: 0.98rem;
}

.pricing-extra-options {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  text-align: left;
}

.pricing-extra-option {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(201, 123, 132, 0.22);
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transition: all 0.25s ease;
}

.pricing-extra-option:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 123, 132, 0.44);
  box-shadow: 0 10px 24px rgba(45, 36, 36, 0.08);
}

.pricing-extra-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent-color);
}

.pricing-extra-option-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-extra-option-title {
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--heading-color);
  line-height: 1.2;
}

.pricing-extra-option-desc {
  font-size: 0.87rem;
  color: rgba(54, 45, 45, 0.78);
  line-height: 1.3;
}

.pricing-extra-option-price {
  margin-top: 3px;
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.pricing-extra-option-price .currency {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 3px;
  color: var(--accent-color);
}

.pricing-extra-option-price .amount {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.pricing-extra-option-media,
.pricing-extra-option-icon {
  width: 348px;
  height: 246px;
  border-radius: 10px;
  background: rgba(201, 123, 132, 0.09);
  border: 1px solid rgba(201, 123, 132, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-extra-option-media img {
  width: 294px;
  height: 216px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(45, 36, 36, 0.24));
}

.pricing-extra-option-icon i {
  font-size: 1.55rem;
  color: var(--accent-color);
}

.pricing-extra-option input[type="checkbox"]:checked ~ .pricing-extra-option-main .pricing-extra-option-title {
  color: var(--accent-color);
}

.pricing-extra-option input[type="checkbox"]:checked ~ .pricing-extra-option-icon,
.pricing-extra-option input[type="checkbox"]:checked ~ .pricing-extra-option-media {
  border-color: rgba(201, 123, 132, 0.5);
  background: rgba(201, 123, 132, 0.16);
}

@supports selector(:has(*)) {
  .pricing-extra-option:has(input[type="checkbox"]:checked) {
    border-color: rgba(201, 123, 132, 0.52);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(252, 236, 240, 0.9));
    box-shadow: 0 10px 24px rgba(201, 123, 132, 0.14);
  }
}

.pricing-order-summary {
  margin-top: 20px;
  border-radius: 24px;
  border: 1px solid rgba(201, 123, 132, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(251, 244, 240, 0.94));
  box-shadow: 0 16px 34px rgba(45, 36, 36, 0.08);
  padding: 24px;
}

.pricing-order-summary-header {
  text-align: center;
}

.pricing-order-summary-header h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.pricing-order-summary-header p {
  margin: 0 auto;
  max-width: 56ch;
  color: var(--default-color);
}

.pricing-order-summary-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(300px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-order-summary-preview {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(201, 123, 132, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(253, 245, 240, 0.92));
  padding: 10px;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  align-self: stretch;
}

.pricing-order-summary-preview-canvas {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(45, 36, 36, 0.14);
  display: none;
}

.pricing-order-summary-preview:not(.is-empty) .pricing-order-summary-preview-canvas {
  display: block;
}

.pricing-order-summary-preview-empty {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: rgba(54, 45, 45, 0.68);
  text-align: center;
  font-size: 0.9rem;
  padding: 16px;
}

.pricing-order-summary-preview-empty i {
  font-size: 1.45rem;
  color: var(--accent-color);
}

.pricing-order-summary-preview:not(.is-empty) .pricing-order-summary-preview-empty {
  display: none;
}

.pricing-order-summary-details {
  border-radius: 16px;
  border: 1px solid rgba(201, 123, 132, 0.18);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px 14px 16px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.pricing-order-summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  flex: 1;
}

.pricing-order-summary-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(201, 123, 132, 0.22);
  padding-bottom: 6px;
}

.pricing-order-summary-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-order-summary-list li span {
  color: rgba(54, 45, 45, 0.72);
  font-size: 0.88rem;
}

.pricing-order-summary-list li strong {
  color: var(--heading-color);
  text-align: right;
}

.pricing-order-summary-list li strong[data-summary-format],
.pricing-order-summary-list li strong[data-summary-cartons] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--summary-tone-border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), var(--summary-tone-soft));
  box-shadow: 0 4px 10px var(--summary-tone-shadow);
  font-weight: 700;
  line-height: 1.2;
}

.pricing-order-summary-list li strong[data-summary-cartons] {
  font-size: 1.08rem;
  min-width: 56px;
}

.pricing-order-summary-list li.pricing-summary-total-row {
  margin-top: 4px;
  padding: 10px 12px 8px;
  border-radius: 12px;
  border: 1px solid var(--summary-tone-border);
  border-bottom: 1px solid var(--summary-tone-border);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.98), var(--summary-tone-total-soft));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
}

.pricing-order-summary-list li.pricing-summary-total-row > span {
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(54, 45, 45, 0.86);
  text-align: center;
  width: 100%;
}

.pricing-order-summary-list li strong[data-summary-total] {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  font-family: var(--heading-font);
}

.pricing-order-summary-list li strong[data-summary-total] .currency {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 8px;
  color: var(--summary-tone-accent);
}

.pricing-order-summary-list li strong[data-summary-total] .amount {
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.03em;
  line-height: 1;
}

#pricingConfigurator[data-pricing-color-mode="full-color"] .pricing-order-summary-list li strong[data-summary-color] {
  color: var(--accent-color);
  font-weight: 700;
}

.pricing-order-summary-list li strong[data-summary-extras] {
  white-space: pre-line;
}

.pricing-summary-btn {
  width: 100%;
  margin-top: 14px;
}

.pricing-summary-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.pricing-summary-actions .pricing-summary-btn {
  margin-top: 0;
}

.pricing-save-session-btn {
  background: #fff;
  color: var(--accent-color);
  border: 1px solid rgba(201, 123, 132, 0.34);
}

.pricing-save-session-btn:hover {
  background: rgba(201, 123, 132, 0.1);
  color: var(--heading-color);
}

@media (max-width: 1199px) {
  .pricing-controls {
    grid-template-columns: 1fr;
  }

  .pricing-extra-set {
    padding: 22px 18px;
  }

  .pricing-extra-set p {
    max-width: 100%;
  }

  .pricing-extra-options {
    grid-template-columns: 1fr;
  }

  .pricing-order-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pricing-controls {
    padding: 16px;
    gap: 12px;
  }

  .pricing-toggle {
    flex-wrap: wrap;
    border-radius: 14px;
  }

  .pricing-toggle-btn {
    min-width: calc(50% - 4px);
    border-radius: 10px;
  }

  .pricing-toggle.pricing-toggle-size {
    flex-wrap: nowrap;
  }

  .pricing-toggle.pricing-toggle-size .pricing-toggle-btn {
    min-width: 0;
    flex: 1 1 0;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .pricing-card.featured,
  .pricing-card.featured:hover {
    transform: none;
  }

  .pricing-extra-option {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    justify-items: center;
    text-align: center;
  }

  .pricing-extra-option input[type="checkbox"] {
    justify-self: start;
    margin: 0;
  }

  .pricing-extra-option-main {
    align-items: center;
    text-align: center;
  }

  .pricing-extra-option-price {
    justify-content: center;
  }

  .pricing-extra-option-media,
  .pricing-extra-option-icon {
    grid-column: auto;
    width: min(288px, 100%);
    height: 204px;
    margin-top: 2px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-extra-option-title {
    font-size: 0.92rem;
  }

  .pricing-extra-option-desc {
    font-size: 0.82rem;
  }

  .pricing-order-summary {
    padding: 18px 14px;
  }

  .pricing-order-summary-header h3 {
    font-size: 1.28rem;
  }

  .card-preview-area {
    padding: 0;
    border: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: white;
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid rgba(201, 123, 132, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(201, 123, 132, 0.1);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, #fdf5f0, #fef9f6);
}

/* Avatar initials circle */
.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 auto 12px;
  border: 3px solid rgba(201, 123, 132, 0.2);
  box-shadow: 0 5px 15px rgba(201, 123, 132, 0.2);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: var(--accent-color-2);
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 20px 30px;
}

.testimonials .testimonial-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--default-color);
  margin: 0;
  font-style: italic;
  text-align: center;
}

.testimonials .testimonial-footer {
  padding: 15px 30px 30px;
  text-align: center;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 4px;
  font-family: var(--heading-font);
}

.testimonials .testimonial-footer span {
  font-size: 0.8rem;
  color: var(--accent-color);
  display: block;
  font-weight: 500;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 48px;
  height: 48px;
  margin: 0;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(201, 123, 132, 0.3);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(201, 123, 132, 0.4);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq {
  padding: 100px 0;
}

.faq .accordion-item {
  border: 1px solid rgba(201, 123, 132, 0.12);
  border-radius: 12px !important;
  margin-bottom: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(45, 36, 36, 0.03);
}

.faq .accordion-button {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--heading-color);
  padding: 20px 24px;
  background: white;
  box-shadow: none !important;
}

.faq .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #fdf5f0, #fef9f6);
  color: var(--accent-color);
}

.faq .accordion-button::after {
  background-image: none;
  content: "\F282";
  font-family: "bootstrap-icons";
  font-size: 1rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.faq .accordion-body {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 100px 0;
}

.contact .info-item {
  margin-bottom: 60px;
}

.contact .info-item .info-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 123, 132, 0.1), rgba(212, 165, 116, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.contact .info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .info-item .info-content h4 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-style: italic;
}

.contact .info-item .info-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
  margin: 0;
}

.contact .contact-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}

.contact .contact-details .detail-item:last-child {
  margin-bottom: 0;
}

.contact .contact-details .detail-item .detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-details .detail-item .detail-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.contact .contact-details .detail-item .detail-content .detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact .contact-details .detail-item .detail-content .detail-value {
  display: block;
  font-size: 1rem;
  color: var(--heading-color);
  line-height: 1.6;
  font-weight: 500;
}

.contact .form-header {
  margin-bottom: 32px;
}

.contact .form-header h3 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--heading-color);
  margin: 0;
  font-family: var(--heading-font);
  font-style: italic;
}

.contact .form-wrapper {
  background-color: var(--surface-color);
  padding: 35px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(45, 36, 36, 0.06);
  border: 1px solid rgba(201, 123, 132, 0.08);
}

.contact .form-wrapper .form-group {
  margin-bottom: 24px;
}

.contact .form-wrapper .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-family: var(--nav-font);
}

.contact .form-wrapper .form-group input,
.contact .form-wrapper .form-group select,
.contact .form-wrapper .form-group textarea {
  width: 100%;
  border: 1px solid rgba(201, 123, 132, 0.2);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--heading-color);
  background-color: #fefcfa;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact .form-wrapper .form-group input:focus,
.contact .form-wrapper .form-group select:focus,
.contact .form-wrapper .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(201, 123, 132, 0.1);
  background-color: white;
}

.contact .form-wrapper .form-group input::placeholder,
.contact .form-wrapper .form-group textarea::placeholder {
  color: #bfaeae;
}

.contact .form-wrapper .form-group select {
  cursor: pointer;
  appearance: auto;
}

.contact .form-wrapper .form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.contact .form-wrapper .submit-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: var(--contrast-color);
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(201, 123, 132, 0.3);
  font-family: var(--nav-font);
}

.contact .form-wrapper .submit-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.contact .form-wrapper .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 123, 132, 0.4);
}

.contact .form-wrapper .submit-btn:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 40px 0 20px 0;
  border-top: 1px solid rgba(201, 123, 132, 0.1);
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
::selection {
  background: rgba(201, 123, 132, 0.2);
  color: var(--heading-color);
}

/* Smooth gradient divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 123, 132, 0.3), transparent);
  border: none;
  margin: 0;
}

/*--------------------------------------------------------------
# Bingo Simulator Widget
--------------------------------------------------------------*/
.simulator-widget {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(45, 36, 36, 0.08);
  border: 1px solid rgba(201, 123, 132, 0.12);
  position: relative;
  overflow: hidden;
}

.simulator-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2), var(--rose-gold));
}

.simulator-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 123, 132, 0.1);
}

.simulator-header i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.simulator-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  font-family: var(--heading-font);
  font-style: italic;
  flex: 1;
}

.simulator-badge {
  background: linear-gradient(135deg, rgba(201, 123, 132, 0.12), rgba(212, 165, 116, 0.12));
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--nav-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.simulator-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.control-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-family: var(--nav-font);
}

.control-group label i {
  color: var(--accent-color);
}

.range-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.range-wrapper input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(201, 123, 132, 0.2), rgba(201, 123, 132, 0.35));
  outline: none;
}

.range-wrapper input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(201, 123, 132, 0.35);
  transition: transform 0.2s ease;
}

.range-wrapper input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.range-wrapper output {
  min-width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-color);
  font-family: var(--nav-font);
}

.simulator-run-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(201, 123, 132, 0.3);
  font-family: var(--nav-font);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.simulator-run-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 123, 132, 0.4);
}

.simulator-run-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.simulator-run-btn i {
  font-size: 1.1rem;
}

.simulator-results {
  margin-top: 24px;
  animation: fadeInResults 0.5s ease;
}

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

.results-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .results-summary {
    grid-template-columns: 1fr;
  }
}

.result-card {
  background: linear-gradient(135deg, #fdf5f0, #fef9f6);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  border: 1px solid rgba(201, 123, 132, 0.08);
}

.result-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-family: var(--nav-font);
}

.result-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.chart-container {
  background: #fefcfa;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(201, 123, 132, 0.06);
}

.chart-container canvas {
  width: 100% !important;
  height: auto !important;
}

.simulator-note {
  font-size: 0.75rem;
  color: var(--default-color);
  margin: 12px 0 0;
  opacity: 0.7;
  text-align: center;
}

.simulator-note i {
  color: var(--accent-color);
}

.simulator-progress {
  margin-top: 20px;
  text-align: center;
}

.progress-bar-wrapper {
  height: 6px;
  background: rgba(201, 123, 132, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-color), var(--rose-gold));
  border-radius: 3px;
  transition: width 0.3s ease;
}

#simProgressText {
  font-size: 0.8rem;
  color: var(--default-color);
  font-weight: 500;
}
/*--------------------------------------------------------------
# Configurador Page
--------------------------------------------------------------*/

html.configurador-page-html,
html.configurador-page-html body {
  overflow-x: clip;
  max-width: 100%;
}

body.configurador-page {
  overflow-x: clip;
}

body.configurador-page .page-wrapper {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  position: relative;
}

body.configurador-page .main {
  overflow-x: clip;
}

/* Nav CTA button */
.cta-nav-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold)) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.3px;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(201, 123, 132, 0.3);
}

.cta-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(201, 123, 132, 0.45) !important;
  color: #fff !important;
}

/* Configurador hero */
.configurador-hero {
  padding: 120px 0 40px;
  background: linear-gradient(135deg, #fffbf7 0%, #fdf5f0 50%, #f5e6e0 100%);
}

.configurador-hero h1 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--heading-color);
}

.configurador-hero .lead {
  font-size: 1.15rem;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto;
}

.configurador.section {
  padding: 20px 0;
}

/* Config panel */
.config-panel {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(201, 123, 132, 0.1);
  display: flex;
  flex-direction: column;
}

.config-panel-scroll {
  display: block;
}

.config-panel-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 123, 132, 0.16);
}

.config-panel-footer .generate-btn {
  margin-top: 0;
}

.config-validation-notice {
  margin-bottom: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(201, 123, 132, 0.35);
  background: linear-gradient(135deg, rgba(201, 123, 132, 0.12), rgba(201, 123, 132, 0.06));
  color: #7a3f45;
  font-size: 0.86rem;
  line-height: 1.4;
}

.config-validation-notice strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-weight: 700;
  color: #6d3037;
}

.config-validation-notice ul {
  margin: 0;
  padding-left: 18px;
}

.config-validation-notice li {
  margin: 2px 0;
}

.config-step {
  margin-bottom: 28px;
}

.config-step:last-child {
  margin-bottom: 0;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.step-header h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

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

.style-option {
  border: 2px solid #e8e0dc;
  border-radius: 12px;
  padding: 12px 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  background: #fff;
}

.style-option:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 123, 132, 0.15);
}

.style-option.selected {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, rgba(201, 123, 132, 0.08), rgba(183, 110, 121, 0.05));
  box-shadow: 0 4px 16px rgba(201, 123, 132, 0.2);
}

.style-preview {
  font-size: 2rem;
  margin-bottom: 6px;
}

.style-option span:last-child {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.2;
}

/* Photo uploads */
.photo-uploads {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.photo-upload-item {
  width: clamp(150px, 38%, 220px);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.photo-upload-box {
  flex: 1;
  text-align: center;
}

.photo-upload-box small {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.8rem;
}

.photo-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border: 2px dashed #d4c5c0;
  border-radius: 12px;
  padding: 16px 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 0;
  background: #fdf9f7;
}

.photo-upload-label.has-photo {
  padding: 0;
}

.photo-customize-btn {
  width: 100%;
  border: 1px solid rgba(201, 123, 132, 0.35);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: var(--heading-color);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.photo-customize-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(201, 123, 132, 0.06);
}

.photo-customize-btn:focus-visible {
  outline: 2px solid rgba(201, 123, 132, 0.45);
  outline-offset: 2px;
}

.photo-upload-label:hover {
  border-color: var(--accent-color);
  background: rgba(201, 123, 132, 0.04);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.photo-placeholder.has-photo {
  padding: 0;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

.photo-placeholder i {
  font-size: 2rem;
  color: var(--accent-color);
  opacity: 0.6;
}

.photo-placeholder span {
  display: block;
  font-size: 0.7rem;
  color: #a89999;
  margin-top: 4px;
}

/* Photo customizer modal */
.photo-customizer-modal {
  border: 1px solid rgba(201, 123, 132, 0.2);
  border-radius: 16px;
  overflow: hidden;
}

.photo-customizer-modal .modal-header {
  background: linear-gradient(135deg, #fffbf7, #f5e6e0);
  border-bottom: 1px solid rgba(201, 123, 132, 0.18);
}

.photo-customizer-footer {
  border-top: 1px solid rgba(201, 123, 132, 0.15);
  background: rgba(255, 251, 247, 0.75);
  gap: 8px;
  justify-content: flex-end;
}

.photo-modal-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.photo-modal-btn i {
  font-size: 0.85rem;
}

.photo-modal-btn-muted {
  border-color: #d8c9c3;
  background: #fff;
  color: var(--heading-color);
}

.photo-modal-btn-muted:hover {
  border-color: #c49f95;
  background: #fbf3ef;
}

.photo-modal-btn-ghost {
  border-color: #d8c9c3;
  background: #f4ebe7;
  color: #654942;
}

.photo-modal-btn-ghost:hover {
  border-color: #c49f95;
  background: #ecded8;
}

.photo-modal-btn-primary {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: #fff;
  box-shadow: 0 3px 10px rgba(201, 123, 132, 0.22);
}

.photo-modal-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(201, 123, 132, 0.3);
}

.photo-customizer-modal .modal-title {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 600;
}

.photo-customizer-layout {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(300px, 1.2fr);
  gap: 16px;
}

.photo-customizer-controls {
  background: #fdf9f7;
  border: 1px solid #f0dfd9;
  border-radius: 12px;
  padding: 16px;
}

.photo-customizer-controls h6 {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
}

.photo-ai-style-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.photo-ai-style-btn {
  border: 1px solid #d8c9c3;
  border-radius: 10px;
  background: #fff;
  color: var(--heading-color);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 10px 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.photo-ai-style-btn i {
  font-size: 0.9rem;
  line-height: 1;
}

.photo-ai-style-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.photo-ai-style-btn.active {
  border-color: var(--accent-color);
  background: rgba(201, 123, 132, 0.1);
  color: var(--accent-color);
  box-shadow: inset 0 0 0 1px rgba(201, 123, 132, 0.15);
}

.photo-ai-custom-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fffaf8;
  border: 1px solid #eddeda;
  border-radius: 12px;
  padding: 10px;
}

.photo-ai-custom-label {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: #6e5853;
}

.photo-ai-custom-prompt {
  width: 100%;
  min-height: 84px;
  resize: vertical;
  border: 1px solid #d8c9c3;
  border-radius: 10px;
  background: #fff;
  color: var(--heading-color);
  font-size: 0.82rem;
  line-height: 1.35;
  padding: 10px 11px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.photo-ai-custom-prompt::placeholder {
  color: #a18983;
}

.photo-ai-custom-prompt:focus-visible {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(201, 123, 132, 0.2);
}

.photo-ai-custom-prompt:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  background: #f5f0ee;
}

.photo-ai-custom-btn {
  width: 100%;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.78rem;
}

.photo-manual-title {
  margin: 14px 0 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
}

.photo-manual-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  --photo-manual-btn-width: minmax(160px, 46%);
}

.photo-manual-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--photo-manual-btn-width);
  align-items: center;
  gap: 10px;
}

.photo-manual-action-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.photo-manual-filter-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 46%);
  align-items: center;
  gap: 10px;
}

.photo-manual-filter-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.photo-manual-filter-select-wrap {
  position: relative;
  min-width: 0;
}

.photo-manual-label {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #ecdcd6;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.8rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.2;
}

.photo-manual-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #cfb6ae;
  border-radius: 999px;
  background: #efe2dc;
  color: #6b4f4a;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 7px 12px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.photo-manual-main-btn i {
  font-size: 0.86rem;
  line-height: 1;
}

.photo-manual-btn:hover {
  border-color: #c49f95;
  color: #5f443f;
  background: #e8d5ce;
}

.photo-manual-btn:focus-visible {
  outline: 2px solid rgba(201, 123, 132, 0.42);
  outline-offset: 2px;
}

.photo-manual-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.photo-manual-filter-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  padding-right: 30px;
  cursor: pointer;
}

.photo-manual-filter-caret {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #6b4f4a;
  font-size: 0.7rem;
}

.photo-manual-revert-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  padding: 0;
  font-size: 0.92rem;
  flex-shrink: 0;
}

.photo-manual-revert-btn i {
  line-height: 1;
}

.photo-frame-title {
  margin: 16px 0 10px;
}

.photo-frame-controls {
  background: #fffaf8;
  border: 1px solid #eddeda;
  border-radius: 12px;
  padding: 10px;
}

.photo-frame-shape-toggle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.photo-frame-shape-btn {
  border: 1px solid #d9ccc7;
  border-radius: 999px;
  background: #fff;
  color: var(--heading-color);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.15;
  padding: 7px 8px;
  transition: all 0.2s ease;
}

.photo-frame-shape-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.photo-frame-shape-btn.active {
  border-color: var(--accent-color);
  background: rgba(201, 123, 132, 0.1);
  color: var(--accent-color);
  box-shadow: inset 0 0 0 1px rgba(201, 123, 132, 0.14);
}

.photo-frame-width-row {
  margin-top: 10px;
}

.photo-frame-width-row label {
  display: block;
  margin: 0 0 6px;
  font-size: 0.78rem;
  color: var(--heading-color);
  font-weight: 600;
}

.photo-frame-width-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
}

#photoFrameWidth {
  width: 100%;
}

#photoFrameWidthValue {
  font-size: 0.74rem;
  font-weight: 700;
  color: #6a5552;
  min-width: 42px;
  text-align: right;
}

.photo-frame-color-row {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--heading-color);
}

.photo-frame-color-trigger {
  width: 36px;
  height: 36px;
}

.photo-frame-controls.disabled {
  opacity: 0.7;
}

.photo-frame-controls.disabled #photoFrameWidth,
.photo-frame-controls.disabled .photo-frame-color-trigger {
  pointer-events: none;
  filter: grayscale(0.35);
}

.photo-customizer-preview-panel {
  border: 1px solid #ebdbd5;
  border-radius: 12px;
  background: #fff;
  min-height: 360px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.photo-customizer-preview-empty {
  width: 100%;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #998b87;
  padding: 16px;
}

.photo-customizer-preview-empty i {
  font-size: 2rem;
  margin-bottom: 8px;
  opacity: 0.6;
}

.photo-customizer-preview-empty p {
  margin: 0;
  font-size: 0.88rem;
}

.photo-empty-upload-btn {
  margin-top: 14px;
  border: 1px solid rgba(201, 123, 132, 0.36);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201, 123, 132, 0.12), rgba(201, 123, 132, 0.2));
  color: #744049;
  font-size: 0.84rem;
  font-weight: 700;
  font-family: var(--nav-font);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s ease;
}

.photo-empty-upload-btn:hover,
.photo-empty-upload-btn:focus-visible {
  border-color: var(--accent-color);
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  box-shadow: 0 6px 14px rgba(201, 123, 132, 0.24);
}

.photo-empty-upload-btn i {
  font-size: 0.82rem;
}

.photo-customizer-preview-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 10px;
  display: none;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.photo-customizer-preview-image.is-ai-processing {
  filter: saturate(0.92) brightness(0.78) blur(0.8px);
  transform: scale(0.995);
}

.photo-ai-processing-overlay {
  position: absolute;
  inset: 10px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(20, 15, 15, 0.44);
  backdrop-filter: blur(1.8px);
  overflow: hidden;
}

.photo-ai-processing-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
  transform: translateX(-130%);
  animation: photoAiSweep 1.8s ease-in-out infinite;
}

.photo-ai-processing-box {
  position: relative;
  z-index: 1;
  min-width: min(90%, 320px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 251, 247, 0.94);
  border: 1px solid rgba(201, 123, 132, 0.28);
  box-shadow: 0 12px 24px rgba(20, 15, 15, 0.12);
  animation: photoAiPulse 1.5s ease-in-out infinite;
}

.photo-ai-processing-spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(201, 123, 132, 0.24);
  border-top-color: var(--accent-color);
  animation: photoAiSpin 1.6s linear infinite;
}

#photoAiProcessingText {
  margin: 0;
  text-align: center;
  color: var(--heading-color);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
}

@keyframes photoAiSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes photoAiPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.015);
  }
}

@keyframes photoAiSweep {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(330%);
  }
}

.photo-crop-overlay {
  position: absolute;
  border: 1px dashed rgba(0, 0, 0, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 4;
}

.photo-crop-selection {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  cursor: move;
  touch-action: none;
}

.photo-crop-resize-handle {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--accent-color);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22);
  cursor: nwse-resize;
}

.photo-crop-toolbar {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(23, 17, 17, 0.72);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  z-index: 5;
}

.photo-crop-hint {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.3;
}

.photo-crop-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.photo-crop-btn {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2a1e1e;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 7px 11px;
  transition: all 0.2s ease;
}

.photo-crop-btn:hover {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.photo-crop-btn.photo-crop-btn-ghost {
  background: transparent;
  color: #fff;
}

.photo-crop-btn.photo-crop-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.photo-preview {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  display: none;
}

.photo-preview.has-photo {
  display: block;
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Config fields */
.config-field {
  margin-bottom: 12px;
}

.config-field:last-child {
  margin-bottom: 0;
}

.config-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.config-input-with-color {
  display: flex;
  align-items: center;
  gap: 8px;
}

.config-input-with-color input {
  flex: 1;
}

.text-color-trigger {
  width: 40px;
  height: 40px;
  border: 1px solid #d8c9c3;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.text-color-trigger:hover {
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

.text-color-swatch {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.text-color-modal {
  border: 1px solid rgba(201, 123, 132, 0.2);
  border-radius: 14px;
  overflow: hidden;
}

.text-color-modal .modal-header {
  background: linear-gradient(135deg, #fffbf7, #f5e6e0);
  border-bottom: 1px solid rgba(201, 123, 132, 0.16);
}

.text-color-control label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.bw-color-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  margin: 6px 0 0;
}

.bw-color-slider::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: linear-gradient(90deg, #000000 0%, #FFFFFF 100%);
}

.bw-color-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -5px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #2d2424;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.bw-color-slider::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: linear-gradient(90deg, #000000 0%, #FFFFFF 100%);
}

.bw-color-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #2d2424;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.color-spectrum {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  cursor: crosshair;
  background-image: linear-gradient(to top, #000 0%, transparent 100%), linear-gradient(to right, #fff 0%, #FF0000 100%);
  touch-action: none;
}

.color-spectrum-pointer {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  pointer-events: none;
  left: 0%;
  top: 100%;
}

.hue-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  margin: 12px 0 0;
}

.hue-slider::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: linear-gradient(90deg,
    #ff0000 0%,
    #ffff00 16.7%,
    #00ff00 33.4%,
    #00ffff 50.1%,
    #0000ff 66.8%,
    #ff00ff 83.5%,
    #ff0000 100%);
}

.hue-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -5px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #2d2424;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.hue-slider::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: linear-gradient(90deg,
    #ff0000 0%,
    #ffff00 16.7%,
    #00ff00 33.4%,
    #00ffff 50.1%,
    #0000ff 66.8%,
    #ff00ff 83.5%,
    #ff0000 100%);
}

.hue-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #2d2424;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.text-color-current {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--heading-color);
}

.text-color-current code {
  font-size: 0.78rem;
}

.text-color-current-swatch {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #000;
}

.config-field input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0d6d2;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--default-font);
  color: var(--heading-color);
  transition: border-color 0.3s;
}

.config-field input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(201, 123, 132, 0.1);
}

.config-checkbox-line {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid #ecdcd6;
  border-radius: 10px;
  background: #fff;
}

.config-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.84rem;
  color: var(--heading-color);
  font-weight: 600;
  cursor: pointer;
}

.config-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-color);
  flex-shrink: 0;
}

.render-mode-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.render-mode-toggle .mode-option {
  margin: 0;
  cursor: pointer;
}

.render-mode-toggle .mode-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.render-mode-toggle .mode-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #e0d6d2;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--heading-color);
  background: #fff;
  transition: all 0.2s ease;
}

.render-mode-toggle .mode-option span i {
  font-size: 0.9rem;
  line-height: 1;
}

.render-mode-toggle .mode-option input:checked + span {
  border-color: var(--accent-color);
  background: rgba(201, 123, 132, 0.1);
  color: var(--accent-color);
  box-shadow: inset 0 0 0 1px rgba(201, 123, 132, 0.15);
}

.render-mode-toggle .bw-label-short {
  display: none;
}

@media (max-width: 767px) {
  .render-mode-toggle .bw-label-full {
    display: none;
  }

  .render-mode-toggle .bw-label-short {
    display: inline;
  }
}

@media (max-width: 575.98px) {
  .text-color-trigger {
    width: 36px;
    height: 36px;
  }
}

/* Generate button */
.generate-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: #fff;
  font-family: var(--default-font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 123, 132, 0.35);
  margin-top: 20px;
}

.generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 123, 132, 0.5);
}

.generate-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Preview panel */
.preview-panel {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(201, 123, 132, 0.1);
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 992px) {
  .configurador-main-row .configurator-config-col {
    display: flex;
  }

  .configurador-main-row .config-panel {
    width: 100%;
    height: calc(100vh - 120px);
    overflow: hidden;
  }

  .configurador-main-row .config-panel-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 6px;
  }

  .configurador-main-row .configurator-preview-col {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: calc(100vh - 120px);
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: stretch;
  }

  .configurador-main-row .preview-panel {
    position: static;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: none;
  }
}

.preview-header {
  text-align: center;
  margin-bottom: 0;
}

.preview-header h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

/* Empty state */
.preview-empty {
  text-align: center;
  padding: 32px 22px;
  border: 1px dashed rgba(201, 123, 132, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.preview-empty i {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.4;
  margin-bottom: 16px;
}

.preview-empty p {
  color: #a89999;
  font-size: 0.9rem;
}

/* Bingo card preview */
.card-preview-area {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(201, 123, 132, 0.15);
  background:
    radial-gradient(circle at top, rgba(201, 123, 132, 0.09), transparent 52%),
    linear-gradient(180deg, #fffaf7 0%, #fff 100%);
}

.card-preview-area > #emptyState,
.card-preview-area > #cardRender {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.card-render {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preview-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.preview-watermark-note {
  margin: 12px 6px 0;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #7b6662;
}

.preview-watermark-note strong {
  color: var(--heading-color);
}

.preview-generating {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(2px);
  border-radius: 12px;
}

.preview-generating-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 251, 247, 0.95);
  border: 1px solid rgba(201, 123, 132, 0.22);
  box-shadow: 0 8px 20px rgba(201, 123, 132, 0.12);
}

.preview-generating-spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(201, 123, 132, 0.22);
  border-top-color: var(--accent-color);
  animation: previewSpin 0.9s linear infinite;
}

#previewGeneratingText {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading-color);
}

@keyframes previewSpin {
  to {
    transform: rotate(360deg);
  }
}

.card-image-wrap {
  width: 100%;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 16px;
  user-select: none;
  -webkit-user-select: none;
}

.card-preview-canvas {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
  touch-action: none;
}

body.card-zoom-open {
  overflow: hidden;
}

.card-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(18, 14, 14, 0.84);
  backdrop-filter: blur(2px);
  padding: 18px;
  overflow: auto;
}

.card-zoom-dialog {
  position: relative;
  width: 96vw;
  margin: 0 auto;
  text-align: center;
}

.card-zoom-close-btn {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(20, 16, 16, 0.72);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.card-zoom-close-btn:hover {
  background: rgba(32, 23, 23, 0.9);
  border-color: rgba(255, 255, 255, 0.58);
}

.card-zoom-image-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  line-height: 0;
  user-select: none;
  -webkit-user-select: none;
}

.card-zoom-canvas {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: calc(100vh - 98px);
  margin: 0 auto;
  cursor: crosshair;
  touch-action: none;
}

.card-zoom-lens-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
  background: #fff;
  pointer-events: none;
  transform: translate(-50%, -50%);
  display: none;
}

.card-zoom-lens-canvas.is-visible {
  display: block;
}

.card-zoom-hint {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  letter-spacing: 0.15px;
}

.bingo-card-preview {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: relative;
}

.bingo-card-preview.mode-bw {
  filter: grayscale(1);
}

.card-top-text {
  text-align: center;
  padding: 14px 10px 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  padding: 0 10px;
}

.card-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.cell-number {
  background: var(--blush);
  border: 1px solid rgba(201, 123, 132, 0.2);
}

.cell-num {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
}

.cell-photo {
  background: #f0e8e5;
  border: 1px solid rgba(201, 123, 132, 0.15);
}

.cell-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cell-emoji {
  font-size: 1.5rem;
}

.card-bottom {
  text-align: center;
  padding: 8px 10px 6px;
}

.card-bottom-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1rem;
  color: var(--accent-color);
}

.card-date {
  display: block;
  font-family: var(--default-font);
  font-size: 0.75rem;
  color: #a89999;
  margin-top: 2px;
  padding-bottom: 10px;
}

/* Watermark overlay */
.card-watermark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.watermark-logo {
  width: 60%;
  opacity: 0.12;
  margin-bottom: 6px;
}

.watermark-text {
  font-family: var(--nav-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-color);
  opacity: 0.2;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Card actions */
.card-actions,
.preview-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.btn-regenerate,
.btn-order {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 50px;
  font-family: var(--default-font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-regenerate {
  background: #f5e6e0;
  color: var(--heading-color);
}

.btn-regenerate:hover {
  background: #ecd9d2;
}

.btn-order {
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: #fff;
  box-shadow: 0 2px 10px rgba(201, 123, 132, 0.3);
}

.btn-order:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201, 123, 132, 0.45);
}

.btn-save-session {
  background: #fff;
  color: var(--accent-color);
  border: 1px solid rgba(201, 123, 132, 0.34);
  box-shadow: 0 2px 10px rgba(201, 123, 132, 0.12);
}

.btn-save-session:hover {
  background: rgba(201, 123, 132, 0.1);
  color: var(--heading-color);
  box-shadow: 0 4px 14px rgba(201, 123, 132, 0.2);
}

.preview-actions .btn-save-session {
  flex: 0 0 auto;
  padding: 10px 14px;
  font-size: 0.78rem;
}

.save-session-modal {
  border: 1px solid rgba(201, 123, 132, 0.2);
  border-radius: 16px;
}

.save-session-modal .modal-header {
  border-bottom: 1px solid rgba(201, 123, 132, 0.16);
  padding: 14px 16px;
}

.save-session-modal-copy {
  margin: 0 0 12px;
  color: #6b5a5a;
  font-size: 0.95rem;
  line-height: 1.4;
}

.save-session-status {
  margin: 12px 2px 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #6b5a5a;
  min-height: 42px;
}

.save-session-status.is-success {
  color: #2f6b4f;
}

.save-session-status.is-error {
  color: #a94442;
}

.save-session-status.is-info {
  color: #6b5a5a;
}

.save-session-status-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: 600;
}

.order-comment-modal {
  border: 1px solid rgba(201, 123, 132, 0.2);
  border-radius: 16px;
}

.order-comment-modal .modal-header {
  border-bottom: 1px solid rgba(201, 123, 132, 0.16);
  padding: 14px 16px;
}

.order-comment-modal-copy {
  margin: 0 0 12px;
  color: #6b5a5a;
  font-size: 0.95rem;
  line-height: 1.45;
}

.order-comment-input {
  border: 1px solid #e0d6d2;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--default-font);
  resize: vertical;
}

.order-comment-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(201, 123, 132, 0.12);
}

.order-comment-hint {
  display: block;
  margin-top: 6px;
  color: #8a7a76;
  font-size: 0.8rem;
}

.order-comment-modal-footer {
  gap: 10px;
}

.photo-ai-source-modal {
  border: 1px solid rgba(201, 123, 132, 0.2);
  border-radius: 16px;
}

.photo-ai-source-modal .modal-header {
  border-bottom: 1px solid rgba(201, 123, 132, 0.16);
  padding: 14px 16px;
}

.photo-ai-source-copy {
  margin: 0;
  color: #6b5a5a;
  font-size: 0.95rem;
  line-height: 1.45;
}

.photo-ai-source-footer {
  gap: 10px;
  justify-content: flex-end;
}

/* Shared modal alert */
.ui-alert-modal-content {
  border: 1px solid rgba(201, 123, 132, 0.22);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(114, 47, 55, 0.22);
  overflow: hidden;
}

.ui-alert-modal .modal-header {
  border-bottom: 1px solid rgba(201, 123, 132, 0.18);
  padding: 14px 16px;
}

.ui-alert-modal .modal-body {
  padding: 18px 20px 10px;
}

.ui-alert-modal .modal-footer {
  border-top: 0;
  padding: 10px 20px 18px;
  justify-content: flex-end;
}

.ui-alert-modal-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ui-alert-modal-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-burgundy);
  background: rgba(201, 123, 132, 0.14);
  font-size: 0.95rem;
}

.ui-alert-modal .modal-title {
  margin: 0;
  color: var(--heading-color);
  font-size: 1.2rem;
  line-height: 1.2;
}

.ui-alert-modal-message {
  margin: 0;
  color: #5f5252;
  font-size: 0.96rem;
  line-height: 1.5;
  white-space: pre-line;
}

.ui-alert-modal-btn {
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: #fff;
  font-family: var(--default-font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 18px;
  box-shadow: 0 2px 10px rgba(201, 123, 132, 0.25);
}

.ui-alert-modal-btn:hover,
.ui-alert-modal-btn:focus-visible {
  color: #fff;
  box-shadow: 0 5px 16px rgba(201, 123, 132, 0.35);
}

/* --- Theme variations for bingo card --- */

/* Rústico */
.theme-rustico {
  background: #faf5f0;
  border: 2px solid #d4b896;
}

.theme-rustico .card-top-text {
  font-family: 'Playfair Display', serif;
  color: #5c4033;
}

.theme-rustico .cell-number {
  background: #f0e6d8;
  border-color: #d4b896;
}

.theme-rustico .cell-num {
  color: #5c4033;
}

.theme-rustico .card-bottom-text {
  color: #8b6f47;
}

/* Elegante */
.theme-elegante {
  background: #fffdf8;
  border: 2px solid #c9a84c;
}

.theme-elegante .card-top-text {
  font-family: 'Cormorant Garamond', serif;
  color: #2d2424;
  letter-spacing: 3px;
}

.theme-elegante .cell-number {
  background: #fdf5e6;
  border-color: #c9a84c;
}

.theme-elegante .cell-num {
  color: #2d2424;
}

.theme-elegante .card-bottom-text {
  color: #c9a84c;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* Boho */
.theme-boho {
  background: #fef9f5;
  border: 2px solid #d4a574;
}

.theme-boho .card-top-text {
  font-family: 'Caveat', cursive;
  color: #7a5c3c;
  font-size: 1.4rem;
}

.theme-boho .cell-number {
  background: #fce8d5;
  border-color: #d4a574;
  border-radius: 50%;
}

.theme-boho .cell-num {
  color: #7a5c3c;
}

.theme-boho .card-bottom-text {
  color: #d4a574;
}

/* Moderno */
.theme-moderno {
  background: #ffffff;
  border: 2px solid #333;
}

.theme-moderno .card-top-text {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  letter-spacing: 4px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.theme-moderno .cell-number {
  background: #f4f4f4;
  border-color: #ddd;
  border-radius: 0;
}

.theme-moderno .cell-num {
  font-family: 'Montserrat', sans-serif;
  color: #111;
}

.theme-moderno .card-bottom-text {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  font-size: 0.85rem;
}

/* Divertido */
.theme-divertido {
  background: #fff5f8;
  border: 3px solid var(--accent-color);
  border-style: dashed;
}

.theme-divertido .card-top-text {
  font-family: 'Caveat', cursive;
  color: var(--rose-gold);
  font-size: 1.5rem;
}

.theme-divertido .cell-number {
  background: #fce4ec;
  border-color: var(--accent-color);
  border-radius: 50%;
}

.theme-divertido .cell-num {
  color: var(--rose-gold);
  font-weight: 800;
}

.theme-divertido .card-bottom-text {
  color: var(--accent-color);
  font-size: 1.1rem;
}

/* Romántico */
.theme-romantico {
  background: linear-gradient(180deg, #fff5f7, #fdf0f2);
  border: 2px solid #e0aaaf;
}

.theme-romantico .card-top-text {
  font-family: 'Dancing Script', cursive;
  color: var(--rose-gold);
  font-size: 1.4rem;
}

.theme-romantico .cell-number {
  background: rgba(183, 110, 121, 0.08);
  border-color: #e0aaaf;
}

.theme-romantico .cell-num {
  color: var(--rose-gold);
}

.theme-romantico .card-bottom-text {
  color: var(--rose-gold);
}

/* Clásico */
.theme-clasico {
  background: #f6f6f6;
  border: 2px solid #525252;
}

.theme-clasico .card-top-text {
  font-family: 'Cormorant Garamond', serif;
  color: #222;
  letter-spacing: 2px;
}

.theme-clasico .cell-number {
  background: #ffffff;
  border-color: #6d6d6d;
}

.theme-clasico .cell-num {
  color: #1f1f1f;
}

.theme-clasico .card-bottom-text {
  color: #444;
  font-family: 'Cormorant Garamond', serif;
}

/* Petfriendly */
.theme-petfriendly {
  background: #f3f3f3;
  border: 3px solid #5f5f5f;
  border-style: dashed;
}

.theme-petfriendly .card-top-text {
  font-family: 'Montserrat', sans-serif;
  color: #222;
  font-weight: 800;
}

.theme-petfriendly .cell-number {
  background: #ffffff;
  border-color: #717171;
  border-radius: 10px;
}

.theme-petfriendly .cell-num {
  color: #222;
  font-family: 'Montserrat', sans-serif;
}

.theme-petfriendly .card-bottom-text {
  color: #444;
  font-family: 'Montserrat', sans-serif;
}

/* Sci-Fi */
.theme-sci-fi {
  background: #ffffff;
  border: 2px solid #1a1a1a;
}

.theme-sci-fi .card-top-text {
  font-family: 'Montserrat', sans-serif;
  color: #101010;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.theme-sci-fi .cell-number {
  background: #fbfbfb;
  border-color: #cbcbcb;
  border-radius: 0;
}

.theme-sci-fi .cell-num {
  color: #111;
  font-family: 'Montserrat', sans-serif;
}

.theme-sci-fi .card-bottom-text {
  color: #303030;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

/* Mini CTA section */
.configurador-cta {
  background: linear-gradient(135deg, #fffbf7, #f5e6e0);
  padding: 60px 0;
}

.configurador-cta .section-title h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--heading-color);
}

/* Contact form inside configurador */
.config-contact-form .form-control {
  border: 1px solid #e0d6d2;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--default-font);
}

.config-contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(201, 123, 132, 0.1);
}

.config-contact-form .btn-submit {
  background: linear-gradient(135deg, var(--accent-color), var(--rose-gold));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.config-contact-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(201, 123, 132, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
  body.configurador-page #header .container-fluid {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    overflow-x: clip;
  }

  body.configurador-page .container {
    max-width: 100%;
    overflow-x: clip;
  }

  body.configurador-page .row {
    --bs-gutter-x: 1rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.configurador-page .row > * {
    min-width: 0;
  }

  .configurador-main-row {
    --bs-gutter-y: 0.75rem;
    overflow-x: clip;
    margin-left: 0;
    margin-right: 0;
  }

  .configurador-main-row > [class*="col-"] {
    min-width: 0;
  }

  .configurador-main-row .configurator-config-col,
  .configurador-main-row .configurator-preview-col {
    margin-top: 0;
  }

  .configurador-main-row .configurator-preview-col {
    margin-top: 12px;
  }

  .preview-panel {
    position: static;
    margin-top: 0;
  }

  .configurador-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .style-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-uploads {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 10px;
  }

  .photo-upload-item {
    width: auto;
    min-width: 0;
  }

  .photo-customizer-layout {
    grid-template-columns: 1fr;
  }

  .photo-customizer-footer {
    justify-content: stretch;
  }

  .photo-customizer-footer .photo-modal-btn {
    flex: 1;
    justify-content: center;
  }

  .photo-ai-source-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .photo-ai-source-footer .photo-modal-btn {
    width: 100%;
    justify-content: center;
  }

  .photo-customizer-preview-panel {
    min-height: 280px;
  }

  .photo-crop-toolbar {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 9px 10px;
  }

  .photo-crop-actions {
    width: 100%;
    justify-content: stretch;
  }

  .photo-crop-btn {
    flex: 1;
    padding: 7px 9px;
  }

  .photo-manual-action {
    grid-template-columns: minmax(0, 1fr) var(--photo-manual-btn-width);
  }

  .photo-manual-filter-controls {
    grid-template-columns: minmax(0, 1fr) 34px;
  }

  .photo-frame-shape-toggle {
    grid-template-columns: 1fr;
  }

  .card-zoom-overlay {
    padding: 10px;
  }

  .card-zoom-canvas {
    max-height: calc(100vh - 74px);
  }

  .card-zoom-lens-canvas {
    width: 130px;
    height: 130px;
  }

  .card-actions,
  .preview-actions {
    flex-direction: column;
  }

  .configurador-hero h1 {
    font-size: 1.8rem;
  }

  .ui-alert-modal .modal-dialog {
    margin: 12px;
  }

  .cell-num {
    font-size: 1rem;
  }

  .card-top-text {
    font-size: 1rem;
  }
}
