/* ========================================
   COMPONENTS
   Navigation, Buttons, Cards
   ======================================== */

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  padding: var(--space-sm) 0;
  background-color: transparent;
  transition: background-color var(--transition-base), 
              box-shadow var(--transition-base),
              padding var(--transition-base);
}

.navbar.scrolled {
  background-color: rgba(242, 240, 233, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xs) 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: var(--fw-medium);
  color: var(--white);
  transition: color var(--transition-base);
  letter-spacing: 0.02em;
}

.navbar.scrolled .logo {
  color: var(--charcoal);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-menu a {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--white);
  transition: color var(--transition-base);
  position: relative;
}

.navbar.scrolled .nav-menu a {
  color: var(--charcoal);
}

.nav-menu a:hover {
  color: var(--sage-green);
}

/* Nav CTA Button */
.nav-cta {
  padding: 0.75rem 1.5rem;
  background-color: var(--sage-green);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-base), 
              transform var(--transition-base);
}

.nav-cta:hover {
  background-color: var(--sage-green-dark);
  transform: translateY(-2px);
  color: var(--white) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
  z-index: calc(var(--z-navbar) + 1);
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: all var(--transition-base);
}

.navbar.scrolled .menu-toggle span {
  background-color: var(--charcoal);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--sage-green);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--sage-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
  background-color: var(--charcoal);
  color: var(--white);
}

.btn-tertiary {
  background-color: var(--terracotta);
  color: var(--white);
}

.btn-tertiary:hover {
  background-color: var(--terracotta-light);
  transform: translateY(-2px);
}

/* Button with icon */
.btn svg {
  width: 20px;
  height: 20px;
}

/* ===== SPACING UTILITIES ===== */
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }
.my-lg { margin-top: var(--space-lg); margin-bottom: var(--space-lg); }

.mt-xl { margin-top: var(--space-xl); }
.mb-xl { margin-bottom: var(--space-xl); }
.my-xl { margin-top: var(--space-xl); margin-bottom: var(--space-xl); }

/* ===== TEXT UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--white); }
.text-sage { color: var(--sage-green); }
.text-charcoal { color: var(--charcoal); }

/* ========================================
   MAP COMPONENTS
   ======================================== */
.leaflet-div-icon {
    background: transparent;
    border: none;
}
.pulsing-dot {
    width: 12px;
    height: 12px;
    background-color: var(--rusty-beacon);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    position: relative;
}
.pulsing-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--rusty-beacon);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@keyframes pulse-ring {
    0% { width: 100%; height: 100%; opacity: 1; }
    100% { width: 300%; height: 300%; opacity: 0; }
}

