/* ==========================================================================
   THEMATIC CSS VARIABLES & STYLESHEET FOR OJO SANO (CHILE)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Poppins:wght@300;400;600&display=swap');

:root {
  /* Thematic Eye Wellness Color Palette - Light Theme */
  --vis-eye-bg: #f5fcf9;          /* Fresh mint-tinted neutral background */
  --vis-eye-surface: #ffffff;     /* Clean white for content elements */
  --vis-eye-iris: #10b981;        /* Focus Mint Green */
  --vis-eye-iris-hover: #059669;  /* Darker Mint Green */
  --vis-eye-lens: #06b6d4;        /* Cyan Light Ray */
  --vis-eye-text: #0f172a;        /* Deep Slate for high legibility */
  --vis-eye-muted: #475569;       /* Muted Slate for secondary text */
  --vis-eye-accent: #f59e0b;      /* Warm golden yellow for light/focus hints */
  
  --vis-eye-gradient: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  --vis-eye-gradient-soft: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  
  /* Fonts */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Layout Metrics (Compact-Normal Scale) */
  --vis-scale-pad: 10dvh;
  --vis-radius-soft: 16px;
  
  /* Shadow depth: Raised styling */
  --vis-shadow-raised: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 8px 15px -6px rgba(15, 23, 42, 0.04);
  --vis-shadow-hover: 0 20px 35px -5px rgba(15, 23, 42, 0.12), 0 12px 20px -8px rgba(15, 23, 42, 0.06);
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--vis-eye-text);
  background-color: var(--vis-eye-bg);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vis-eye-text);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (CSS-ONLY)
   ========================================================================== */

@keyframes vis-slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .vis-reveal-active {
    animation: vis-slide-up 0.8s linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.vis-main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  box-shadow: var(--vis-shadow-raised);
}

@keyframes progress-grow {
  to { width: 100%; }
}

.vis-header-progress {
  height: 4px;
  width: 0;
  background: var(--vis-eye-gradient);
  position: absolute;
  bottom: 0;
  left: 0;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

.vis-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vis-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--vis-eye-iris);
  text-transform: uppercase;
}

.vis-logo-svg {
  color: var(--vis-eye-iris);
}

.vis-nav-toggler {
  display: none;
}

.vis-nav-trigger {
  display: none;
}

.vis-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vis-nav-item {
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--vis-eye-muted);
  position: relative;
  padding: 0.5rem 0;
}

.vis-nav-item:hover,
.vis-nav-item.active {
  color: var(--vis-eye-iris);
}

.vis-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vis-eye-iris);
  transition: width 0.25s ease;
}

.vis-nav-item:hover::after,
.vis-nav-item.active::after {
  width: 100%;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .vis-nav-trigger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .vis-nav-trigger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--vis-eye-text);
    transition: all 0.3s ease;
  }
  
  .vis-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--vis-eye-surface);
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .vis-nav-toggler:checked ~ .vis-nav-menu {
    right: 0;
  }
  
  .vis-nav-toggler:checked ~ .vis-nav-trigger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .vis-nav-toggler:checked ~ .vis-nav-trigger span:nth-child(2) {
    opacity: 0;
  }
  
  .vis-nav-toggler:checked ~ .vis-nav-trigger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ==========================================================================
   HERO AREA
   ========================================================================== */

.vis-billboard-zone {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vis-billboard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}

.vis-billboard-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

.vis-billboard-lead {
  max-width: 750px;
}

.vis-billboard-lead h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.vis-billboard-lead p {
  color: #cbd5e1;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.vis-trigger-link {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--vis-eye-gradient);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease;
}

.vis-trigger-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

/* ==========================================================================
   BENTO GRID FEATURES
   ========================================================================== */

.vis-segment-block {
  padding: var(--vis-scale-pad) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vis-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.vis-section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--vis-eye-text);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.vis-section-header p {
  color: var(--vis-eye-muted);
  font-size: 1.1rem;
}

.vis-bento-mesh {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.vis-bento-tile {
  background-color: var(--vis-eye-surface);
  border-radius: var(--vis-radius-soft);
  padding: 2.5rem;
  box-shadow: var(--vis-shadow-raised);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(16, 185, 129, 0.05);
}

.vis-bento-tile:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--vis-shadow-hover);
}

