/* ==========================================================================
   Matina Villa & Apartments — Static PHP Site Stylesheet
   Colors extracted from WP theme: #244677 (primary), #4C86B2, #FF8A00 (accent)
   Fonts: Open Sans (body), Lora (headings) — replacing Proxima Nova/Georgia
   ========================================================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-primary: #244677;
    --color-primary-light: #4C86B2;
    --color-primary-dark: #1a3459;
    --color-accent: #FF8A00;
    --color-accent-hover: #e67a00;
    --color-text: #333;
    --color-text-light: #666;
    --color-text-on-dark: #fff;
    --color-bg: #fff;
    --color-bg-light: #f8f9fa;
    --color-bg-dark: #1a2a3a;
    --color-border: #e0e0e0;
    --color-gold-text: #b37700;
    --color-star: #f5a623;
    --color-success: #28a745;
    --color-error: #dc3545;

    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Lora', Georgia, 'Times New Roman', serif;

    --container-max: 1140px;
    --header-height: 80px;
    --radius: 8px;
    --radius-sm: 4px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 1rem); }
body {
    font-family: var(--font-body);
    font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 0.5em;
}
h1 { font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem); }
h3 { font-size: clamp(1.15rem, 1rem + 0.5vw, 1.5rem); }
p { margin-bottom: 1rem; }

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section { padding: 4rem 0; }
.section:nth-child(even) { background: var(--color-bg-light); }
.text-center { text-align: center; }
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    min-height: 44px;
    line-height: 1.4;
}
.btn-primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}
@media (hover: hover) {
    .btn-primary:hover {
        background: var(--color-accent-hover);
        border-color: var(--color-accent-hover);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: var(--shadow);
    }
}
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
@media (hover: hover) {
    .btn-outline:hover {
        background: var(--color-primary);
        color: #fff;
    }
}
.btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-small { padding: 0.4rem 1rem; font-size: 0.85rem; min-height: 44px; }

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: var(--shadow);
    height: var(--header-height);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}
.logo img { height: 55px; width: auto; }
.header-contact { display: none; }
.header-phone {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
}

/* Nav Toggle (Mobile) */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition);
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Main Navigation */
.main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 1rem 0;
}
.main-nav.open { display: block; }
.main-nav ul { list-style: none; }
.main-nav > ul > li > a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
    min-height: 44px;
    line-height: 1.6;
}
.main-nav > ul > li.active > a { color: var(--color-accent); }
@media (hover: hover) {
    .main-nav > ul > li > a:hover { color: var(--color-accent); }
}

/* Dropdown */
.dropdown {
    padding-left: 1.5rem;
    display: none;
}
.has-dropdown.dropdown-open .dropdown { display: block; }
.dropdown a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
    min-height: 44px;
    line-height: 2;
}
@media (hover: hover) {
    .dropdown a:hover { color: var(--color-accent); }
}
.dropdown .active a { color: var(--color-accent); }

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    height: 70vh;
    height: 70svh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}
.slider-wrapper { position: relative; width: 100%; height: 100%; }
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.slide-overlay h1,
.slide-overlay h2 {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 0.5rem;
}
.slide-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    color: #fff;
    border: none;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--transition);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }
@media (hover: hover) {
    .slider-prev:hover, .slider-next:hover {
        background: rgba(255,255,255,0.4);
    }
}
.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background var(--transition);
    padding: 16px;
    background-clip: content-box;
}
.slider-dot.active { background: #fff; }

/* --- Welcome Section --- */
.welcome-section { text-align: center; }
.section-intro {
    font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

/* --- Card Grid --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
@media (hover: hover) {
    .card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }
}
.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.25rem; }
.card-meta {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* --- Accommodation List --- */
.accommodation-list { display: flex; flex-direction: column; gap: 2rem; }
.accommodation-card {
    display: grid;
    grid-template-columns: 1fr;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.accommodation-card__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.accommodation-card__content { padding: 1.5rem; }
.accommodation-card__content h2 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.accommodation-card__meta {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.accommodation-card__features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.feature-badge {
    display: inline-block;
    background: var(--color-bg-light);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}
.accommodation-card__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* --- Apartment Detail --- */
.apartment-detail { display: flex; flex-direction: column; gap: 2rem; }
.apartment-hero__img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
}
.apartment-info h2, .apartment-info h3 { margin-top: 1.5rem; }
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.feature-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}
.feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}
.apartment-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.apartment-gallery { margin-top: 1rem; }

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}
.gallery-grid--small {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.gallery-item {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition);
}
@media (hover: hover) {
    .gallery-item:hover img { transform: scale(1.05); }
}
.gallery-thumb { display: block; border-radius: var(--radius); overflow: hidden; }
.gallery-thumb img { width: 100%; height: 180px; object-fit: cover; }

/* --- Villa Detail --- */
.villa-detail { display: flex; flex-direction: column; gap: 2rem; }
.villa-hero__img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.highlight-card {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--color-accent);
}
.highlight-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* --- Contact --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}
.info-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg-light);
    border-radius: var(--radius);
}
.info-card__icon { font-size: 2rem; margin-bottom: 0.5rem; }
.info-card h2 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.info-card a { color: var(--color-primary-light); font-weight: 600; }