/* Leaflet Tooltip Custom Style */
.map-tooltip {
    background: #0f1114 !important;
    border: 1px solid #3b424d !important;
    color: #fff !important;
    border-radius: 4px !important;
    padding: 6px 10px !important;
    font-family: var(--font-liquid) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
}
.leaflet-tooltip-top:before { border-top-color: #0f1114 !important; }
.leaflet-tooltip-bottom:before { border-bottom-color: #0f1114 !important; }
.leaflet-tooltip-left:before { border-left-color: #0f1114 !important; }
.leaflet-tooltip-right:before { border-right-color: #0f1114 !important; }

/* Styl głównej etykiety apartamentów */
.main-label-tooltip {
    background: #fff !important;
    border: 1px solid #ccc !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    border-radius: 4px !important;
}
.main-label-tooltip::before {
    display: none;
}

/* ========================================
   LOCATION LIST ITEMS (sc-25)
   ======================================== */

.sc-25-item {
    padding: 30px 0; border-bottom: 1px solid #ddd; cursor: pointer;
    display: flex; align-items: center; gap: 20px;
    position: relative;
    /* Ensure flex is default */
    display: flex;
}
.sc-25-item:last-child { border-bottom: none; }
.sc-25-item:hover {
    border-bottom-color: var(--text-color);
}

.sc-25-left-col {
    display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    width: 50px; min-width: 50px;
}
.sc-25-num {
    font-family: var(--font-hull); font-size: 2rem; color: #ccc; line-height: 1; font-weight: 300;
}
.sc-25-meta {
    font-family: var(--font-hull); font-size: 0.9rem; text-transform: uppercase; color: #888;
    letter-spacing: 2px; margin-top: 5px; transition: color 0.3s;
}

.sc-25-content { display: flex; flex-direction: column; justify-content: center; }

.sc-25-label { 
    transform-origin: left center;
    font-family: var(--font-hull); font-size: 2rem; color: var(--storm-foam); 
    line-height: 1.1; flex-grow: 1; 
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), color 0.6s, opacity 0.6s;
}

.sc-25-desc { 
    font-size: 0.9rem; 
    color: #888; 
    margin-top: 3px; 
    font-weight: 300; 
    font-family: var(--font-hull); 
    line-height: 1.2; 
    text-transform: none; 
    letter-spacing: 0.5px; 
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), color 0.6s;
    transform-origin: left center;
    display: block; 
}

/* Hover Effects */

/* Description grows */
.sc-25-item:hover .sc-25-desc {
    transform: translateX(20px) scale(1.9);
    color: #000;
}

/* Label shrinks */
.sc-25-item:hover .sc-25-label {
    transform: translateX(20px) scale(0.7);
    color: #888;
    opacity: 0.7;
}

/* Other elements coloring on hover */
.sc-25-item:hover .sc-25-num, 
.sc-25-item:hover .sc-25-meta {
    color: var(--rusty-beacon);
}

/* Hidden state - Fallback for JS */
.hidden-list-item {
    display: none !important;
}


/* ========================================
   CONTACT & FORM COMPONENTS
   ======================================== */

/* Contact Info Column */
.contact-header {
    font-family: var(--font-hull); 
    font-size: 5rem; /* Increased from 3rem to match other sections */
    text-transform: uppercase; 
    color: var(--storm-foam); 
    margin-bottom: 2rem;
    line-height: 0.9;
}

.host-profile {
    display: flex; 
    align-items: center; 
    gap: 2rem; 
    margin-bottom: 3rem;
}

.host-avatar {
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    overflow: hidden; 
    background: #f0f0f0; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    flex-shrink: 0;
}

.host-initial {
    font-family: var(--font-hull); 
    font-size: 2rem; 
    color: #ccc;
}

.host-role {
    font-family: var(--font-liquid); 
    margin: 0; 
    color: #666; 
    font-size: 0.9rem;
}

.host-name {
    font-family: var(--font-hull); 
    margin: 0; 
    color: #333; 
    font-size: 1.2rem;
}

.contact-text {
    font-family: var(--font-liquid); 
    color: #666; 
    font-size: 1.1rem; 
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-phone {
    font-family: var(--font-hull); 
    font-size: 2.5rem; 
    color: var(--storm-foam); 
    text-decoration: none; 
    display: block; 
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.contact-phone:hover {
    color: var(--rusty-beacon);
}

/* Form Styles */
.contact-form-card {
    background: #f9f9f9; 
    padding: 3rem; 
    border-radius: 4px;
}

.form-header {
    font-family: var(--font-hull); 
    font-size: 1.5rem; 
    margin-bottom: 1.5rem; 
    color: var(--storm-foam);
}

.form-group {
    margin-bottom: 1rem;
}

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

.form-label {
    display: block; 
    font-family: var(--font-liquid); 
    font-size: 0.9rem; 
    margin-bottom: 0.5rem; 
    color: #666;
}

.form-input {
    width: 100%; 
    padding: 0.8rem; 
    border: 1px solid #ddd; 
    background: #fff; 
    font-family: var(--font-liquid);
    border-radius: 0;
    transition: border-color 0.3s;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--storm-foam);
}

.btn-submit {
    width: 100%; 
    background: var(--storm-foam); 
    color: #fff; 
    border: none; 
    padding: 1rem; 
    font-family: var(--font-hull); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    cursor: pointer; 
    transition: background 0.3s;
    font-size: 1rem;
}

.btn-submit:hover {
    background: #333;
}

/* ========================================
   FOOTER COMPONENTS
   ======================================== */

.footer-brand h3 {
    font-family: var(--font-hull);
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--storm-foam);
}

.footer-address {
    font-family: var(--font-liquid);
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-phone {
    display: block;
    font-family: var(--font-hull);
    font-size: 1.3rem;
    color: #000 !important;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: none;
}

.footer-phone:hover {
    color: #000 !important;
}

/* Desktop - disable phone link click */
@media (min-width: 769px) {
    .footer-phone {
        pointer-events: none;
        cursor: default;
    }
}

.footer-email {
    font-family: var(--font-liquid);
    color: #000 !important;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    transition: none;
    font-size: 1rem;
}

.footer-email:hover {
    border-color: #000;
    color: #000 !important;
}

.footer-heading {
    font-family: var(--font-hull);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000 !important;
    margin-bottom: 1rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-nav a {
    color: var(--storm-foam);
    text-decoration: none;
    font-family: var(--font-liquid);
    transition: opacity 0.3s, color 0.3s;
    font-size: 1rem;
}

.footer-nav a:hover {
    opacity: 0.8;
    color: var(--rusty-beacon);
}

.footer-nav-small {
    margin-top: 0.4rem;
}

.footer-nav-small a {
    color: #999;
    font-size: 0.85rem;
    font-family: var(--font-liquid);
}

.footer-legal {
    font-family: var(--font-liquid);
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-copyright {
    font-family: var(--font-liquid);
    color: #999;
    font-size: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    color: var(--storm-foam);
    transition: opacity 0.3s, color 0.3s;
    opacity: 0.7;
}

.social-icon:hover {
    opacity: 1;
    color: var(--rusty-beacon);
}

.social-svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ========================================
   LABA, AHOJ & BUTTONS
   ======================================== */
.laba-title {
    font-family: var(--font-hull, 'Oswald', sans-serif);
    font-size: 6rem;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--storm-foam, #0f1114);
    margin: 0;
}

.laba-desc {
    font-family: var(--font-liquid, 'Manrope', sans-serif);
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--wet-concrete, #3b424d);
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 1.5rem; /* Original inline value */
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* BUTTONS */
.flux-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--storm-foam, #0f1114);
    color: var(--white, #ffffff);
    text-transform: uppercase;
    font-family: var(--font-hull, 'Oswald', sans-serif);
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
}

.flux-btn:hover {
    background-color: var(--rusty-beacon, #d64000);
    color: var(--white, #ffffff);
}

/* Remove focus outline on buttons and interactive elements */
.flux-btn:focus,
.flux-btn:focus-visible {
    outline: none;
    box-shadow: none;
}

/* White outline button variant */
.flux-btn--white {
    background: white !important;
    color: var(--storm-foam) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    text-decoration: none;
}

.flux-btn--white:hover {
    background: var(--storm-foam) !important;
    color: white !important;
    border-color: var(--storm-foam) !important;
}

.ghost-white-btn {
    background: transparent !important;
    border: 1px solid white !important;
    color: white !important;
}

.ghost-white-btn:hover {
    background: white !important;
    color: var(--storm-foam, #0f1114) !important;
}

.hero-actions {
    display: flex; 
    gap: 1.5rem; 
    margin-top: 3rem; 
    flex-wrap: wrap;
}

/* ========================================
   FAQ COMPONENTS
   ======================================== */
.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    outline: none;
}

.faq-btn:focus,
.faq-btn:focus-visible {
    outline: none;
    box-shadow: none;
}

.faq-btn:hover .faq-question {
    color: var(--rusty-beacon, #d64000);
}

.faq-year {
    font-family: var(--font-hull, sans-serif); 
    font-size: 0.9rem; 
    color: #999; 
    margin-right: 2rem;
    min-width: 30px;
}

.faq-question {
    font-family: var(--font-hull, sans-serif);
    font-size: 1.4rem;
    color: #333;
    flex-grow: 1;
    padding-right: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-icon {
    font-family: var(--font-hull, sans-serif);
    font-size: 2rem;
    color: #333;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.faq-text {
    padding: 0 0 2rem 4rem; /* Indent to align with text */
    font-family: var(--font-liquid, sans-serif);
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-content {
    opacity: 1;
}

/* FAQ link style */
.faq-link {
    color: var(--rusty-beacon);
    font-weight: bold;
    text-decoration: underline;
}

/* FAQ actions container */
.faq-actions {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 2;
    position: relative;
}

/* FAQ helper text */
.faq-helper-text {
    text-align: center;
    margin-top: 2rem;
    font-family: var(--font-hull);
    font-size: 1.1rem;
    color: #555;
}

/* FAQ load more button */
#faq-load-more {
    min-width: 200px;
}

/* ========================================
   TESTIMONIALS / QUOTES (Magazine Style)
   ======================================== */
#testimonials-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* Load more button container in testimonials grid */
.archive-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    grid-column: span 2;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
    padding-bottom: 0;
}

.quote-wide {
    grid-column: span 2;
    max-width: 900px !important;
    margin: 0 auto;
}

.quote-block {
    text-align: center;
    width: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 4rem 3rem;
    background: #ffffff;
    border-radius: 0px;
    border: 1px solid #e5e5e5;
}

.quote-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--wet-concrete);
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.quote-author {
    margin-top: auto;
    font-family: var(--font-hull);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1.5rem;
    width: 100%;
    font-weight: 500;
}

.quote-mark {
    display: none;
}

.translate-btn {
    background: transparent;
    border: 1px solid #000;
    border-radius: 0px;
    color: #000;
    font-family: var(--font-hull);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding: 10px 20px;
    transition: all 0.3s ease;
    align-self: center;
    font-weight: 500;
}

.translate-btn:hover {
    border-color: #000;
    color: #000;
    background: #fff;
}

/* ========================================
   LOCATION ITEMS (Editorial Style)
   ======================================== */
.loc-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: padding-left 0.3s ease;
}

.loc-item-modern:hover {
    padding-left: 20px;
    border-color: var(--rusty-beacon);
}

.loc-time {
    font-family: var(--font-hull);
    font-size: 4.5rem;
    line-height: 0.8;
    color: var(--rusty-beacon);
    min-width: 80px;
}

.loc-unit {
    display: block;
    font-family: monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--deep-abyss);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.loc-desc {
    margin: 0;
    color: var(--wet-concrete);
    line-height: 1.5;
    font-size: 1rem;
}

/* ========================================
   LUXURY GALLERY GRID
   ======================================== */
.gallery-wrapper {
    position: relative;
}

/* Swipe hint - hidden by default, shown via mobile.css */
.swipe-hint {
    display: none;
}

/* Gallery dots - hidden on desktop */
.gallery-dots {
    display: none;
}

@media (min-width: 769px) {
    .swipe-hint,
    .gallery-dots {
        display: none !important;
    }
}

.luxury-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 2rem auto;
    padding: 0 40px;
}

.luxury-item {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.mag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.1, 0, 0.2, 1);
    filter: grayscale(10%) contrast(1.05);
}

.luxury-item:hover .mag-img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1);
}

.mag-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    padding: 15px 25px;
    background: rgba(255,255,255,0.9);
    color: #000;
    font-family: var(--font-hull);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.luxury-item:hover .mag-caption {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

#loadMoreAhoj,
#loadMoreLaba,
#loadMoreReviews {
    min-width: 250px;
}

/* Remove focus outline on all interactive buttons */
#loadMoreAhoj:focus,
#loadMoreAhoj:focus-visible,
#loadMoreLaba:focus,
#loadMoreLaba:focus-visible,
#loadMoreReviews:focus,
#loadMoreReviews:focus-visible,
#faq-load-more:focus,
#faq-load-more:focus-visible,
button:focus,
button:focus-visible {
    outline: none;
    box-shadow: none;
}

.hidden-batch,
.hidden-batch-laba {
    display: none;
}

/* === MODAL STYLES === */
.amenities-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    overflow-y: auto;
}

.amenities-modal-inner {
    max-width: 900px;
    margin: 5vh auto;
    padding: 3rem;
    position: relative;
}

.amenities-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.3s;
    font-family: var(--font-hull);
}

.amenities-modal-close:hover {
    background: #fff;
    color: #000;
}

/* === FOOTER HELPER STYLES === */
.footer-nav-link-small {
    color: #999;
    font-size: 0.9rem;
    font-family: var(--font-liquid);
}


