/* GDM_VERSION_4.0_20260401_1813 */
@font-face {
  font-family: 'Qrada';
  src: url('Qrada.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Colors - Andean Modernism Palette */
  --bg-primary: #0c1514;
  --bg-secondary: #141d1c;
  --surface: #182120;
  --surface-low: #141d1c;
  --surface-high: #232c2b;

  --primary: #e2c381;
  /* Gold leaf */
  --primary-container: #1b1200;
  --secondary: #B86830;
  /* Andean Orange */
  --on-surface: #dbe5e2;
  --on-surface-variant: #c3c7c6;

  --glass-bg: rgba(12, 21, 20, 0.85);
  --glass-border: rgba(226, 195, 129, 0.15);

  /* Typography */
  --font-headline: 'Newsreader', serif;
  --font-qrada: 'Qrada', 'Newsreader', serif;
  --font-body: 'Manrope', sans-serif;

  /* Spacing Scale */
  --space-unit: 1rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
}

/* Base resets */
* {
  margin: 0;
  padding: 0;
	max-width: 100%;
  box-sizing: border-box;
  border-radius: 0 !important;
  /* Strict 0px rule */
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Sticky Header Scroll Offset for Internal Anchor Links */
[id],
section[id],
.atelier-card[id] {
  scroll-margin-top: 95px;
}

@media (max-width: 1024px) {
  [id],
  section[id],
  .atelier-card[id] {
    scroll-margin-top: 85px;
  }
}

@media (max-width: 768px) {
  [id],
  section[id],
  .atelier-card[id] {
    scroll-margin-top: 80px;
  }
}

html, body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--on-surface);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: url('imagenes/fondo-garcia-azul.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.subtle-bg {
  background: transparent;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
.headline {
  font-family: var(--font-headline);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--primary);
  line-height: 1.3;
}

.footer-social-btns a:hover {
  color: var(--primary);
  opacity: 1;
}

/* Newsletter and WhatsApp Float Styles */
.newsletter-form input:focus {
  border-color: #B86830 !important;
}

.whatsapp-float {
  position: fixed;
  width: 55px !important;
  height: 55px !important;
  aspect-ratio: 1 / 1 !important;
  bottom: 20px;
  right: 20px;
  background-color: #284139 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 2000;
  transition: transform 0.3s, background-color 0.3s;
  padding: 0 !important;
  overflow: hidden;
}

.whatsapp-float svg {
  width: 30px !important;
  height: 30px !important;
  fill: #ffffff !important;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #B86830 !important;
}

@media (min-width: 1025px) {
  .whatsapp-float {
    width: 68px !important;
    height: 68px !important;
    bottom: 30px !important;
    right: 30px !important;
  }
  .whatsapp-float svg {
    width: 38px !important;
    height: 38px !important;
  }
}

/* Use Qrada only for major titles without numbers */
.hero-title,
.section-title,
.h-qrada {
  font-family: var(--font-qrada);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
}

.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem) !important;
  /* Reduced from previous, 70% of original big size was ~4rem */
  line-height: 1.3 !important;
  margin-bottom: 2.5rem;
  font-weight: 200 !important;
  color: var(--primary);
}

.section-title {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  /* Smaller */
  line-height: 1.5;
  margin-bottom: 2rem;
}

.logo-composite {
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  border-left: 1px solid var(--secondary);
  border-width: 1px;
}

.brand-logo {
  font-family: var(--font-qrada);
  font-weight: 300;
}

.italic {
  font-style: italic;
}

.text-gold {
  color: var(--primary);
}

.text-orange {
  color: var(--secondary);
}

.text-variant {
  color: var(--on-surface-variant);
}