/* Map */
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-wrapper iframe { display: block; }

/* --- Reservation Layout --- */
.reservation-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.reservation-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: var(--radius);
}
.sidebar-card h2, .sidebar-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.sidebar-card ul { padding-left: 1.25rem; list-style: disc; }
.sidebar-card li { margin-bottom: 0.5rem; color: var(--color-text-light); }
.sidebar-phone {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0.5rem 0;
}

/* --- Forms --- */
.form fieldset {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.form legend {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    padding: 0 0.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}
.required { color: var(--color-error); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(76, 134, 178, 0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.honeypot { position: absolute; left: -9999px; }
.form-feedback {
    margin-top: 1rem;
    padding: 0;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: none;
}
.form-feedback.success {
    display: block;
    color: var(--color-success);
    background: #d4edda;
    padding: 1rem;
}
.form-feedback.error {
    display: block;
    color: var(--color-error);
    background: #f8d7da;
    padding: 1rem;
}

/* --- Reviews --- */
.reviews-list { display: flex; flex-direction: column; gap: 2rem; max-width: 700px; margin: 0 auto; }
.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}
.review-card__stars { margin-bottom: 1rem; }
.star { color: var(--color-star); font-size: 1.3rem; }
.review-card__text p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-text);
}
.review-card__author { margin-top: 1rem; }
.review-card__author strong { display: block; color: var(--color-primary); }
.review-card__author time { font-size: 0.85rem; color: var(--color-text-light); }
.guestbook-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-bg-light);
    border-radius: var(--radius);
}

/* --- CTA Banner --- */
.cta-banner {
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 3.5rem 1.5rem;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.cta-banner a:not(.btn) { color: var(--color-accent); font-weight: 600; }

/* --- Page Header --- */
.page-header {
    background: var(--color-bg-light);
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
}
.page-header h1 { margin-bottom: 0.25rem; }
.page-intro { color: var(--color-text-light); font-size: 1.05rem; margin-bottom: 0; }

/* Breadcrumbs */
.breadcrumbs { margin-bottom: 1rem; }
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    font-size: 0.85rem;
}
.breadcrumbs li { color: var(--color-text-light); }
.breadcrumbs li:not(:last-child)::after { content: ' / '; margin-left: 0.25rem; color: var(--color-border); }
.breadcrumbs a { color: var(--color-primary-light); }

/* --- Footer --- */
.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 2.5rem 0 0;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
}
.footer-brand img { height: 45px; width: auto; filter: brightness(2); }
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    min-height: 44px;
    line-height: 2.5;
    transition: color var(--transition);
}
@media (hover: hover) {
    .footer-nav a:hover { color: var(--color-accent); }
}
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}
.footer-contact a { color: rgba(255,255,255,0.7); min-height: 44px; display: inline-flex; align-items: center; }
@media (hover: hover) {
    .footer-contact a:hover { color: var(--color-accent); }
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.85rem;
}

/* --- Cookie Notice --- */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.85);
    z-index: 200;
    padding: 1rem 0;
}
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cookie-inner p { margin: 0; font-size: 0.85rem; }

/* --- Lightbox --- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    text-align: center;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet (600px+) */
@media (min-width: 600px) {
    .form-row { grid-template-columns: 1fr 1fr; }
    .accommodation-card { grid-template-columns: 350px 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .reservation-layout { grid-template-columns: 2fr 1fr; }
}

/* Desktop (768px+) */
@media (min-width: 768px) {
    .header-contact { display: block; }
    .nav-toggle { display: none; }
    .main-nav {
        display: block;
        position: static;
        box-shadow: none;
        padding: 0;
    }
    .main-nav > ul {
        display: flex;
        align-items: center;
        gap: 0;
    }
    .main-nav > ul > li { position: relative; }
    .main-nav > ul > li > a {
        padding: 0.5rem 0.85rem;
        font-size: 0.9rem;
    }

    /* Desktop dropdown */
    .has-dropdown { position: relative; }
    .has-dropdown .dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: #fff;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius) var(--radius);
        padding: 0.5rem 0;
        z-index: 50;
    }
    .has-dropdown:hover .dropdown,
    .has-dropdown.dropdown-open .dropdown { display: block; }
    .dropdown a { padding: 0.5rem 1.25rem; line-height: 1.6; min-height: 40px; }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
    .contact-layout { grid-template-columns: 1fr 1fr; }
    .main-nav > ul > li > a { padding: 0.5rem 1rem; font-size: 0.95rem; }
}

/* Mobile-only (max 480px) */
@media (max-width: 480px) {
    .card-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: 1fr; }
    .feature-list { grid-template-columns: 1fr; }
    .cookie-inner { flex-direction: column; text-align: center; }
    .accommodation-card__actions { flex-direction: column; }
    .accommodation-card__actions .btn { width: 100%; }
}

/* Safe area insets for notched devices */
@supports (padding: env(safe-area-inset-bottom)) {
    .site-header {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    .cookie-notice {
        padding-bottom: env(safe-area-inset-bottom);
    }
    .site-footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
}