.vis-bento-tile-large {
  grid-column: span 4;
  background: var(--vis-eye-gradient-soft);
  border-left: 5px solid var(--vis-eye-iris);
}

.vis-bento-tile-narrow {
  grid-column: span 2;
  align-items: center;
  text-align: center;
  background: var(--vis-eye-gradient);
  color: #ffffff;
}

.vis-bento-tile-medium {
  grid-column: span 3;
}

.vis-bento-tile-wide {
  grid-column: span 6;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
}

.vis-bento-tile-narrow .vis-tile-stat {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 900;
  font-family: var(--font-display);
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.vis-bento-tile-narrow p {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
}

.vis-bento-tile h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: inherit;
}

.vis-bento-tile p {
  color: var(--vis-eye-muted);
  font-size: 0.95rem;
}

.vis-bento-tile-narrow p {
  color: #ffffff;
}

.vis-bento-tile-large h3 {
  color: var(--vis-eye-text);
}

.vis-tile-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vis-eye-iris);
  margin-bottom: 1.5rem;
}

.vis-bento-tile-wide .vis-tile-icon-wrap {
  margin-bottom: 0;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .vis-bento-mesh {
    grid-template-columns: 1fr;
  }
  .vis-bento-tile-large,
  .vis-bento-tile-narrow,
  .vis-bento-tile-medium,
  .vis-bento-tile-wide {
    grid-column: span 1;
  }
  .vis-bento-tile-wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .vis-bento-tile-wide .vis-tile-icon-wrap {
    margin-bottom: 0;
  }
}

/* ==========================================================================
   IMAGE CONTENT OVERLAY SECTION
   ========================================================================== */

.vis-ambient-showcase {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 10rem 2rem;
  text-align: center;
  color: #ffffff;
}

.vis-ambient-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  z-index: 1;
}

.vis-ambient-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.vis-ambient-inner h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.vis-ambient-inner p {
  font-size: 1.2rem;
  color: #cbd5e1;
  font-weight: 300;
}

/* ==========================================================================
   HOW IT WORKS (TIMELINE)
   ========================================================================== */

.vis-process-wrapper {
  background-color: var(--vis-eye-surface);
  border-radius: var(--vis-radius-soft);
  padding: 4rem 3rem;
  box-shadow: var(--vis-shadow-raised);
}

.vis-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.vis-process-card {
  position: relative;
  text-align: center;
  padding: 1rem;
}

.vis-step-num {
  font-size: 6rem;
  font-weight: 950;
  font-family: var(--font-display);
  color: var(--vis-eye-iris);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -2.5rem;
  position: relative;
  z-index: 1;
}

.vis-step-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--vis-eye-text);
  position: relative;
  z-index: 2;
}

.vis-step-desc {
  font-size: 0.95rem;
  color: var(--vis-eye-muted);
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .vis-process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */

.vis-banner-strip {
  background: var(--vis-eye-gradient);
  border-radius: var(--vis-radius-soft);
  padding: 4rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  box-shadow: var(--vis-shadow-raised);
}

.vis-banner-content {
  max-width: 650px;
}

.vis-banner-content h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.vis-banner-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.vis-banner-btn {
  background-color: #ffffff;
  color: var(--vis-eye-iris);
  white-space: nowrap;
}

.vis-banner-btn:hover {
  background-color: var(--vis-eye-text);
  color: #ffffff;
}

@media (max-width: 991px) {
  .vis-banner-strip {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }
  .vis-banner-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   EXPERT PAGE SPECIFICS
   ========================================================================== */

.vis-expert-split {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.vis-expert-photo {
  flex: 1;
  border-radius: var(--vis-radius-soft);
  overflow: hidden;
  box-shadow: var(--vis-shadow-raised);
}

.vis-expert-photo img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.vis-expert-bio {
  flex: 1.2;
}

.vis-expert-bio h3 {
  font-size: 2rem;
  color: var(--vis-eye-iris);
  margin-bottom: 1.5rem;
}

.vis-expert-bio p {
  font-size: 1.1rem;
  color: var(--vis-eye-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .vis-expert-split {
    flex-direction: column;
  }
}

/* ==========================================================================
   RESERVATION & FAQ PAGE
   ========================================================================== */

.vis-reserve-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.vis-reserve-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vis-reserve-benefit-card {
  background: var(--vis-eye-surface);
  padding: 2rem;
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-raised);
}

.vis-reserve-benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--vis-eye-iris);
}

.vis-bullet-list {
  list-style: none;
  font-size: 0.95rem;
  color: var(--vis-eye-muted);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.vis-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vis-bullet-marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--vis-eye-gradient-soft);
  color: var(--vis-eye-iris);
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form Styles */
.vis-enroll-box {
  background-color: var(--vis-eye-surface);
  border-radius: var(--vis-radius-soft);
  padding: 3rem;
  box-shadow: var(--vis-shadow-raised);
}

.vis-enroll-box h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.vis-form-group {
  margin-bottom: 1.5rem;
}

.vis-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.vis-input-field {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: var(--vis-eye-bg);
}

.vis-input-field:focus {
  outline: none;
  border-color: var(--vis-eye-iris);
  background-color: #ffffff;
}

.vis-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--vis-eye-muted);
}