/* Layout Components */
.section {
  padding: 3rem var(--space-md);
  position: relative;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

/* Glassmorphism */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

/* Premium Announcement Bar */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #B86830;
  border-top: 1px solid #000000;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  z-index: 2100;
  text-transform: uppercase;
  text-align: center;
  padding: 0 1rem;
}
.announcement-bar a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.announcement-bar a:hover {
  text-decoration: none;
  opacity: 0.9;
}
.announcement-bar .mobile-text {
  display: none;
}
.announcement-bar .desktop-text {
  display: inline;
}
@media (max-width: 768px) {
  .announcement-bar .desktop-text {
    display: none !important;
  }
  .announcement-bar .mobile-text {
    display: inline !important;
  }
}

/* Premium Header */
header {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  padding: 1rem 3rem;
  z-index: 2000; /* Higher priority */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: rgba(12, 21, 20, 0.4);
  backdrop-filter: blur(10px);
}

header.scrolled {
  background: rgba(12, 21, 20, 0.9);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
  header.scrolled {
    padding: 1rem 1.5rem;
    /* Unify mobile padding */
  }
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-accent {
  width: 2px;
  height: 2.5rem;
  background: var(--primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text span {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  text-transform: capitalize;
}

nav > ul {
  display: flex;
  list-style: none;
  align-items: center;
}

nav > ul > li {
  display: flex;
  align-items: center;
}

nav > ul > li > a {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.85;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  transition: opacity 0.3s ease, color 0.3s ease;
  padding: 0 0.75rem;
  white-space: nowrap;
}

nav > ul > li:not(:last-child):not(.mobile-only-nav-item):not(:nth-last-child(3))::after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: var(--secondary);
  opacity: 1;
}

nav a:hover,
nav a.active {
  opacity: 1;
  color: #ffffff;
}

/* Dropdown Menu Styles */
nav li {
  position: relative;
}

nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 0;
  display: none;
  min-width: max-content;
  z-index: 2500;
  list-style: none;
  text-align: left;
}

nav .dropdown-menu li {
  width: 100%;
  display: block;
}

nav .dropdown-menu a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.7rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

nav .dropdown-menu a:hover {
  opacity: 1;
  background-color: var(--surface-high);
  color: #ffffff;
  text-decoration: none;
}

nav li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
  z-index: 1;
  display: block;
  max-width: none !important;
}



.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: var(--on-surface-variant);
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.25rem 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #B86830;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #cc7d49;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(184, 104, 48, 0.5);
  color: #ffffff;
}

.btn-outline:hover {
  border-color: #B86830;
  background: #B86830;
  color: #ffffff;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Components */
.atelier-card {
  background: var(--surface-low);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.atelier-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1s ease;
}

.atelier-card:hover img {
  transform: scale(1.05);
}

.mobile-toggle {
  display: none;
}

/* Textures */
.textured-bg {
  background-image: none;
  background-size: 200px;
  background-blend-mode: overlay;
  background-attachment: fixed;
  opacity: 0.15;
}

.paper-overlay {
  position: relative;
}

.paper-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: 200px;
  background-position: center;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 10;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr !important;
    height: auto !important;
    gap: 3rem !important;
  }

  .atelier-card {
    grid-row: auto !important;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 1rem !important; /* Reduced side padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem !important; /* Tightened gap */
    width: 100%;
  }

  .logo-composite {
    padding-left: 0.8rem !important; /* Heavily reduced from 1.5rem */
    border-left-width: 1px;
    flex-shrink: 1;
    min-width: 0;
  }

  .brand-logo {
    font-size: 1.1rem !important;
    line-height: 1.0 !important;
  }

  .brand-logo span {
    font-size: 0.9rem !important; /* Larger for readability */
  }

  .logo-container {
    flex-shrink: 0;
    order: 1;
  }

  .logo-container img {
    margin-right: 0.5rem !important;
  }

  .logo-text span {
    font-size: 1rem;
  }

  .header-actions {
    display: flex !important; 
    order: 2;
    gap: 0.5rem !important;
  }

  .header-actions .btn {
    padding: 0.55rem 0.8rem !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.02em !important;
    flex-shrink: 0;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    z-index: 3000; /* Above everything - fix for missing hamburger */
    order: 3;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-right: -0.2rem;
  }

  .mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(12, 21, 20, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 40px;
    overflow-y: auto;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001; /* Between header and toggle */
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  nav.active {
    right: 0;
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }

  nav ul {
    flex-direction: column;
    text-align: center;
    gap: 1.4rem; /* Reduced to fit buttons */
  }

  nav > ul > li {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  nav ul > li::after {
    content: none !important;
  }

  nav a {
    font-size: 1.15rem; /* Reduced from 1.5rem for better space */
  }

  nav .dropdown-menu {
    position: static !important;
    display: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    min-width: 0 !important;
    margin-top: 0.2rem !important;
    transform: none !important;
  }
  nav .dropdown.open > .dropdown-menu {
    display: block !important;
  }
  nav .dropdown-menu li {
    display: block !important;
    text-align: center !important;
  }
  nav .dropdown-menu li::after {
    content: none !important;
  }
  nav .dropdown-menu a {
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    white-space: normal !important;
  }
  nav .dropdown-menu a:hover {
    opacity: 1;
    background: transparent;
  }

  .hero {
    height: auto !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    padding-top: 100px !important; 
    padding-bottom: 60px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    /* No overflow: hidden here anymore */
  }

  .hero h1 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    margin-top: 1.5rem !important; 
    line-height: 1.2 !important;
  }
  
  .hero p {
    font-size: 0.95rem !important;
    margin-bottom: 2rem !important;
  }

  .experience-accent-mobile {
    right: 0 !important;
    bottom: 0 !important;
    width: 60px !important;
    height: 60px !important;
    padding: 1rem !important;
  }
}

