/*
Theme Name: Sri Lanka Reisen Lite
Theme URI: https://www.srilankareisen.ch
Author: Rubenson GmbH
Author URI: https://www.srilankareisen.ch
Description: Custom theme for Sri Lanka Reisen travel agency website
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: srilankareisen-lite
Tags: travel, ayurveda, tourism, custom-theme
*/

/* =========================================
   CSS RESET & BASE
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    color: #456778;
    background: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

ul {
    list-style: none;
}

/* =========================================
   TYPOGRAPHY SCALE
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: #263338;
}

/* H1 — Playfair Display Bold · 56px */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0;
}

/* H2 — Playfair Display SemiBold · 40px */
h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0;
}

/* H3 — Playfair Display SemiBold · 30px */
h3 {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: 0;
}

/* H4 — Playfair Display · 22px */
h4 {
    font-size: 1.375rem;
    font-weight: 600;
}

/* H5, H6 — Playfair Display · 18px */
h5, h6 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Body text */
p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Small / caption text */
small, .text-small {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
}

/* =========================================
   LAYOUT CONTAINER
   ========================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
    background-color: #456778;
    color: #ffffff;
    font-size: 13px;
    padding: 7px 0;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left a {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-left a:hover {
    text-decoration: underline;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.top-bar-right a:hover {
    opacity: 0.8;
}

/* =========================================
   MAIN NAVIGATION
   ========================================= */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo {
    font-size: 13px;
    font-weight: 700;
    color: #263338;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Top-level links */
.main-nav > ul > li {
    position: relative;
}

.main-nav ul li a {
    display: block;
    padding: 9px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #263338;
    letter-spacing: 0.3px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a,
.main-nav ul li.current-menu-ancestor > a {
    color: #7E8B3A;
    background: rgba(126, 139, 58, 0.07);
    text-decoration: none;
}

/* Dropdown arrow on parent items */
.main-nav > ul > li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    opacity: 0.6;
    transition: transform 0.2s;
}

.main-nav > ul > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Dropdown panel */
.main-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 210px;
    z-index: 9999;
    padding: 10px 0 6px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    text-align: left;
}

.main-nav ul li ul li {
    width: 100%;
}

.main-nav > ul > li:hover > ul {
    display: flex;
}

/* Dropdown links */
.main-nav ul li ul li a {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #263338;
    border-radius: 0;
    letter-spacing: 0;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}

.main-nav ul li ul li:last-child a {
    border-bottom: none;
}

.main-nav ul li ul li a:hover {
    background: #F7F4EC;
    color: #7E8B3A;
}

/* Language switch */
.main-nav ul li.lang-switch a {
    background: #263338;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.main-nav ul li.lang-switch a:hover {
    background: #7E8B3A;
    color: #ffffff;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #263338;
    transition: background 0.2s;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    min-height: 480px;
    background: #456778 center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 60, 0.28);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding: 80px 20px;
}

.hero-content h1 {
    font-size: 2.375rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    max-width: 740px;
    margin: 0 auto;
    line-height: 1.4;
    color: #ffffff;
}

/* =========================================
   WAVE SEPARATOR
   ========================================= */
.wave-separator {
    line-height: 0;
    overflow: hidden;
}

.wave-separator svg {
    display: block;
    width: 100%;
}

.wave-top {
    background: #F7F4EC;
}

.wave-bottom {
    background: #ffffff;
}

/* =========================================
   TOURS SECTION
   ========================================= */
.tours-section {
    padding: 55px 0 40px;
    background: #ffffff;
}

.section-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.tour-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

.tour-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.tour-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.tour-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #456778 0%, #456778 100%);
}