.vis-checkbox-group input {
  margin-top: 0.2rem;
}

.vis-submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 1.5rem;
}

.vis-direct-mail {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--vis-eye-muted);
}

.vis-direct-mail a {
  color: var(--vis-eye-iris);
  font-weight: 600;
}

/* Accordion FAQ only-CSS */
.vis-accordion-enclosure {
  margin-top: 5rem;
}

.vis-faq-disclosure {
  background-color: var(--vis-eye-surface);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--vis-shadow-raised);
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.05);
}

.vis-faq-header {
  padding: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--vis-eye-text);
}

.vis-faq-header::-webkit-details-marker {
  display: none;
}

.vis-faq-header::after {
  content: '▼';
  font-size: 0.8rem;
  color: var(--vis-eye-iris);
  transition: transform 0.3s ease;
}

.vis-faq-disclosure[open] .vis-faq-header::after {
  transform: rotate(180deg);
}

.vis-faq-body {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  color: var(--vis-eye-muted);
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .vis-reserve-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */

.vis-centered-greeting {
  min-height: 70dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.vis-greeting-capsule {
  max-width: 600px;
  background-color: var(--vis-eye-surface);
  padding: 4rem 3rem;
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-raised);
}

.vis-greeting-capsule h1 {
  color: var(--vis-eye-iris);
  margin-bottom: 1.5rem;
}

.vis-greeting-capsule p {
  color: var(--vis-eye-muted);
  font-size: 1.12rem;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */

.vis-legal-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.vis-legal-layout h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--vis-eye-text);
  border-bottom: 3px solid var(--vis-eye-iris);
  padding-bottom: 0.5rem;
}

.vis-legal-layout h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.vis-legal-layout p {
  margin-bottom: 1.5rem;
  color: var(--vis-eye-muted);
  font-size: 1rem;
}

/* ==========================================================================
   FOOTER AREA
   ========================================================================== */

.vis-anchor-footer {
  background-color: var(--vis-eye-text);
  color: #94a3b8;
  padding: 5rem 2rem 2rem;
}

.vis-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.vis-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.vis-footer-logo {
  color: #ffffff;
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vis-footer-links {
  display: flex;
  gap: 2rem;
}

.vis-footer-link {
  color: #94a3b8;
  font-size: 0.9rem;
}

.vis-footer-link:hover {
  color: #ffffff;
}

.vis-footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: justify;
}

.vis-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .vis-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .vis-footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */

.vis-cookie-guard {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vis-eye-text);
  color: #ffffff;
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
  display: none;
}

.vis-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.vis-cookie-inner p {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.vis-cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.vis-cookie-btn {
  padding: 0.65rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.vis-cookie-accept {
  background-color: var(--vis-eye-iris);
  color: #ffffff;
  border: none;
}

.vis-cookie-accept:hover {
  background-color: var(--vis-eye-iris-hover);
}

.vis-cookie-decline {
  background-color: transparent;
  color: #94a3b8;
  border: 1px solid #475569;
}

.vis-cookie-decline:hover {
  color: #ffffff;
  border-color: #cbd5e1;
}

@media (max-width: 768px) {
  .vis-cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .vis-cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}