/* Desktop Hero Buttons layout - force single line on larger screens */
.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: nowrap;
}

.hero-btns .btn {
  white-space: nowrap;
  padding: 1.2rem 2.2rem;
  width: auto;
}

@media (max-width: 768px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 1rem !important;
    margin-top: 1rem !important;
  }
  
  .hero-btns .btn {
    width: 100% !important;
    max-width: 300px !important;
    padding: 1rem 1.5rem !important;
  }
}

.about-content {
  padding-right: 4rem;
}

.about-content h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.seasonal-section {
  background: transparent;
}

.footer {
  padding: 6rem 3rem 3rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--glass-border);
}

.footer-logo {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.mobile-only-nav-item {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-only-nav-item {
    display: block !important;
  }
}

/* Contact Section Refinements */
.contact-card {
  background: rgba(12, 21, 20, 0.85);
  backdrop-filter: blur(16px);
  padding: 5rem 3rem;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.contact-info-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.info-item {
  text-align: center;
}

.info-text {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.info-subtext {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}

.info-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

@media (max-width: 768px) {
  .contact-card {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
  }

  .contact-info-strip {
    flex-direction: column !important;
    /* Stack one below the other */
    gap: 4rem !important;
  }

  .info-text {
    font-size: 1.8rem !important;
    /* Back to original large size */
    white-space: normal !important;
  }

  .info-subtext {
    font-size: 0.6rem !important;
    letter-spacing: 0.3em !important;
  }

  .info-divider {
    display: none !important;
  }

  #ubicacion {
    padding: 4rem 1.5rem !important;
  }

  .footer {
    padding: 3rem 1.5rem 1.5rem !important; /* Reduced bottom space substantially */
  }

  .footer .container.grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 4rem !important;
  }

  .footer .container.grid > div {
    display: block !important;
    text-align: center !important;
  }

  .footer .container.grid > div:nth-child(2) {
    display: flex !important;
    flex-direction: column !important;
    gap: 3rem !important;
  }

  .footer ul {
    justify-content: center !important;
    padding-left: 0 !important;
  }

  /* Specific section overrides for mobile padding */
  #experiencia {
    padding: 4rem 1.5rem 0 !important;
  }

  .section {
    padding: 3rem 1.5rem !important;
  }

  .guarda-lineal {
    height: 80px !important; /* Reduce en móvil para permitir que Título y Línea quepan */
    width: auto !important;
    max-width: 150px !important;
  }
}

