:root {
    --gold: #D4AF37;
    --gold-light: #E8CC6A;
    --gold-pale: #F5EFC7;
    --eucalyptus: #556B2F;
    --eucalyptus-light: #7A9645;
    --eucalyptus-pale: #E8F0D8;
    --cream: #FAF8F3;
    --offwhite: #F6F3ED;
    --warm-white: #FFFDF8;
    --ink: #1A1714;
    --ink-soft: #3D3630;
    --muted: #8B7D6B;
    --border: rgba(212,175,55,0.2);
    --shadow-gold: 0 4px 32px rgba(212,175,55,0.18);
    --shadow-soft: 0 8px 40px rgba(26,23,20,0.08);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ——— FADE IN OBSERVER ——— */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ——— NAV ——— */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250,248,243,0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    color: var(--ink);
  }
  .nav-logo span { color: var(--gold); }
  .nav-cta {
    background: var(--gold);
    color: var(--ink);
    padding: 10px 22px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ——— HERO ——— */
  .hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 6vw 80px;
    position: relative;
    overflow: hidden;
    background: var(--warm-white);
  }
  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(circle at 15% 25%, rgba(212,175,55,0.07) 0%, transparent 50%),
      radial-gradient(circle at 85% 75%, rgba(85,107,47,0.06) 0%, transparent 50%),
      url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }


  .hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.22; /* Sutil, no interfiere con el texto */
  }



  .hero-inner {
    text-align: center;
    max-width: 720px;
    position: relative;
    z-index: 1;
  }
  .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--eucalyptus);
    background: var(--eucalyptus-pale);
    border: 1px solid rgba(85,107,47,0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
  }
  .hero-kicker::before { content: '✦'; color: var(--gold); font-size: 0.6rem; }
  .hero-kicker::after  { content: '✦'; color: var(--gold); font-size: 0.6rem; }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 7vw, 4.2rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 48px;
    font-weight: 300;
    line-height: 1.65;
  }
  .hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
  @media (max-width: 480px) {
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
    .hero h1 {
      font-size: clamp(2.8rem, 8vw, 3.5rem);
    }
  }
  .btn-primary {
    background: var(--gold);
    color: var(--ink);
    padding: 16px 36px;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(212,175,55,0.3);
  }
  .btn-primary:hover { background: transparent; color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,175,55,0.25); }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    padding: 16px 36px;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    border: 2px solid rgba(26,23,20,0.18);
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
  .hero-scroll {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s infinite;
  }
  @keyframes scrollLine { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(0.6)} }

  /* ——— SECTIONS COMMON ——— */
  section { padding: 30px 5vw; }
  .section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 5vw, 2.9rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 520px;
    font-weight: 300;
  }
  .section-header { margin-bottom: 28px; }

  /* ——— WHY DIGITAL ——— */
  #por-que { background: var(--offwhite); }
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 16px;
  }
  @media(max-width: 1200px) {
    .cards-grid {
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
  }
  .card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 24px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--eucalyptus));
    opacity: 0;
    transition: opacity 0.3s;
  }
  .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
  .card:hover::before { opacity: 1; }
  .card-icon {
    width: 48px; height: 48px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
  }
  .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  .card-header .card-icon {
    margin-bottom: 0;
  }
  .card-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
  .card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0;
  }
  .card p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

  /* ——— PLAN ——— */
  #plan { background: var(--ink); margin-bottom: 20px; }
  #plan .section-label { color: var(--gold-light); }
  #plan .section-title { color: #F5EFC7; }
  #plan .section-sub { color: rgba(245,239,199,0.55); }
  .plan-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
  }
  @media(max-width:768px){ 
    .plan-wrapper { 
      grid-template-columns: 1fr; 
      gap: 24px;
    } 
  }
  .plan-features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .plan-card {
    background: linear-gradient(145deg, rgba(212,175,55,0.1), rgba(85,107,47,0.08));
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 4px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
  }
  .plan-card::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .plan-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 28px;
  }
  .plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #F5EFC7;
    margin-bottom: 8px;
    font-style: italic;
  }
  .plan-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 32px; }
  .plan-currency { font-size: 1.2rem; color: var(--gold); font-weight: 500; }
  .plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
  }
  .plan-period { font-size: 0.85rem; color: rgba(245,239,199,0.5); }
  .plan-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gold);
    color: var(--ink);
    padding: 16px;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 24px;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(212,175,55,0.35);
  }
  .plan-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
  .plan-features { list-style: none; }
  .plan-features li {
    color: rgba(245,239,199,0.8);
    font-size: 0.92rem;
    padding: 4px 0; /* Reducido de 12px a 8px */
    border-bottom: 1px solid rgba(212,175,55,0.1);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .plan-features li:last-child { border-bottom: none; }
  .check-icon { flex-shrink:0; color: var(--gold); margin-top:3px; }
  .feature-item { cursor: pointer; flex-direction: column; }
  .feature-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .feature-icon { flex-shrink:0; color: var(--gold); margin-top:3px; transition: transform 0.3s ease; }
  .feature-item.active .feature-icon { transform: rotate(180deg); }
  .feature-text { flex: 1; }
  .feature-details {
    margin-bottom: 8px;
    padding-left: 26px;
    font-size: 0.85rem;
    color: rgba(245,239,199,0.6);
    line-height: 1.5;
  }
  .plan-features-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: rgba(245,239,199,0.6);
    font-style: italic;
    margin-bottom: 10px;
    font-weight: 400;
  }

  /* ——— GALLERY ——— */
  #galeria { background: var(--warm-white); }
  .carousel-section {
    margin-bottom: 48px;
  }
  .carousel-header {
    text-align: center;
    margin-bottom: 24px;
  }
  .carousel-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .carousel-subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
  }
  .carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }
  @media (max-width: 768px) {
    .carousel-container {
      overflow: visible;
    }
  }
  .carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .carousel-item {
    min-width: 280px;
    margin-right: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
  }
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--ink);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
  }
  @media (max-width: 768px) {
    .carousel-nav {
      display: none;
    }
  }
  .carousel-nav:hover {
    background: var(--gold-light);
    transform: translateY(-50%) scale(1.1);
  }
  .carousel-prev {
    left: 10px;
  }
  .carousel-next {
    right: 10px;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
  .gallery-item {
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    background: var(--offwhite);
  }
  .gallery-item:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-gold); }
  .gallery-mock {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 32px 24px;
    text-align: center;
    position: relative;
  }
  .gallery-mock-boda { background: linear-gradient(160deg, #FAF5EB 0%, #F0E6D3 100%); }
  .gallery-mock-quinces { background: linear-gradient(160deg, #FBF0F8 0%, #EDD5E8 100%); }
  .gallery-mock-bautismo { background: linear-gradient(160deg, #EEF5F0 0%, #D5E8DC 100%); }
  .gallery-mock-ornament {
    font-size: 2.8rem;
    margin-bottom: 16px;
    opacity: 0.7;
  }
  .gallery-mock-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--ink-soft);
    margin-bottom: 6px;
  }
  .gallery-mock-date { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
  .gallery-mock-line { width: 40px; height: 1px; background: var(--gold); margin: 14px auto; }
  .gallery-mock-detail { font-size: 0.8rem; color: var(--muted); }
  .gallery-label {
    position: absolute;
    bottom: 16px; left: 50%; transform: translateX(-50%);
    background: rgba(26,23,20,0.8);
    color: #F5EFC7;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    white-space: nowrap;
    backdrop-filter: blur(8px);
  }

  /* ——— STEPS ——— */
  #pasos { background: var(--ink); padding: 100px 5vw; }
  #pasos .section-label { color: var(--gold-light); }
  #pasos .section-title { color: #F5EFC7; }
  #pasos .section-sub { color: rgba(245,239,199,0.55); }
  .steps-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    counter-reset: step;
  }
  .step {
    flex: 1;
    min-width: 200px;
    padding: 0 32px 0 0;
    position: relative;
  }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px; right: 0;
    width: calc(100% - 64px);
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    left: 64px;
    display: none;
  }
  @media(max-width: 600px) {
    .step:not(:last-child)::after {
      display: block;
    }
  }
  .step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
  }
  .step-number {
    width: 56px; height: 56px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0;
    font-weight: 500;
  }
  .step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #F5EFC7;
    margin-bottom: 0;
  }
  .step p { font-size: 0.9rem; color: rgba(245,239,199,0.6); }
  @media(max-width:600px){
    .steps-row { flex-direction: column; gap: 32px; }
    .step:not(:last-child)::after { display:none; }
  }

  /* ——— FAQ ——— */
  #faq { background: var(--warm-white); }
  #faq .section-title { font-family: 'Inter', sans-serif !important; }
  .faq-grid { max-width: 680px; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-q {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
  }
  .faq-q .faq-icon { flex-shrink: 0; transition: transform 0.3s; color: var(--gold); }
  .faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-top: 16px; }

  /* ——— FOOTER ——— */
  footer {
    background: var(--ink);
    padding: 48px 6vw;
    color: rgba(245,239,199,0.5);
    font-size: 0.85rem;
  }
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold-pale);
  }
  .footer-logo span { color: var(--gold); }
  .footer-tagline { font-size: 0.8rem; color: rgba(245,239,199,0.35); margin-top: 4px; font-style: italic; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a {
    color: rgba(245,239,199,0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }
  .social-links { display: flex; gap: 16px; }
  .social-link {
    width: 38px; height: 38px;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: all 0.25s;
    color: rgba(245,239,199,0.6);
  }
  .social-link:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
  .social-link svg { width: 16px; height: 16px; fill: currentColor; }
  .footer-copy { width: 100%; padding-top: 24px; border-top: 1px solid rgba(212,175,55,0.12); font-size: 0.76rem; color: rgba(245,239,199,0.25); }

  /* ——— WHATSAPP FLOAT ——— */
  .wa-float {
    position: fixed;
    bottom: 28px; right: 24px;
    z-index: 200;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: waPulse 3s infinite;
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
  @keyframes waPulse {
    0%,100%{ box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50%{ box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 8px rgba(37,211,102,0.1); }
  }
  .wa-float svg { width: 28px; height: 28px; fill: white; }

  /* DIVIDER */
  .divider { display: flex; align-items: center; gap: 16px; margin: 0 auto 48px; max-width: 180px; }
  .divider-line { flex: 1; height: 1px; background: var(--border); }
  .divider-ornament { color: var(--gold); font-size: 0.9rem; }

  /* TEMPLATE PREVIEW CARDS */
  .template-preview-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
  }
  .template-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
  }
  .template-preview-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--ink);
    text-decoration: none;
    text-align: center;
  }
  .template-preview-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 12px;
    background: var(--offwhite);
  }
  .template-preview-placeholder {
    display: none;
    width: 100%;
    height: 300px;
    background: var(--offwhite);
    border-radius: 4px;
    margin-bottom: 12px;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.85rem;
    border: 1px dashed var(--border);
  }
  .template-preview-button {
    background: var(--gold);
    color: var(--ink);
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: block;
    margin: 0 auto;
    width: fit-content;
    transition: all 0.25s;
  }
  .template-preview-button:hover {
    background: var(--gold-light);
    transform: scale(1.02);
  }