.tour-card-title {
    background: #456778;
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tour-card-body {
    padding: 20px;
}

.tour-card-price {
    font-size: 11px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.price-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #456778;
    border-radius: 50%;
    flex-shrink: 0;
}

.tour-features {
    list-style: none;
    margin: 0 0 15px 0;
}

.tour-features li {
    font-size: 11px;
    color: #555;
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.tour-features li .feat-icon,
.tour-features li i.feat-icon {
    color: #456778;
    font-size: 11px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.tour-card-link {
    display: inline-block;
    padding: 8px 20px;
    background: #B49A62;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.2s;
    text-decoration: none;
    margin-top: 8px;
}

.tour-card-link:hover {
    background: #456778;
    color: #ffffff;
    text-decoration: none;
}

.view-all-btn-wrap {
    text-align: center;
    padding: 20px 0 40px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 30px;
    background: #B49A62;
    border: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #456778;
    color: #ffffff;
    text-decoration: none;
}

/* =========================================
   AYURVEDA OFFERS SECTION
   ========================================= */
.ayurveda-offers-section {
    background: #F7F4EC;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0;
    color: #263338;
    margin-bottom: 40px;
    line-height: 1.2;
}

.ayurveda-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ayurveda-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.ayurveda-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.ayurveda-card-image {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.ayurveda-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.ayurveda-card:hover .ayurveda-card-image img {
    transform: scale(1.04);
}

.ayurveda-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7E8B3A 0%, #456778 100%);
}

.ayurveda-price-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #456778;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
}

.ayurveda-card-body {
    padding: 20px;
}

.ayurveda-card-body h3 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.ayurveda-features {
    list-style: none;
    margin: 0 0 20px 0;
}

.ayurveda-features li {
    font-size: 11px;
    color: #555;
    padding: 3px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.ayurveda-features li::before {
    content: '›';
    color: #456778;
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

.btn-book {
    display: inline-block;
    padding: 10px 24px;
    background: #B49A62;
    border: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.2s;
}

.btn-book:hover {
    background: #456778;
    color: #ffffff;
    text-decoration: none;
}

/* =========================================
   WHAT WE OFFER SECTION
   ========================================= */
.what-we-offer-section {
    padding: 70px 0 80px;
    background: #ffffff;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 40px;
    max-width: 760px;
    margin: 0 auto;
}

.offer-item {
    text-align: center;
    padding: 10px;
}

.offer-item h3 {
    font-size: 13px;
    font-weight: 400;
    color: #444;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: #263338;
    color: #cccccc;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #444;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col address {
    font-size: 11px;
    line-height: 1.7;
    font-style: normal;
    color: #aaaaaa;
}

.footer-col a {
    color: #aaaaaa;
    font-size: 11px;
}

.footer-col a:hover {
    color: #456778;
    text-decoration: none;
}

.footer-col ul li {
    margin-bottom: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 11px;
    color: #aaaaaa;
}

.footer-contact-item .contact-icon {
    color: #456778;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: #aaaaaa;
}

.footer-contact-item strong {
    display: block;
    color: #cccccc;
    font-size: 12px;
    margin-bottom: 2px;
}

.footer-social h4 {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #444;
    border-radius: 4px;
    color: #ffffff;
    font-size: 16px;
    transition: background 0.2s;
}

.social-icons a:hover {
    background: #456778;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    font-size: 10px;
    color: #666;
    padding-top: 10px;
}

/* =========================================
   PAGE TEMPLATES
   ========================================= */
.page-hero {
    position: relative;
    min-height: 380px;
    background: linear-gradient(155deg, #263338 0%, #456778 52%, #263338 100%);
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23ffffff' fill-opacity='0.07'/%3E%3C/svg%3E") repeat,
        linear-gradient(rgba(38,51,56,0.35), rgba(38,51,56,0.35));
    z-index: 1;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 70px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 70' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0%2C28 C320%2C75 640%2C0 960%2C40 C1120%2C62 1300%2C10 1440%2C45 L1440%2C70 L0%2C70 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
    z-index: 3;
}
.page-hero .container {
    position: relative;
    z-index: 2;
    padding: 80px 20px 100px;
    width: 100%;
}
.page-hero h1 {
    font-size: clamp(26px, 5vw, 50px);
    font-weight: 900;
    letter-spacing: -0.5px;
    text-transform: none;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 3px 18px rgba(0,0,0,0.4);
    margin-bottom: 14px;
}
.page-hero p {
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 1.75 !important;
    color: rgba(255,255,255,0.88) !important;
    max-width: 540px;
    margin: 0 auto !important;
    letter-spacing: 0.3px !important;
}

.page-content-section {
    padding: 60px 0;
}

/* Ayurveda Page */
.ayurveda-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.ayurveda-intro-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #263338;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.ayurveda-intro-text p {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.ayurveda-intro-image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    height: 320px;
    background: linear-gradient(135deg, #7E8B3A 0%, #7E8B3A 100%);
}

.ayurveda-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ayurveda-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Hotels Page */
.hotels-filter-bar {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.hotels-filter-bar label {
    font-size: 12px;
    font-weight: 600;
    color: #444;
}

.hotels-filter-bar select {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 12px;
    color: #444;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.hotel-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

.hotel-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hotel-card-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #456778 0%, #456778 100%);
}

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.hotel-stars {
    color: #B49A62;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.hotel-card-body {
    padding: 18px;
}

.hotel-card-body h3 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.hotel-location {
    font-size: 11px;
    color: #888;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-description {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.hotel-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}

.hotel-price {
    font-size: 12px;
    color: #333;
}

.hotel-price strong {
    font-size: 16px;
    color: #456778;
    font-weight: 700;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .section-cards,
    .ayurveda-cards,
    .ayurveda-packages-grid,
    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 520px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ayurveda-intro {
        grid-template-columns: 1fr;
    }

    .ayurveda-intro-image {
        order: -1;
    }
}

@media (max-width: 650px) {
    .section-cards,
    .ayurveda-cards,
    .ayurveda-packages-grid,
    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: 320px;
    }

    /* Mobile H1: 28px */
    h1 {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 10px 0;
        z-index: 999;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .main-nav ul li a {
        padding: 11px 20px;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
    }

    /* Mobile: show dropdowns inline below parent */
    .main-nav ul li ul {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        border-top: 1px solid #f0f0f0;
        min-width: 100%;
        padding: 0;
        background: #f7f7f7;
    }

    .main-nav > ul > li:hover > ul,
    .main-nav > ul > li.open > ul {
        display: flex;
    }

    .main-nav ul li ul li a {
        padding: 9px 20px 9px 32px;
        font-size: 13px;
        background: transparent;
    }

    .main-nav > ul > li.menu-item-has-children > a::after {
        float: right;
        margin-top: 6px;
    }

    .nav-toggle {
        display: flex;
    }

    .top-bar-right {
        display: none;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
}

@media (max-width: 420px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}