/* Responsive adjustments for mid-size desktop screens (preventing menu compression) */
@media (min-width: 1025px) and (max-width: 1400px) {
  header {
    padding: 1rem 1.5rem !important;
  }

  nav {
    margin-left: 2.5rem !important;
  }

  nav > ul > li > a {
    padding: 0 0.55rem !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.14em !important;
  }
}

/* Mobile background override to prevent stretching and blurriness */
@media (max-width: 1024px) {
  body {
    background-repeat: repeat !important;
    background-size: 600px auto !important;
    background-attachment: scroll !important;
  }
}

/* Footer Menu & Columns alignments */
.footer-menu {
  text-align: left;
}

@media (max-width: 768px) {
  .footer-menu {
    text-align: center !important;
  }
  .footer-columns,
  .footer .container.grid > .footer-columns {
    display: flex !important;
    flex-direction: column !important;
    gap: 3rem !important;
    align-items: center !important;
  }
  .footer-social {
    text-align: center !important;
  }
  .footer-social ul {
    justify-content: center !important;
  }
}

/* Sol Inca Footer Logo - inline with logo */
.footer {
  padding: 6rem 3rem 3rem !important;
}

.footer-logo-icon {
  margin: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-logo-icon img {
  width: 80px;
  height: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1) !important;
}

@media (max-width: 768px) {
  .footer {
    padding: 4rem 1.5rem 1.5rem !important;
  }
  .footer-logo-icon img {
    width: 48px !important;
    filter: brightness(0) invert(1) !important;
  }
  .footer-brand-logo-wrapper {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
  }
  .footer-payments-wrapper {
    width: 100% !important;
    margin: 0 auto !important;
    justify-content: center !important;
  }
}

/* Newsletter Section Responsive Layout */
.newsletter-header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.newsletter-header-container h2 {
  margin-bottom: 0 !important;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem) !important;
  white-space: nowrap;
}

.newsletter-header-container p {
  margin-bottom: 0 !important;
}

.newsletter-header-container .header-divider {
  display: none;
}

/* Global responsive utility */
.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-only {
    display: inline !important;
  }

  /* Reduce dead space above "Destacados García" */
  #experiencia {
    padding-bottom: 0 !important;
  }
  #novedades {
    padding-top: 0 !important;
  }

  /* Novedades Grid Mobile Stacked Layout (Taller height so images & text breathe) */
  .novedades-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .novedades-grid > .atelier-card,
  .promo-carousel-card {
    width: 100% !important;
    min-height: 520px !important;
    height: 520px !important;
  }

  /* Reduce gap between address and phone */
  .contact-info-strip {
    gap: 0.5rem !important;
  }

  /* Reduce gap between horarios, increase font sizes */
  .horarios-flex {
    gap: 0.75rem !important;
  }
  .horario-title {
    font-size: 1.05rem !important;
  }
  .horario-detail {
    font-size: 0.9rem !important;
  }

  /* Allow Beneficios Exclusivos title to wrap on mobile */
  .newsletter-header-container h2 {
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.4 !important;
  }
}

/* Novedades Grid Desktop Layout */
.novedades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* ==========================================================================
   Promo Carousel Card (Delivery & Take Away)
   ========================================================================== */
.promo-carousel-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 100%;
  aspect-ratio: 4/5;
}

.promo-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.promo-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.promo-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  z-index: 1;
}

.promo-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem 1.5rem 2.6rem 1.5rem;
  background: linear-gradient(to top, rgba(12,21,20,0.98) 28%, rgba(12,21,20,0.6) 50%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  box-sizing: border-box;
}

/* Dots indicator (Square / Rectangular style at bottom) */
.promo-dots-indicator {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-dot.active {
  background: var(--primary);
  width: 20px;
}

