/* ========================================
   RESPONSIVE BREAKPOINTS DOCUMENTATION
   ========================================

   📱 Extra Small Mobile: max-width: 576px
      - Pro velmi malá zařízení (iPhone SE, staršÍ mobily)
      - Base font-size: 14px

   📱 Mobile: max-width: 767px
      - Pro standardní mobily (iPhone 12/13/14, Android)
      - Base font-size: 14px

   📱 Tablet: min-width: 768px AND max-width: 1023px
      - Pro tablety a malé notebooky
      - Base font-size: 15px
      - iPad, Android tablety

   💻 Desktop/HD: min-width: 1024px AND max-width: 1919px
      - Standardní počítače (1280x720, 1366x768, 1600x900, 1920x1080)
      - Base font-size: 16px
      - Většina notebooků a desktopů

   🖥️ Full HD: min-width: 1920px AND max-width: 2559px
      - Full HD monitory (1920x1080 a výše)
      - Base font-size: 17px

   🖥️ 4K & Ultra-wide: min-width: 2560px
      - 4K monitory (2560x1440, 3840x2160)
      - Ultra-wide displeje
      - Base font-size: 20px

   ======================================== */

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

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body, p, span, div, li, td, th, label, input, textarea, button {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

/* ========================================
   BASE/DEFAULT STYLES FOR DESKTOP
   These apply by default to all screen sizes
   Media queries below override these for specific breakpoints
   ======================================== */

.about-section {
    padding: 100px 50px;

}

.about-container {
    display: flex;
    gap: 60px;
}

.about-text {
    flex: 1;
    margin-left: 8%;
    max-width: 600px;
}

    .about-text h2 {
        font-size: 2.5rem;
        color: #1a3d2e;
        margin-bottom: 2rem;
        font-weight: 300;
        letter-spacing: 1px;
    }

    .about-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #333;
        margin-bottom: 1.5rem;
        text-align: justify;
    }

.about-photo {
    flex: 1;
    perspective: 1000px;
    /*! justify-content: center; */
}

.rotating-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    position: absolute;
    width: 500px;
    height: 550px;
    transition: all 0.5s ease;
    opacity: 0.4;
    transform: scale(0.8) translateX(0);
    z-index: 1;
}

    .carousel-slide.active {
        opacity: 1;
        transform: scale(1) translateX(0);
        z-index: 3;
    }

    .carousel-slide.prev {
        transform: scale(0.85) translateX(-350px);
        z-index: 2;
        opacity: 0.6;
        transform: rotate(-15deg);
        margin-right: 250px;
        scale: 0.8;
    }

    .carousel-slide.next {
        transform: scale(0.85) translateX(350px);
        z-index: 2;
        opacity: 0.6;
        transform: rotate(15deg);
        margin-left: 250px;
        scale: 0.8;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

.carousel-btn {
    position: absolute;
    transform: translateY(-50%);
    background-color: transparent;
    color: #1a3d2e;
    border: none;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 6rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

    .carousel-btn:hover {
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-btn.prev {
        left: 250px;
    }

    .carousel-btn.next {
        right: 250px;
    }

/* Mobile carousel adjustments */
   TABLET STYLES
   Tablet: 768px - 1024px
   ======================================== */
.duration-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
}

.duration-time {
    font-size: 16px;
    font-weight: 600;
}

.duration-price {
    font-size: 13px;
    color: #CCA361;
    font-weight: 500;
}

/* Souhrn - rozpis cen */
.summary-price-breakdown {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.summary-total {
    border-top: 2px solid #CCA361;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 18px;
}

.summary-price {
    color: #CCA361;
    font-weight: 700;
    font-size: 20px;
}

.summary-massage-details {
    font-size: 12px;
    color: #666;
}
/* Admin Buttons v Navbaru */
.btn-admin, .btn-admin-login {
    background: transparent;
    color: #CCA361;
    border: 2px solid #CCA361;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

    .btn-admin:hover, .btn-admin-login:hover {
        background: #CCA361;
        color: #1a3d2e;
        transform: translateY(-2px);
    }

.btn-logout {
    background: #dc3545;
    color: white;
    border: 2px solid #dc3545;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-logout:hover {
        background: white;
        color: #dc3545;
    }

/* ===== KONTAKTNÍ FORMULÁŘ ===== */
.contact-section {
    background: linear-gradient(135deg, #1a3d2e 0%, #0f2419 100%);
    padding: 80px 20px;
    margin-top: 60px;
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: #CCA361;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-title {
    color: #1a3d2e;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.contact-description {
    color: #1a3d2e;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-contact label {
    color: #1a3d2e;
    font-weight: 600;
    font-size: 1rem;
}

.form-group-contact input,
.form-group-contact textarea {
    padding: 14px 18px;
    border: 2px solid rgba(26, 61, 46, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group-contact input:focus,
.form-group-contact textarea:focus {
    outline: none;
    border-color: #1a3d2e;
    background: white;
    box-shadow: 0 0 0 4px rgba(26, 61, 46, 0.1);
}

.form-group-contact textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-contact {
    background: linear-gradient(135deg, #1a3d2e 0%, #0f2419 100%);
    color: #CCA361;
    border: 2px solid #1a3d2e;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(26, 61, 46, 0.3);
}

.btn-submit-contact:hover {
    background: #1a3d2e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 61, 46, 0.5);
}

.btn-submit-contact:active {
    transform: translateY(0);
}

.btn-submit-contact:disabled {
    background: #999;
    color: #ccc;
    border-color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mobile contact section adjustments */
.AdressInputWrapper {
    text-align: center;
    justify-content: center;
    margin-bottom: 5%;
}
    .AdressInputWrapper input {
        width: 80%;
        height: 10%;
        height: 45px;
        background: #CCA361;
        border-radius: 6px;
        border: solid 4px #CCA361;
    }
.AdressInputWrapper {
    margin: 20px 0;
    position: relative;
}

    .AdressInputWrapper h4 {
        margin-bottom: 10px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

/* Input pole */
#addressInput {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

    #addressInput:focus {
        outline: none;
        border-color: #CCA361;
        box-shadow: 0 0 0 3px rgba(204, 163, 97, 0.1);
    }

    #addressInput::placeholder {
        color: #999;
    }

    /* Input s aktivním dropdown */
    #addressInput.has-suggestions {
        border-radius: 8px 8px 0 0;
        border-bottom-color: transparent;
    }

/* Suggestions dropdown */
#suggestions {
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    overflow-y: auto;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

    #suggestions.active {
        display: block;
        animation: slideDown 0.2s ease;
    }

    #suggestions li {
        padding: 12px 18px;
        cursor: pointer;
        transition: all 0.2s ease;
        border-bottom: 1px solid #f5f5f5;
        color: #333;
        font-size: 14px;
    }

        #suggestions li:last-child {
            border-bottom: none;
        }

        #suggestions li:hover {
            background: linear-gradient(to right, rgba(204, 163, 97, 0.1), rgba(204, 163, 97, 0.05));
            color: #CCA361;
            padding-left: 22px;
        }

        #suggestions li.selected {
            background: #CCA361;
            color: white;
        }

        /* Zvýraznění matchujícího textu */
        #suggestions li .highlight {
            font-weight: 600;
            color: #CCA361;
        }

        #suggestions li:hover .highlight,
        #suggestions li.selected .highlight {
            color: white;
        }

        /* Loading stav */
        #suggestions li.loading {
            text-align: center;
            color: #999;
            font-style: italic;
            cursor: default;
            pointer-events: none;
        }

            #suggestions li.loading:hover {
                background: white;
                padding-left: 18px;
            }

        /* Žádné výsledky */
        #suggestions li.no-results {
            text-align: center;
            color: #999;
            cursor: default;
            pointer-events: none;
        }

            #suggestions li.no-results:hover {
                background: white;
                padding-left: 18px;
            }

    /* Scrollbar */
    #suggestions::-webkit-scrollbar {
        width: 8px;
    }

    #suggestions::-webkit-scrollbar-track {
        background: #f5f5f5;
        border-radius: 0 0 8px 0;
    }

    #suggestions::-webkit-scrollbar-thumb {
        background: #CCA361;
        border-radius: 4px;
    }

        #suggestions::-webkit-scrollbar-thumb:hover {
            background: #b8935a;
        }

/* Animace */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile address input adjustments */
.availability-section {
    position: absolute;
    right: 6%;
    top: 100px; /* Zarovnáno s process-container */
    width: calc(50% - 40px);
    max-width: 650px;
}

.availability-container {
    background: #1a3d2e;
    border-radius: 15px;
    padding: 20px;
    max-height: 600px; /* Maximální výška */
    overflow-y: auto; /* Scroll pokud je víc dní */
}

    /* Custom scrollbar */
    .availability-container::-webkit-scrollbar {
        width: 6px;
    }

    .availability-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .availability-container::-webkit-scrollbar-thumb {
        background: #CCA361;
        border-radius: 10px;
    }

        .availability-container::-webkit-scrollbar-thumb:hover {
            background: #b8924f;
        }

.availability-title {
    font-size: 2rem; /* Zmenšeno z 1.3rem */
    color: #1a3d2e;
    font-weight: 600;
    margin: 0 0 15px 0; /* Zmenšeno z 20px */
    text-align: center;
    padding-bottom: 12px; /* Zmenšeno z 15px */
    border-bottom: 2px solid #CCA361;
}

.availability-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Zmenšeno z 15px */
    /*! color: white; */
}

.availability-day {
    border-radius: 10px; /* Zmenšeno z 12px */
    transition: all 0.3s ease;
}

    .availability-day:hover {
    }

.availability-day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px; /* Zmenšeno z 10px */
    /*! color: #CCA361; */
}

.availability-date {
    font-weight: 600;
    color: #CCA361;
    font-size: 0.95rem; /* Zmenšeno z 1rem */
}

.availability-status {
    font-size: 0.8rem; /* Zmenšeno z 0.85rem */
    padding: 3px 8px; /* Zmenšeno z 4px 10px */
    border-radius: 10px;
    font-weight: 500;
}

    .availability-status.available {
        background: rgba(76, 175, 80, 0.2);
        color: #CCA361;
        border: #CCA361 solid 2px;
    }

    .availability-status.busy {
        background: rgba(255, 152, 0, 0.2);
        color: #e65100;
    }

    .availability-status.full {
        background: rgba(244, 67, 54, 0.2);
        color: #c62828;
    }

.availability-day-timeline {
    position: relative;
    height: 25px; /* Zmenšeno z 30px */
    background: linear-gradient(to right, #e8f5e9 0%, #e8f5e9 100%);
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #CCA361;
}

.availability-hours {
    display: flex;
    justify-content: space-between;
    margin-top: 4px; /* Zmenšeno z 5px */
    font-size: 0.65rem; /* Zmenšeno z 0.7rem */
    color: #CCA361;
}

.availability-block {
    position: absolute;
    top: 0;
    height: 100%;
    background: linear-gradient(135deg, #ff5252, #e53935);
    border-right: 1px solid #c62828;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem; /* Zmenšeno z 0.7rem */
    color: white;
    font-weight: 600;
    cursor: help;
    transition: all 0.3s ease;
}

    .availability-block:hover {
        opacity: 0.8;
        z-index: 10;
    }

/* Mobile availability adjustments */
.booking-summary-compact.hidden {
    display: none !important;
}
/* Transport & Process Section */
/* Transport & Process Section */
.transport-process-section {
    position: relative;
    padding: 100px 20px;
    background: #CCA361;
    min-height: 200vh; /* Zvětšeno pro více místa na scroll */
    padding-bottom: 0px;
}

.section-title {
    font-size: 3rem;
    color: #1a3d2e;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 5%;
    margin-bottom: 30px;
    text-align: center;
}

/* Process Container - Levá strana */
.process-container {
    position: absolute;
    left: 20px;
    top: 100px;
    max-width: 800px;
    will-change: transform, opacity;
    margin-left: 5%;
}

    .process-container.animate-in {
        opacity: 1;
        transform: translateX(0);
    }

.process-section {
    position: sticky;
    top: 80px;
}

.process-content {
    background: #1a3d2e;
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
}

/* Section title inside process/transport sections (dark background) */
.process-section .section-title,
.transport-section .section-title {
    color: #1a3d2e !important;
}

.process-text {
    color: #f0f0f0;
    line-height: 1.8;
}

    .process-text p {
        margin: 0 0 20px 0;
        font-size: 1rem;
    }

        .process-text p:last-of-type {
            margin-bottom: 30px;
        }

    .process-text strong {
        color: #CCA361;
        font-size: 1.1rem;
        display: block;
        margin-bottom: 5px;
    }

/* Video Section */
.process-video-container {
    margin-top: 30px;
}


.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

    .video-wrapper:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 40px rgba(204, 163, 97, 0.4);
    }

.process-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.video-wrapper:hover .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-wrapper.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-play-icon {
    font-size: 4rem;
    color: #CCA361;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.video-hint {
    color: white;
    font-size: 1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.process-container.fully-visible {
    margin-left: 5%;
    transition: margin-left 0.5s ease;
}

.transport-container.fully-visible {
    margin-right: 5%;
    transition: margin-right 0.5s ease;
}
/* Transport Container - Pravá strana */
.transport-container {
    position: absolute;
    right: 20px;
    top: 900px; /* Zvýšeno z 800px - více místa pro Dostupnost */
    width: calc(50% - 40px);
    max-width: 650px;
    will-change: transform, opacity;
    margin-right: 5%;
}

    .transport-container.animate-in {
        opacity: 1;
        transform: translateX(0);
    }

.transport-section {
    position: sticky;
    bottom: 80px;
}

.map-container {
    background: #1a3d2e;
    border-radius: 20px;
    /*! overflow: hidden; */
}

.map {
    width: 100%;
    height: 500px;
    background: #e0e0e0;
    position: relative;
    z-index: 1;
}

.map-legend {
    padding: 20px;
    background: #1a3d2e;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 1rem;
    color: #CCA361;
}

.legend-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #CCA361;
    flex-shrink: 0;
}

/* Video Fullscreen Modal */
.video-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

    .video-fullscreen.active {
        display: flex;
    }

    .video-fullscreen video {
        max-width: 90vw;
        max-height: 90vh;
        border-radius: 10px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

.video-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(204, 163, 97, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

    .video-close:hover {
        background: #CCA361;
        transform: scale(1.1);
    }

/* Mobile transport/process adjustments */
.time-picker-dual {
    display: flex;
    align-items: center;
    gap: 10px;
}
.time-separator {
    font-size: 2rem;
    font-weight: bold;
    color: #1a3d2e;
    padding: 0 5px;
}

.time-picker {
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    padding: 75px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.time-picker-section.disabled {
    position: relative;
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(0.5);
}

    .time-picker::-webkit-scrollbar {
        display: none;
    }
.massage-card-header {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

    .massage-card-header:hover {
        background: rgba(212, 175, 55, 0.05);
    }

.massage-card-title {
    flex: 1;
}

    .massage-card-title h5 {
        color: #1a3d2e;
        font-size: 1.05rem;
        font-weight: 600;
        margin: 0 0 5px 0;
    }

    .massage-card-title p {
        color: #666;
        font-size: 0.85rem;
        margin: 0;
    }

.massage-card-arrow {
    font-size: 1.5rem;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.massage-card-wrapper.expanded .massage-card-arrow {
    transform: rotate(180deg);
}

.duration-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.massage-card-wrapper.expanded .duration-content {
    max-height: 450px;
    padding: 0 15px 15px 15px;
}

.duration-selector {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.time-picker-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 50px;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.1);
    pointer-events: none;
    z-index: 1;
}

/* Massage Cards s délkou */
.massage-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0px;
    background: #CCA361;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .massage-card-wrapper:hover {
        border-color: #CCA361;
        background: rgba(204, 163, 97, 0.75)
    }

    .massage-card-wrapper.unavailable {
        opacity: 0.5;
        pointer-events: none;
        background: #f5f5f5;
    }

        .massage-card-wrapper.unavailable::after {
            content: ' (Nedostupné) ';
            margin-bottom: 5px;
            margin-left: 15px;
            color: #999;
            font-size: 0.85rem;
        }

.massage-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .massage-card-header h5 {
        color: #1a3d2e;
        font-size: 1.05rem;
        font-weight: 600;
        margin: 0;
    }

    .massage-card-header p {
        color: #666;
        font-size: 0.85rem;
        margin: 5px 0 0 0;
    }

.duration-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.duration-btn {
    flex: 1;
    min-width: 70px;
    padding: 8px 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    color: #1a3d2e;
}

    .duration-btn:hover {
        border-color: #d4af37;
        background: rgba(212, 175, 55, 0.1);
    }

    .duration-btn.selected {
        background: #d4af37;
        border-color: #d4af37;
        color: white;
        font-weight: 600;
    }

    .duration-btn.unavailable {
        background: #f5f5f5;
        color: #999;
        cursor: not-allowed;
        text-decoration: line-through;
    }

.duration-selector {
    display: flex;
    gap: 8px;
    flex-direction: column; /* ZMÌNÌNO z flex-wrap */
}

.duration-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.duration-btn {
    flex: 1;
    padding: 8px 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    color: #1a3d2e;
}

.add-to-cart-btn {
    background: #1a3d2e;
    color: #d4af37;
    border: none;
    width: 36px; /* Zvìteno */
    height: 36px; /* Zvìteno */
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .add-to-cart-btn:hover {
        background: #d4af37;
        color: #1a3d2e;
        transform: scale(1.1);
    }

    .add-to-cart-btn:disabled {
        background: #ccc;
        color: #666;
        cursor: not-allowed;
    }
/* Ostatní styly zùstávají stejné jako pøedtím... */
.timeline-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    margin-top: 20px;
}

    .timeline-section h4 {
        color: #1a3d2e;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0 0 15px 0;
    }

.timeline-wrapper {
    position: relative;
}
.timeline-bar {
    position: relative; /* ZKONTROLOVAT že máte */
}

.timeline-hour-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 0;
}
.timeline-hours {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    position: relative; /* PŘIDAT */
    height: 20px; /* PŘIDAT */
}
    .timeline-hours span {
        position: absolute; /* PŘIDAT */
        transform: translateX(-50%); /* PŘIDAT - vycentrovat */
    }

.timeline-bar {
    height: 40px;
    background: linear-gradient(to right, lightgreen 0%, lightgreen 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 2px solid #CCA361;
}

.timeline-block {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

    .timeline-block.booked {
        background: linear-gradient(135deg, #ff5252, #e53935);
        border-right: 2px solid #c62828;
    }

    .timeline-block.selected {
        background: linear-gradient(135deg, #d4af37, #b8941f);
        border-right: 2px solid #9a7a19;
        z-index: 2;
    }

    .timeline-block:hover {
        opacity: 0.8;
        transform: scaleY(1.05);
    }

/* Clickable timeline blocks */
.timeline-clickable-block {
    position: absolute;
    top: 0;
    height: 100%;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-clickable-block:hover {
    background: rgba(204, 163, 97, 0.2);
    border-left: 2px solid #CCA361;
    border-right: 2px solid #CCA361;
    z-index: 3;
}

.timeline-block-time-tooltip {
    display: none;
    position: absolute;
    font-size: 1.5rem;
    font-weight: 700;
    color: #CCA361;
    background: rgba(26, 61, 46, 0.95);
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid #CCA361;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    transform: translate(-50%, 0);
}

.timeline-hint-box {
    background: #1a3d2e;
    padding: 12px 20px;
    margin: 15px 0;
}

.timeline-hint {
    text-align: center;
    color: #CCA361;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

.timeline-legend {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #ddd;
}

    .legend-color.free {
        background: #e8f5e9;
    }

    .legend-color.booked {
        background: linear-gradient(135deg, #ff5252, #e53935);
    }

    .legend-color.selected {
        background: linear-gradient(135deg, #d4af37, #b8941f);
    }
.time-selection.hidden,
.timeline-section.hidden {
    display: none;
}
.time-timeline-card {
    background: #1a3d2e;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #CCA361;
    color: #CCA361;
}

    .time-timeline-card.hidden {
        display: none;
    }

    .time-timeline-card h4 {
        color: #CCA361;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0 0 20px 0;
        text-align: center;
    }

/* Timeline kompaktní */
.timeline-compact {
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.timeline-hours {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.timeline-block {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

    .timeline-block.booked {
        background: linear-gradient(135deg, #ff5252, #e53935);
        border-right: 2px solid #c62828;
    }

    .timeline-block.selected {
        background: linear-gradient(135deg, #d4af37, #b8941f);
        border-right: 2px solid #9a7a19;
        z-index: 2;
    }

    .timeline-block:hover {
        opacity: 0.8;
        transform: scaleY(1.05);
    }

.timeline-legend {
    display: flex;
    gap: 15px;
    margin-top: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #CCA361;
}

.legend-color {
    width: 2rem;
    height: 2rem;
    border-radius: 4px;
    border: 2px solid #CCA361;
}

    .legend-color.free {
        background: lightgreen;
    }

    .legend-color.booked {
        background: linear-gradient(135deg, #ff5252, #e53935);
    }

    .legend-color.selected {
        background: linear-gradient(135deg, #d4af37, #b8941f);
    }

/* Time Picker Section */
.time-picker-section .disabled-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    z-index: 10;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}
    .time-picker-section .disabled-overlay p {
        background: #f0f0f0;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 500;
        color: #666;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
.time-picker-section {
    margin-top: 20px;
}
    .time-picker-section.disabled {
        position: relative;
        opacity: 0.5;
        pointer-events: none;
        filter: grayscale(0.5);
    }

    .time-picker-section h5 {
        color: #CCA361;
        font-size: 1rem;
        font-weight: 600;
        margin: 0 0 15px 0;
        text-align: center;
    }

/* Time Picker zùstává stejný */
.time-picker-dual {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-picker-wrapper {
    position: relative;
    height: 60px;
    flex: 1;
    overflow: hidden;
    background: #CCA361;
    border-radius: 10px;
}

.time-picker {
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    padding: 20px 0; /* ZMÌNÌNO z 65px - pro mení výku */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.time-option {
    height: 50px; /* Stejné */
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: center;
    font-size: 1.1rem; /* ZMENENO z 1.3rem */
    font-weight: 500;
    color: #1a3d2e;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

    .time-option.active {
        color: #1a3d2e;
        font-size: 2.5rem; /* ZMENENO z 1.8rem */
        font-weight: 700;
        transform: scale(1.1);
    }

.time-picker-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 50px;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.1);
    pointer-events: none;
    z-index: 1;
}
.scroll-arrow {
  color: #1a3d2e;
  position: absolute;
  left: 90%;
  transform: translateX(-50%);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  transition: background 0.2s;
}

.scroll-arrow:hover {
  background: rgba(0, 0, 0, 0.2);
}

.scroll-arrow.up {
  top: 4px;
}

.scroll-arrow.down {
  bottom: 4px;
}

/* Time Input Wrapper */
.time-input-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.time-input {
    width: 100%;
    max-width: 200px;
    height: 60px;
    font-size: 2rem;
    font-weight: 700;
    color: #1a3d2e;
    background: #CCA361;
    border: none;
    border-radius: 10px;
    text-align: center;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.time-input:hover {
    background: #d4af37;
    transform: scale(1.02);
}

.time-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(204, 163, 97, 0.3);
    background: #d4af37;
}

.time-input::-webkit-calendar-picker-indicator {
    filter: invert(0.2);
    cursor: pointer;
    font-size: 1.5rem;
}

/* Booking Summary Compact */
.booking-summary-compact {
    background: #1a3d2e;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #CCA361;
}

    .booking-summary-compact h4 {
        color: #CCA361;
        font-size: 1.1rem; /* ZMENŠENO z 1.3rem */
        font-weight: 600;
        margin: 0 0 15px 0; /* ZMENŠENO z 20px */
        text-align: center;
    }

.summary-info {
    display: flex;
    flex-direction: column;
    gap: 10px; /* ZMENŠENO z 15px */
    margin-bottom: 15px; /* ZMENŠENO z 20px */
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 10px; /* ZMENŠENO z 12px */
    padding: 10px; /* ZMENŠENO z 12px */
    background: #f9f9f9;
    border-radius: 8px; /* ZMENŠENO z 10px */
    border: 2px solid #e0e0e0;
}

    .summary-item.full-width {
        flex-direction: column;
    }

.summary-icon {
    font-size: 1.2rem; /* ZMENŠENO z 1.5rem */
    flex-shrink: 0;
}

.summary-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px; /* ZMENŠENO z 4px */
}

.summary-label {
    font-size: 0.8rem; /* ZMENŠENO z 0.85rem */
    color: #CCA361;
    font-weight: 500;
}

.summary-value {
    font-size: 0.95rem; /* ZMENŠENO z 1.05rem */
    color: #CCA361;
    font-weight: 600;
}

.summary-massages {
    display: flex;
    flex-direction: column;
    gap: 6px; /* ZMENŠENO z 8px */
    margin-top: 6px; /* ZMENŠENO z 8px */
}

.summary-massage-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #1a3d2e;
    padding: 5px 10px;
    background: #CCA361;
    border-radius: 6px;
    gap: 10px;
}

.summary-massage-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.summary-massage-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.summary-massage-duration {
    color: #666;
    font-size: 0.85rem;
}

.summary-massage-price {
    color: #1a3d2e;
    font-weight: 600;
    font-size: 0.95rem;
}

.summary-massage-remove {
    background: #1a3d2e;
    color: #CCA361;
    border: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

    .summary-massage-remove:hover {
        background: #d32f2f;
        transform: scale(1.1);
    }

/* Duplicitní styly odstraněny - přesunuty výše */

.empty-text {
    color: #999;
    font-style: italic;
    font-size: 0.85rem; /* ZMENŠENO z 0.9rem */
}

.btn-book-modal {
    width: 100%;
    padding: 12px; /* ZMENŠENO z 15px */
    background: #CCA361;
    color: #1a3d2e;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem; /* ZMENŠENO z 1.2rem */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5% !important;;
}

    .btn-book-modal:hover:not(:disabled) {
        background: #d4af37;
        color: #1a3d2e;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

    .btn-book-modal:disabled {
        background: #ccc;
        color: #666;
        cursor: not-allowed;
        transform: none;
    }

/* Modal */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

    .booking-modal.show {
        display: block;
    }

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 600px;
    margin: 50px auto;
    background: #1a3d2e;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    background-color: #CCA361;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 2px solid #e0e0e0;
}

    .modal-header h3 {
        color: #1a3d2e;
        font-size: 1.5rem;
        font-weight: 600;
        margin: 0;
    }

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .modal-close:hover {
        background: #f5f5f5;
        color: #1a3d2e;
    }

.modal-body {
    padding: 25px;
}

.modal-summary {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

    .modal-summary h4 {
        color: #1a3d2e;
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0 0 15px 0;
    }

    .modal-summary p {
        margin: 8px 0;
        color: #1a3d2e;
        font-size: 1rem;
    }

.contact-form-modal h4 {
    color: #1a3d2e;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.form-group-modal {
    margin-bottom: 20px;
}

    .form-group-modal label {
        display: block;
        color: #1a3d2e;
        font-weight: 500;
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

    .form-group-modal input,
    .form-group-modal textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
        font-family: inherit;
    }

        .form-group-modal input:focus,
        .form-group-modal textarea:focus {
            outline: none;
            border-color: #d4af37;
        }

.btn-submit-modal {
    width: 100%;
    padding: 15px;
    background: #1a3d2e;
    color: #CCA361;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-submit-modal:hover:not(:disabled) {
        background: #0e5537;
        /*! color: #1a3d2e; */
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

    .btn-submit-modal:disabled {
        opacity: 0.7;
        cursor: wait !important;
        background: #1a3d2e;
        color: #d4af37;
        transform: none;
    }

    .btn-submit-modal:disabled::after {
        content: '';
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-left: 10px;
        border: 2px solid #d4af37;
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Notification Modal Styles */
.notification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

    .notification-modal.show {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.notification-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.notification-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideInScale 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid #d4af37;
}

.notification-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #1a3d2e;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .notification-close:hover {
        background: #f0f0f0;
        transform: rotate(90deg);
    }

.notification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

    .notification-icon.success {
        background: #d4af37;
        color: white;
    }

    .notification-icon.error {
        background: #e74c3c;
        color: white;
    }

    .notification-icon span {
        display: block;
        font-weight: bold;
    }

.notification-title {
    color: #1a3d2e;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    animation: fadeInUp 0.5s ease 0.3s both;
}

.notification-message {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    animation: fadeInUp 0.5s ease 0.4s both;
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Time Warning Styles */
.time-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #fff9e6 100%);
    border-left: 4px solid #ff9800;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 15px 0;
    animation: slideInWarning 0.4s ease-out;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.15);
}

.time-warning.error {
    background: linear-gradient(135deg, #f8d7da 0%, #fce4e6 100%);
    border-left: 4px solid #dc3545;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.15);
}

.warning-text {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

.time-warning.error .warning-text {
    color: #721c24;
}

@keyframes slideInWarning {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile modal adjustments */
hr {
    margin: 1rem 0;
    color: inherit;
    background-color: #1a3d2e;
    border: 0;
    opacity: 1;
    height: 5px !important;
}
.booking-section {
    padding: 90px 20px;
    background: #CCA361;
    min-height: 100vh;
    padding-top: 0px;
}

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

.booking-title {
    text-align: center;
    font-size: 4.5rem;
    color: #1a3d2e;
    margin-bottom: 0;
    padding: 80px 20px 60px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
}

    .booking-title::before,
    .booking-title::after {
        content: '';
        position: absolute;
        bottom: 20px;
        width: 150px;
        height: 2px;
        background: #1a3d2e;
    }
    .booking-title::before {
        left: 50%;
        transform: translateX(-170px);
    }

    .booking-title::after {
        right: 50%;
        transform: translateX(170px);
    }

.booking-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #1a3d2e;
    padding: 30px;
    border-radius: 20px;
}

.booking-left, .booking-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /*! font-size: 5rem; */
}

/* KalendáØ */
.calendar-compact {
    background: #1a3d2e;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #CCA361;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    height: 10%;
}

    .calendar-header h3 {
        color: #CCA361;
        font-size: 1.3rem;
        font-weight: 500;
        margin: 0;
    }

.month-btn {
    background: transparent;
    color: #CCA361;
    border: none;
    border-radius: 50%;
    margin-bottom: 3.5%;
    font-size: 5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .month-btn:hover {
        transform: scale(1.1);
    }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0px;
    border: 2px solid #CCA361; /* PŘIDAT */
    border-radius: 10px; /* PŘIDAT */
    overflow: hidden; /* PŘIDAT */
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: #CCA361;
    font-size: 0.85rem;
    padding: 8px 0;
    border-right: 1px solid #CCA361; /* PŘIDAT */
    border-bottom: 2px solid #CCA361; /* PŘIDAT */
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-right: 1px solid #CCA361; /* PŘIDAT */
    border-bottom: 1px solid #CCA361; /* PŘIDAT */
    color: white;
}
    .calendar-day:nth-child(7n) {
        border-right: none; /* PŘIDAT - každý 7. den bez pravé čáry */
    }

    .calendar-day:hover:not(.disabled):not(.empty) {
        background: rgba(212, 175, 55, 0.2);
        border-color: #CCA361;
    }

    .calendar-day.selected {
        background: #CCA361;
        color: white;
        font-weight: 600;
    }

    .calendar-day.today {
        font-weight: 600;
    }

    .calendar-day.disabled {
        color: #5d5d5d ;
        cursor: not-allowed;
    }

    .calendar-day.empty {
        cursor: default;
    }

/* Èasy */
.time-selection, .massage-selection, .booking-form-compact {
    background: #1a3d2e;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #CCA361;
    color: #CCA361;
}

    .time-selection h4, .massage-selection h4, .booking-form-compact h4 {
        color: #CCA361;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0 0 15px 0;
    }

.time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.time-slot-btn {
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #1a3d2e;
    font-size: 0.95rem;
}

    .time-slot-btn:hover:not(.booked) {
        border-color: #d4af37;
        background: rgba(212, 175, 55, 0.1);
        transform: translateY(-2px);
    }

    .time-slot-btn.selected {
        background: #d4af37;
        border-color: #d4af37;
        color: white;
    }

    .time-slot-btn.booked {
        background: #f5f5f5;
        color: #999;
        cursor: not-allowed;
        text-decoration: line-through;
    }

.select-date-first, .select-time-first {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
    grid-column: 1 / -1;
}

/* Masáe */
.massage-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.massage-card {
    padding: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .massage-card:hover {
        border-color: #d4af37;
        background: rgba(212, 175, 55, 0.05);
        transform: translateX(5px);
    }

    .massage-card.selected {
        border-color: #d4af37;
        background: rgba(212, 175, 55, 0.15);
    }

    .massage-card h5 {
        color: #1a3d2e;
        font-size: 1.05rem;
        font-weight: 600;
        margin: 0 0 5px 0;
    }

    .massage-card p {
        color: #666;
        font-size: 0.85rem;
        margin: 0;
        line-height: 1.4;
    }

/* Formuláø */
.booking-form-compact form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-form-compact input,
.booking-form-compact textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

    .booking-form-compact input:focus,
    .booking-form-compact textarea:focus {
        outline: none;
        border-color: #d4af37;
    }

.selected-info {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #d4af37;
    margin: 10px 0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    color: #1a3d2e;
}

.btn-book {
    padding: 15px;
    background: #1a3d2e;
    color: #d4af37;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-book:hover {
        background: #d4af37;
        color: #1a3d2e;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

    .btn-book:disabled {
        background: #ccc;
        color: #666;
        cursor: not-allowed;
        transform: none;
    }

.booking-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

    .booking-message.success {
        background-color: #d4edda;
        color: #155724;
        border: 2px solid #c3e6cb;
        display: block;
    }

    .booking-message.error {
        background-color: #f8d7da;
        color: #721c24;
        border: 2px solid #f5c6cb;
        display: block;
    }

/* Mobile booking adjustments */
.services-grid {
    display: flex;
    height: 70vh;
    gap: 0;
    /*! box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3), /\* Stín nahoru *\/
    0 20px 40px rgba(0, 0, 0, 0.3); */ /* Stín dolù */
}

.services-container {
    width: 100%;
    background-color: #1a3d2e;
    padding-bottom: 8%;
}

.services-title {
    text-align: center;
    font-size: 4.5rem;
    color: #CCA361;
    margin-bottom: 0;
    padding: 80px 20px 60px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
}

    .services-title::before,
    .services-title::after {
        content: '';
        position: absolute;
        bottom: 20px;
        width: 150px;
        height: 2px;
        background: #CCA361;
    }

    .services-title::before {
        left: 50%;
        transform: translateX(-170px);
    }

    .services-title::after {
        right: 50%;
        transform: translateX(170px);
    }

.service-card {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s ease;
    border-right: 2px solid #CCA361; /* Zlatá èára jako oddìlovaè */
}

    .service-card:nth-child(1) {
        background-image: linear-gradient(rgba(26, 61, 46, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=800');
    }

    .service-card:nth-child(2) {
        background-image: linear-gradient(rgba(26, 61, 46, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=800');
    }

    .service-card:nth-child(3) {
        background-image: linear-gradient(rgba(26, 61, 46, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?w=800');
    }

    .service-card:nth-child(4) {
        background-image: linear-gradient(rgba(26, 61, 46, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?w=800');
    }

    .service-card:nth-child(5) {
        background-image: linear-gradient(rgba(26, 61, 46, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?w=800');
    }

    .service-card:last-child {
        border-right: none; /* Poslední karta nemá èáru vpravo */
    }

    .service-card.expanded {
        flex: 5;
    }

.service-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    color: white;
    position: relative;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #CCA361;
    text-orientation: mixed;
    letter-spacing: 3px;
    transition: all 0.6s ease;
    margin: 0;
}

.service-card.expanded h3 {
    writing-mode: horizontal-tb;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-details {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    max-width: 600px;
    text-align: center;
}

.service-card.expanded .service-details {
    opacity: 1;
    transform: translateY(0);
}

/* Tap indicator wrapper - shown only on mobile when card is not expanded */
.tap-indicator-wrapper {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.tap-indicator {
    color: #CCA361;
    font-size: 2.5rem;
    animation: tap-pulse 2s ease-in-out infinite;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.tap-text {
    color: #CCA361;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

@keyframes tap-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.service-card.expanded .tap-indicator-wrapper {
    display: none !important;
}

.service-details p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-details li {
    font-size: 1.1rem;
    color: #CCA361;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

/* Mobile services grid */
.footer-page {
    background: #CCA361;
    color: #1a3d2e;
    padding: 25px 20px 20px;
    border-top: solid 10px burlywood
    
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #1a3d2e;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section h4 {
    color: #1a3d2e;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: #1a3d2e;
    line-height: 1.6;
    margin: 8px 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a3d2e;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(204, 163, 97, 0.1);
}

    .social-link:hover {
        background: rgba(204, 163, 97, 0.2);
        color: #fff;
        transform: translateX(5px);
    }

.social-icon {
    font-size: 1.5rem;
}

.footer-bottom {
    border-top: 2px solid rgba(204, 163, 97, 0.3);
    text-align: center;
}

    .footer-bottom p {
        color: #1a3d2e;
        margin: 8px 0;
        font-size: 0.95rem;
    }

.footer-author {
    margin-top: 10px;
}

.author-link {
    color: #1a3d2e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

    .author-link:hover {
        color: #1a3d2e;
        text-decoration: underline;
    }

/* Mobile footer adjustments */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden !important;
    background-color: #CCA361;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

.container-fluid,
section,
div {
    max-width: 100%;
}

.navbar-custom {
    background-color: #1a3d2e;
    border-bottom: #CCA361 solid 8px;
    opacity: 1;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.4s ease-in-out;
    transform: translateY(0);
}

.navbar-brand {
    color: #CCA361;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    border-right: #CCA361 solid 8px;
    padding-right: 2rem;
    margin-right: 1rem;
}

.navbar-nav {
    margin-left: 0;
}

.navbar-nav .nav-link {
    color: #CCA361;
    font-size: 1.3rem;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.phone-number {
    color: #CCA361;
    font-size: 1.3rem;
    font-weight: 500;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;    
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.7;
}

.hero-content {
    margin-top: 15%;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 450;
    color: #CCA361;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 3px solid #CCA361;
    padding-bottom: 1.5rem;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 2rem 0;
    color: #CCA361;
    font-weight: 400;
}

.btn-booking {
    background-color: transparent;
    color: #CCA361;
    border: 2px solid #CCA361;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

    .btn-booking:hover {
        background-color: #CCA361;
        color: #1a3d2e;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    }

/* Hero buttons container */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Primary button variant (Rezervovat) */
.btn-booking.btn-primary {
    background-color: #CCA361;
    color: #1a3d2e;
    border: 2px solid #CCA361;
    margin-top: 0;
}

.btn-booking.btn-primary:hover {
    background-color: #b8925a;
    border-color: #b8925a;
    color: #1a3d2e;
}

/* Secondary button variant (Ceník) */
.btn-booking.btn-secondary {
    background-color: transparent;
    color: #CCA361;
    border: 2px solid #CCA361;
    margin-top: 0;
}

.btn-booking.btn-secondary:hover {
    background-color: #CCA361;
    color: #1a3d2e;
}

/* Small link button for "Jak to probíhá" */
.btn-link-small {
    display: inline-block;
    margin-top: 1.5rem;
    color: #CCA361;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.btn-link-small:hover {
    opacity: 1;
    color: #b8925a;
    transform: translateX(5px);
}

.btn-link-small i {
    margin-right: 5px;
}

/* ========================================
   MOBILE & TABLET STYLES
   Mobile/Tablet: do 1024px
   ======================================== */
@media (min-width: 768px) and (max-width: 1023px) {
    html {
        font-size: 15px;
    }

    .navbar-brand {
        font-size: 1.6rem;
    }

    .navbar-nav .nav-link {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 3rem !important;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
}

/* ========================================
   DESKTOP/HD STYLES
   Desktop: 1024px - 1920px (Standard HD)
   ======================================== */
@media (min-width: 1024px) and (max-width: 1919px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 1023px) {
    /* Navbar mobile/tablet - stylizace burger menu */
    .navbar-custom {
        padding: 0.8rem 1rem;
        background-color: #1a3d2e;
    }

    .navbar-brand {
        font-size: 1.4rem;
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }

    .navbar-toggler {
        border: 2px solid #CCA361;
        padding: 0.5rem 0.75rem;
        background-color: rgba(204, 163, 97, 0.1);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .navbar-toggler:hover {
        background-color: rgba(204, 163, 97, 0.2);
        transform: scale(1.05);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(204, 163, 97, 0.3);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23CCA361' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 24px;
        height: 24px;
    }

    /* Burger menu rozbalené */
    .navbar-collapse {
        margin-top: 1rem;
        background: linear-gradient(135deg, #1a3d2e 0%, #0f2419 100%);
        padding: 1.5rem 1rem;
        border-radius: 15px;
        border: 2px solid #CCA361;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .navbar-nav {
        text-align: center;
        gap: 0;
        padding: 0;
    }

    .navbar-nav .nav-link {
        font-size: 1.2rem;
        margin: 0;
        padding: 1rem 1.5rem;
        background: transparent;
        transition: all 0.3s ease;
        border-radius: 8px;
        color: #CCA361 !important;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(204, 163, 97, 0.15);
        color: #fff !important;
        transform: translateX(5px);
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Admin tlačítka v mobile menu */
    .btn-admin-login {
        margin: 0.5rem auto;
        text-align: center;
        width: 80% !important;
        max-width: 250px;
        display: block;
        padding: 0.8rem 2rem;
        background: #CCA361;
        color: #1a3d2e;
        border: 2px solid #CCA361;
        border-radius: 10px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-admin-login:hover {
        background: transparent;
        color: #CCA361;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(204, 163, 97, 0.3);
    }

    /* Hero section */
    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content {
        margin-top: 10rem;
        padding: 1rem;
    }

    .phone-number {
        text-align: center;
        margin-top: 1rem;
    }

    /* About section */
    .about-section {
        padding: 60px 20px;
    }

    .about-container {
        flex-direction: column;
        gap: 0px;
    }

    .about-text {
        margin-left: 0;
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 2rem !important;
        text-align: center;
    }

    .about-text h3 {
        text-align: center;
    }

    /* Services grid */
    .services-title {
        font-size: 2.5rem;
        padding: 40px 20px 30px;
    }

    /* Booking section */
    .booking-compact {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .booking-title {
        font-size: 2rem;
        padding: 40px 20px 30px;
    }

    .calendar-compact,
    .time-timeline-card,
    .massage-selection,
    .booking-summary-compact {
        padding: 15px;
    }

    .calendar-header h3 {
        font-size: 1.1rem;
    }

    .month-btn {
        font-size: 3rem;
    }

    /* Transport & Process */
    .transport-process-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .process-container,
    .transport-container,
    .availability-section {
        position: static;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 40px auto;
        padding: 0 15px;
    }

    .process-section,
    .transport-section {
        position: static;
        border-radius: 15px;
    }

    .process-content {
        padding: 25px 20px;
        text-align: center;
    }

    .process-text {
        text-align: left;
        max-width: 100%;
        color: #f0f0f0;
    }

    .process-text p {
        margin-bottom: 1.2rem;
        color: #f0f0f0;
    }

    .process-text strong {
        color: #CCA361;
    }

    .map {
        height: 350px;
    }

    /* Contact section */
    .contact-section {
        padding: 60px 15px;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .contact-title {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        align-items: center;
    }
}

@media (max-width: 576px) {
    /* Extra small devices - iPhone 12/13 Pro (390px) */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }

    /* Prevent all containers from overflowing */
    .container,
    .container-fluid,
    section,
    div,
    .row {
        max-width: 100% !important;
    }

    .navbar-custom {
        padding: 0.5rem 0.8rem;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .navbar-brand {
        font-size: 1.1rem;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.7rem;
    }

    .hero-section {
        background-attachment: scroll;
        width: 100%;
        max-width: 100vw;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 1rem 15px;
    }

    .hero-title {
        max-width: 100%;
        word-wrap: break-word;
    }

    .hero-title {
        font-size: 3rem !important;
        letter-spacing: 1px;
        padding-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        line-height: 1.6;
    }

    .hero-content {
        margin-top: 8rem;
        padding: 1rem 0.5rem;
    }

    .btn-booking {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }

    /* Hero buttons responsiveness */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 1rem;
    }

    .btn-booking.btn-primary,
    .btn-booking.btn-secondary {
        width: 100%;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .btn-link-small {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    /* About section */
    .about-section {
        padding: 40px 15px;
    }

    .about-text h2 {
        font-size: 4.6rem !important;
        font-weight: 350;
    }

    .about-text h3 {
        font-size: 1.1rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    /* Carousel */
    .rotating-carousel {
        height: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .carousel-slide {
        width: 180px;
        height: 220px;
        transform: scale(1) translateX(0) !important;
    }

    .carousel-slide.prev {
        transform: scale(0.7) translateX(-120px) !important;
        margin-right: 0;
    }

    .carousel-slide.next {
        transform: scale(0.7) translateX(120px) !important;
        margin-left: 0;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
        z-index: 5;
    }

    .carousel-btn.prev {
        left: 2px;
    }

    .carousel-btn.next {
        right: 2px;
    }

    /* Services */
    .services-title {
        font-size: 3.2rem;
        letter-spacing: 2px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    /* Booking section */
    .booking-section {
        padding: 40px 10px;
    }

    .booking-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .booking-compact {
        padding: 12px;
    }

    .calendar-compact,
    .time-timeline-card,
    .massage-selection,
    .booking-summary-compact {
        padding: 12px;
    }

    .calendar-header h3 {
        font-size: 1rem;
    }

    .month-btn {
        font-size: 2.5rem;
    }

    .calendar-day {
        font-size: 0.85rem;
    }

    /* Transport & Process */
    .transport-process-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .process-container,
    .transport-container,
    .availability-section {
        padding: 0 10px !important;
        margin-bottom: 30px;
    }

    .process-content {
        padding: 20px 15px !important;
        text-align: center;
    }

    .process-text {
        text-align: left;
        padding: 0 10px;
        color: #f0f0f0;
    }

    .process-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
        color: #f0f0f0;
    }

    .process-text strong {
        font-size: 1rem;
        color: #CCA361;
        display: block;
        margin-bottom: 0.3rem;
    }

    .map-container {
        margin: 0;
        padding: 15px;
        /*! overflow: visible !important; */
    }

    .map {
        height: 300px !important;
        border-radius: 10px;
        width: 100% !important;
        position: relative;
    }

    #map {
        height: 300px !important;
        width: 100% !important;
    }

    .availability-day-timeline {
        height: 20px;
    }

    .availability-date {
        font-size: 0.85rem;
    }

    .availability-status {
        font-size: 0.7rem;
        padding: 2px 6px;
    }

    .availability-hours {
        font-size: 0.6rem;
    }

    /* Contact section */
    .contact-section {
        padding: 40px 10px;
    }

    .contact-card {
        padding: 25px 15px;
    }

    .contact-title {
        font-size: 1.6rem;
    }

    .contact-description {
        font-size: 0.95rem;
    }

    .form-group-contact input,
    .form-group-contact textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-page {
        padding: 20px 15px;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    /* Modal */
    .modal-content {
        margin: 20px 10px;
        max-width: calc(100vw - 20px);
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }

    /* Ensure nothing overflows */
    .container-fluid,
    .booking-container,
    .contact-card,
    .process-content,
    .map-container {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Timeline adjustments */
    .timeline-bar {
        min-height: 30px;
        max-width: 100%;
        overflow: hidden;
    }

    .timeline-hours {
        max-width: 100%;
        overflow: hidden;
    }

    .timeline-hours span {
        font-size: 0.6rem;
    }

    .timeline-compact {
        max-width: 100%;
        overflow-x: hidden;
    }

    .timeline-wrapper {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Calendar */
    .calendar-grid {
        max-width: 100%;
        font-size: 0.8rem;
    }

    .calendar-day-header {
        font-size: 0.7rem;
        padding: 4px 2px;
    }

    /* Booking forms */
    .booking-compact,
    .booking-container {
        max-width: 100% !important;
        padding: 10px !important;
    }

    .time-timeline-card {
        max-width: 100%;
        overflow-x: hidden;
        padding: 10px;
    }

    /* Address input */
    .AdressInputWrapper {
        max-width: 100%;
        overflow: hidden;
    }

    .AdressInputWrapper input {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    #suggestions {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Summary compact */
    .summary-item {
        padding: 8px;
        font-size: 0.85rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .summary-label {
        font-size: 0.75rem;
    }

    .summary-value {
        font-size: 0.85rem;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .btn-book-modal {
        padding: 10px;
        font-size: 1rem;
        max-width: 100%;
    }

    /* Process & Transport sections */
    .process-container,
    .transport-container,
    .availability-section {
        max-width: 100% !important;
        padding: 0 10px !important;
    }

    .process-content {
        max-width: 100%;
        padding: 15px;
    }

    .process-text {
        max-width: 100%;
    }

    .process-text p,
    .process-text strong {
        word-break: normal;
        overflow-wrap: break-word;
    }

    /* Map */
    .map-container {
        max-width: 100% !important;
        overflow: visible;
    }

    #map {
        max-width: 100%;
        height: 400px !important;
    }

    /* Availability */
    .availability-container {
        max-width: 100%;
        overflow-x: hidden;
    }

    .availability-day-timeline {
        max-width: 100%;
        overflow: hidden;
    }

    /* Services grid */
    .services-grid {
        max-width: 100%;
        overflow-x: hidden;
    }

    .service-card {
        max-width: 100%;
    }

    /* About section */
    .about-container {
        max-width: 100%;
        overflow-x: hidden;
        height: 100rem;
    }

    .about-text {
        max-width: 100%;
    }

    .about-text p,
    .about-text h2,
    .about-text h3 {
        word-break: normal;
        overflow-wrap: break-word;
        font-size: 1.5rem;
    }

    /* Rotating carousel */
    .rotating-carousel {
        max-width: 100%;
        overflow: hidden;
    }

    .carousel-track {
        max-width: 100%;       
        align-items: baseline;
    }

    /* Footer */
    .footer-container {
        max-width: 100%;
        overflow-x: hidden;
    }

    .footer-content {
        max-width: 100%;
    }

    /* Global text overflow prevention */
    p, h1, h2, h3, h4, h5, h6, span, div {
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: none;
    }

    /* Table overflow (for admin if visible) */
    table {
        max-width: 100%;
        overflow-x: auto;
     
    }

    /* Zvýraznění šipky u masáží na mobilu */
    .massage-card-arrow {
        font-size: 2rem;
        font-weight: bold;
        color: #CCA361;
        animation: pulseArrow 2s infinite;
    }

    @keyframes pulseArrow {
        0%, 100% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.1);
            opacity: 0.8;
        }
    }

    .massage-card-wrapper.expanded .massage-card-arrow {
        animation: none;
    }
}

/* Action buttons - Rezervace a Ceník */
.btn-primary-action,
.btn-secondary-action {
    display: inline-block;
    padding: 15px 35px;
    margin: 10px 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary-action {
    background: #CCA361;
    color: #1a3d2e;
    border: 2px solid #CCA361;
}

.btn-primary-action:hover {
    background: #b8925a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: #1a3d2e;
}

.btn-secondary-action {
    background: transparent;
    color: #CCA361;
    border: 2px solid #CCA361;
}

.btn-secondary-action:hover {
    background: #CCA361;
    color: #1a3d2e;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary-action i,
.btn-secondary-action i {
    margin-right: 8px;
}

@media (max-width: 576px) {
    .btn-primary-action,
    .btn-secondary-action {
        display: block;
        margin: 10px auto;
        max-width: 280px;
        text-align: center;
    }
}

/* Additional mobile/tablet improvements */
@media (max-width: 1023px) {
    /* Carousel buttons for mobile/tablet */
    .carousel-btn {
        width: 100px !important;
        height: 100px !important;
        font-size: 8rem !important;
    }

    .carousel-btn.prev {
        left: 1% !important;
    }

    .carousel-btn.next {
        right: 1% !important;
    }
}

/* ========================================
   DESKTOP STYLES
   Desktop: 1024px - 1920px (HD/Full HD)
   ======================================== */
@media (min-width: 1024px) and (max-width: 1919px) {
    .navbar-brand {
        font-size: 1.8rem;
        padding-right: 2rem;
    }

    .navbar-nav .nav-link {
        font-size: 1.3rem;
        margin: 0 0.5rem;
        padding: 0.5rem 1rem;
    }

    .carousel-btn.prev {
        left: 20% !important;
    }
    .carousel-btn.next {
        right: 20% !important;
    }
    .carousel-track {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin: auto;
    }
    .about-photo {

    }
    .navbar-nav .nav-link {
        font-size: 1.1rem;
        margin: 0 0.3rem;
        padding: 0.5rem 0.8rem;
    }

    .hero-title {
        font-size: 3.5rem !important;
    }

    .services-title,
    .booking-title {
        font-size: 3.5rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .btn-admin-login {
        font-size: 0.95rem;
        padding: 6px 16px;
    }

    /* KLÍČOVÁ ZMĚNA: Vypnout absolute positioning pro HD rozlišení */
    .transport-process-section {
        position: relative !important;
        min-height: auto !important;
        padding: 60px 30px !important;
        background: #CCA361;
        display: block !important;
    }

    /* Jak to probíhá - první sekce */
    .process-container {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        max-width: 900px !important;
        margin: 0 auto 50px auto !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .process-section {
        position: static !important;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    /* Dostupnost - druhá sekce */
    .availability-section {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        max-width: 900px !important;
        margin: 0 auto 50px auto !important;
        border-radius: 20px;
        padding: 30px;       
        transform: none !important;
        opacity: 1 !important;
    }

    /* Doprava - třetí sekce */
    .transport-container {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        max-width: 900px !important;
        margin: 0 auto !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .transport-section {
        position: static !important;
        border-radius: 20px;
        padding: 30px;
    }

    /* FIX: Mapa v mobilním rozlišení */
    .map-container {
        position: relative !important;
        overflow: visible !important;
        height: auto !important;
        min-height: 350px !important;
    }

    #map,
    .map {
        position: relative !important;
        height: 350px !important;
        width: 100% !important;
        z-index: 1 !important;
    }

    /* Nadpisy - zlatá barva pro kontrast */
    .section-title {
        font-size: 2.2rem !important;
        text-align: center;
        margin-bottom: 1.5rem;
        color: #CCA361 !important;
    }

    /* Jak to probíhá - text */
    .process-content {
        padding: 20px;
    }

    .process-text {
        max-width: 100%;
        text-align: left;
        color: #fff;
    }

    .process-text p {
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
        line-height: 1.7;
        color: #f0f0f0;
    }

    .process-text strong {
        color: #CCA361;
        font-size: 1.05rem;
        display: block;
        margin-bottom: 0.4rem;
    }

    /* Dostupnost - timeline */
    .availability-container {
        max-height: none !important;
        overflow: visible !important;
    }

    .availability-timeline {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* Doprava - mapa */
    .map-container {
        width: 100%;
        max-width: 100%;
    }

    .map {
        height: 400px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .map-legend {
        margin-top: 15px;
    }
}

/* ========================================
   FULL HD STYLES
   Full HD: 1920px - 2560px
   Higher specificity to override base styles
   ======================================== */
@media (min-width: 1920px) and (max-width: 2559px) {
    html {
        font-size: 17px;
    }

    .navbar-brand {
        font-size: 2rem;
        padding-right: 3rem;
    }

    .navbar-nav .nav-link {
        font-size: 1.4rem;
        margin: 0 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-title {
        font-size: 4.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .btn-booking {
        font-size: 1.3rem;
        padding: 1.2rem 3rem;
    }

    .btn-admin-login {
        font-size: 1.1rem;
        padding: 10px 24px;
    }

    /* About section */
    .about-text h2 {
        font-size: 3.5rem;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 1.2rem;
        line-height: 2;
    }

    /* Services */
    .services-title {
        font-size: 4.5rem;
    }

    .service-card h3 {
        font-size: 2rem;
    }

    .service-card p,
    .service-card li {
        font-size: 1.1rem;
    }

    /* Booking section */
    .booking-title {
        font-size: 4.5rem;
    }

    .calendar-header h3 {
        font-size: 1.6rem;
    }

    .calendar-day {
        font-size: 1.1rem;
    }

    /* Process & Transport sections */
    .section-title {
        font-size: 3rem;
    }

    .process-text p {
        font-size: 1.15rem;
        line-height: 2;
    }

    .process-text strong {
        font-size: 1.3rem;
    }

    .map {
        height: 600px;
    }

    /* Contact */
    .contact-title {
        font-size: 3.5rem;
    }

    .contact-description {
        font-size: 1.2rem;
    }

    .form-group-contact label {
        font-size: 1.1rem;
    }

    .form-group-contact input,
    .form-group-contact textarea {
        font-size: 1.1rem;
        padding: 14px 18px;
    }

    /* Footer */
    .footer-section h3 {
        font-size: 1.8rem;
    }

    .footer-section h4 {
        font-size: 1.4rem;
    }

    .footer-section p {
        font-size: 1.1rem;
    }
}

/* ========================================
   4K AND ULTRA-WIDE DISPLAYS
   4K: 2560px and above
   ======================================== */
@media (min-width: 2560px) {
    html {
        font-size: 20px;
    }
    .massage-card-header h5 {
      color: #1a3d2e;
      font-size: 2.05rem;
      font-weight: 600;
      margin: 0;
    }
    .massage-card-header p {
  color: #666;
  font-size: 1.85rem;
  margin: 5px 0 0 0;
}
    .add-to-cart-btn {
  background: #1a3d2e;
  color: #d4af37;
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  font-size: 2rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
    .summary-massage-name {
        font-size: 0.9rem;
    }

    .summary-massage-duration {
        font-size: 0.8rem;
    }

    .summary-massage-price {
        font-size: 0.9rem;
    }
    .modal-content {
  position: relative;
  max-width: 20%;
  margin: 50px auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-height: 70%;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
  /*! font-size: 50rem; */
}
    .duration-time {
  font-size: 2rem;
  font-weight: 600;
}
    .duration-price {
  font-size: 2rem;
  font-weight: 600;
}
    .modal-header h3 {
  color: #1a3d2e;
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
}
    .modal-summary h4 {
  color: #1a3d2e;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 15px 0;
}
    .modal-summary p {
  margin: 8px 0;
  color: #1a3d2e;
  font-size: 1.4rem;
}
    .contact-form-modal h4 {
  color: #1a3d2e;
  font-size: 2.1rem;
  font-weight: 600;
  margin: 0 0 20px 0;
}
    .form-group-modal label {
  display: block;
  color: #1a3d2e;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 1.5rem;
}
    .form-group-modal input, .form-group-modal textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 2rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}
    .btn-submit-modal {
  width: 100%;
  padding: 15px;
  background: #1a3d2e;
  /*! color: #d4af37; */
  border: none;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
    .btn-submit-contact:hover {
      background: #1a3d2e;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(26, 61, 46, 0.5);
    }
    .footer-bottom p {
      color: #1a3d2e;
      margin-top: 5rem;
      font-size: 1.95rem;
    }
    .booking-summary-compact h4 {
      color: #CCA361;
      font-size: 3.1rem;
      font-weight: 600;
      margin: 0 0 15px 0;
      text-align: center;
    }
    .summary-total {
      border-top: 2px solid #CCA361;
      padding-top: 10px;
      margin-top: 10px;
      font-size: 18px;
    }
    .summary-value {
      font-size: 2.5rem;
      color: #CCA361;
      font-weight: 600;
        padding-left: 1.5rem;
    }
    .empty-text {
  color: #999;
  font-style: italic;
  font-size: 1.85rem;
}
    .btn-book-modal {
  width: 100%;
  padding: 12px;
  background: #CCA361;
  color: #1a3d2e;
  border: none;
  border-radius: 10px;
  font-size: 3.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5% !important;
}
    .summary-label {
        font-size: 2.5rem
    }
    .btn-submit-contact {
      background: linear-gradient(135deg, #1a3d2e 0%, #0f2419 100%);
      color: #CCA361;
      border: 2px solid #1a3d2e;
      padding: 16px 32px;
      border-radius: 12px;
      font-size: 3rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 10px;
      box-shadow: 0 4px 15px rgba(26, 61, 46, 0.3);
    }
    .contact-card {
      max-width: 160rem;
      margin: 0 auto;
      background: #CCA361;
      border-radius: 20px;
      padding: 50px 40px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    .carousel-slide.active {
        opacity: 1;
        transform: scale(1.5) translateX(0);
        z-index: 3;
    }
    .carousel-slide.prev {
        transform: scale(1) translateX(-350px);
        z-index: 2;
        opacity: 0.6;
        transform: rotate(-15deg);
        margin-right: 250px;
        scale: 0.8;
    }

    .carousel-slide.next {
        transform: scale(1) translateX(350px);
        z-index: 2;
        opacity: 0.6;
        transform: rotate(15deg);
        margin-left: 250px;
        scale: 0.8;
    }
    .time-selection, .massage-selection, .booking-form-compact {
        background: #1a3d2e;
        padding: 20px;
        border-radius: 15px;
        border: 2px solid #CCA361;
        color: #CCA361;
        font-size: 3rem;
    }

        .time-selection h4, .massage-selection h4, .booking-form-compact h4 {
            color: #CCA361;
            font-size: 3.2rem;
            font-weight: 600;
            margin: 0 0 15px 0;
        }
    .calendar-day-header {
      text-align: center;
      font-weight: 600;
      color: #CCA361;
      font-size: 3.85rem;
      padding: 8px 0;
      border-right: 1px solid #CCA361;
      border-bottom: 2px solid #CCA361;
    }
    
    .AdressInputWrapper {
        margin: 20px 0;
        position: relative;
        font-size: 80px;
    }
    #addressInput {
        width: 100%;
        padding: 14px 18px;
        font-size: 45px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        background: white;
        color: #333;
        transition: all 0.3s ease;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        box-sizing: border-box;
        height: 50%;
    }
    .time-picker-section h5 {
        color: #CCA361;
        font-size: 1rem;
        font-weight: 600;
        margin: 0 0 15px 0;
        text-align: center;
    }
    .time-picker-wrapper {
        position: relative;
        height: 5rem;
        flex: 1;
        overflow: hidden;
        background: #CCA361;
        border-radius: 10px;
    }
    .time-option {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        scroll-snap-align: center;
        font-size: 2rem;
        font-weight: 500;
        color: #1a3d2e;
        cursor: pointer;
        transition: all 0.3s ease;
        user-select: none;
    }
    .scroll-arrow {
      color: #1a3d2e;
      position: absolute;
      left: 90%;
      transform: translateX(-50%);
      border-radius: 50%;
      width: 5rem;
      height: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      user-select: none;
      z-index: 10;
      transition: background 0.2s;
    }
    .time-timeline-card {
        background: #1a3d2e;
        padding: 20px;
        border-radius: 15px;
        border: 2px solid #CCA361;
        color: #CCA361;
    }
        .time-timeline-card h4 {
            color: #CCA361;
            font-size: 3.2rem;
            font-weight: 600;
            margin: 0 0 20px 0;
            text-align: center;
        }
    .navbar-brand {
        font-size: 2.8rem;
        padding-right: 4rem;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 3.8rem;
        margin: 0 1.5rem;
        padding: 0.8rem 1.5rem;
    }

    .hero-title {
        font-size: 10rem;
        letter-spacing: 6px;
    }

    .hero-subtitle {
        font-size: 3.2rem;
        line-height: 1.8;
    }

    .btn-booking {
        font-size: 1.8rem;
        padding: 1.5rem 4rem;
    }

    .btn-admin-login {
        font-size: 1.4rem;
        padding: 15px 35px;
    }

    /* About section */
    .about-text h2 {
        font-size: 7rem;
        margin-bottom: 3rem;
    }

    .about-text h3 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .about-text p {
        font-size: 2.2rem;
        line-height: 2.4;
        margin-bottom: 2.5rem;
    }

    /* Services */
    .services-title {
        font-size: 8rem;
        margin-bottom: 5rem;
    }

    .service-card h3 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }

    .service-card p,
    .service-card li {
        font-size: 2rem;
        line-height: 2;
    }

    /* Booking section */
    .booking-title {
        font-size: 8rem;
        margin-bottom: 5rem;
    }

    .calendar-header h3 {
        font-size: 5rem;
    }
    #suggestions li {
      padding: 12px 18px;
        padding-left: 18px;
      cursor: pointer;
      transition: all 0.2s ease;
      border-bottom: 1px solid #f5f5f5;
      color: #333;
      font-size: 2rem;
    }
    .calendar-day {
        font-size: 2rem;
        padding: 1.5rem;
    }

    .time-slot-btn {
        font-size: 1.8rem;
        padding: 1.5rem;
    }

    .massage-card h5 {
        font-size: 2rem;
    }

    .massage-card p {
        font-size: 1.6rem;
    }
    .timeline-hours {
      display: flex;
      justify-content: space-between;
      margin-top: 1rem;
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
      color: #666;
      font-weight: 500;
    }
    .timeline-bar {
      height: 4rem;
      background: linear-gradient(to right, lightgreen 0%, lightgreen 100%);
      border-radius: 8px;
      position: relative;
      overflow: hidden;
      border: 2px solid #CCA361;
    }
    /* Process & Transport sections */
    .section-title {
        font-size: 5rem;
        margin-bottom: 3rem;
        color: #1a3d2e;
    }

    /* Override for sections with dark background */
    .process-section .section-title,
    .transport-section .section-title {
        color: #CCA361;
    }

    .process-text p {
        font-size: 2rem;
        line-height: 2.4;
        color: #f0f0f0;
        margin-bottom: 2rem;
    }

    .process-text strong {
        font-size: 2.5rem;
        color: #CCA361;
        margin-bottom: 1rem;
    }

    /* Availability section */
    .availability-title {
        font-size: 3.5rem;
        color: #1a3d2e;
        margin-bottom: 2rem;
    }

    .availability-date {
        font-size: 2rem;
        color: #CCA361;
    }

    .availability-status {
        font-size: 1.6rem;
        padding: 0.8rem 1.5rem;
    }

    .availability-hours {
        font-size: 1.4rem;
    }

    .map {
        height: 1000px;
    }

    .legend-item {
        font-size: 3rem;
        padding: 1.5rem 0;
    }

    .legend-dot {
        width: 2rem;
        height: 2rem;
    }

    /* Contact */
    .contact-title {
        font-size: 7rem;
        margin-bottom: 2rem;
    }

    .contact-description {
        font-size: 2.2rem;
        margin-bottom: 4rem;
    }

    .form-group-contact label {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .form-group-contact input,
    .form-group-contact textarea {
        font-size: 1.8rem;
        padding: 2rem 2.5rem;
    }

    .btn-submit {
        font-size: 2rem;
        padding: 2rem 4rem;
    }

    /* Footer */
    .footer-section h3 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h4 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section p {
        font-size: 2rem;
        line-height: 2;
    }

    .social-link {
        font-size: 2rem;
        padding: 1.5rem 2rem;
    }

    .social-icon {
        font-size: 2.5rem;
    }

    /* Process & Transport layout improvements for 4K */
    .transport-process-section {
        padding: 0% 5%;
        padding-bottom: none;
    }

    .process-container {
        max-width: 45%;
        left: 3%;
        width: 35%;
    }

    .process-content {
        padding: 4%;
    }

    .availability-section {
        max-width: 40%;
        width: 40%;
        right: 8%;
    }

    .availability-container {
        padding: 3%;
        max-height: 70vh;
    }

    .transport-container {
        max-width: 45%;
        width: 45%;
        top: 1400px;
    }

    .map-container {
        padding: 3%;
    }

    .map {
        height: 1000px;
    }

    /* About section */
    .about-section {
        padding: 8% 5%;
    }

    .about-container {
        gap: 5%;
        max-width: 90%;
        margin: 0 auto;
    }

    .about-text {
        max-width: 48%;
    }

    .rotating-carousel {

    }

    .carousel-slide {
        width: 700px;
        height: 800px;
    }

    .carousel-slide.prev {
        transform: scale(0.85) translateX(-500px);
    }

    .carousel-slide.next {
        transform: scale(0.85) translateX(500px);
    }

    .carousel-btn {
        width: 150px;
        height: 150px;
        font-size: 8rem;
    }

    .carousel-btn.prev {
        left: 15rem;
    }

    .carousel-btn.next {
        right: 15rem;
    }

    /* Services */
    .services-container {
        padding: 6% 0%;
    }

    .services-grid {
        max-width: 100%;
        margin: 0 auto;
    }

    .service-card {
        padding: 3%;
    }

    /* Booking */
    .booking-section {
        padding: 0% 5%;
    }

    .booking-container {
        max-width: 90%;
    }

    .calendar-container {
        padding: 3%;
    }

    /* Contact */
    .contact-section {
        padding: 8% 5%;
    }

    .contact-container {
        max-width: 70%;
        padding: 4%;
    }

    /* Footer */
    .footer-page {
        padding: 5% 5%;
    }

    .footer-container {
        max-width: 90%;
    }
}

/* Mobile carousel adjustments */
@media (max-width: 767px) {
    .rotating-carousel {
        height: 100%;
    }

    .carousel-slide {
        width: 100%;
        height: 100%;
        padding-top: 50px;
    }

        .carousel-slide.prev {
            transform: scale(0.7) translateX(-200px);

        }

        .carousel-slide.next {
            transform: scale(0.7) translateX(200px);
        }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}
@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        align-items: center;
    }

    .social-link {
        justify-content: center;
        max-width: 200px;
        margin: 0 auto;
    }

    .social-link:hover {
        transform: scale(1.05);
    }

    /* About section mobile */
    .about-container {
        flex-direction: column;
        padding: 50px 20px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-section {
        padding: 60px 20px;
    }
}
@media (max-width: 767px) {
    .services-grid {
        flex-direction: column;
        height: auto;
    }

    .service-card {
        min-height: 100px;
    }

    .service-card h3 {
        writing-mode: horizontal-tb;
        font-size: 1.5rem;
    }

    .service-card.expanded {
        min-height: 400px;
    }

    /* Show tap indicator wrapper on mobile when card is not expanded */
    .tap-indicator-wrapper {
        display: flex;
    }

    .service-card.expanded .tap-indicator-wrapper {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .booking-compact {
        grid-template-columns: 1fr;
    }

    .booking-title {
        font-size: 4rem;
    }
}
/* Time Picker Scroll */
/* Time Picker - Duální */
@media (max-width: 767px) {
    .modal-content {
        margin: 20px;
        max-height: 95vh;
    }
}
@media (max-width: 767px) {
    .transport-process-section {
        min-height: auto;
    }

    .process-container {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px;
        margin-left: 0px !important;
    }

    .transport-container {
        position: static;
        width: 100%;
        max-width: 100%;
    }

    .transport-section,
    .process-section {
        position: static;
    }

    .process-content {
        padding: 25px;
    }

    .process-text {
        font-size: 0.95rem;
        color: #f0f0f0;
    }

        .process-text p {
            color: #f0f0f0;
        }

        .process-text strong {
            font-size: 1rem;
            color: #CCA361;
        }

    .video-play-icon {
        font-size: 3rem;
    }

    .section-title {
        font-size: 4rem;
    }

    .map {
        height: 350px;
    }
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Availability Section */
@media (max-width: 767px) {
    .availability-section {
        position: static;
        width: 100%;
        max-width: 100%;
        padding: 50px 20px;
    }

    .availability-container {
        max-width: 600px;
        margin: 0 auto;
        max-height: none;
    }
}
@media (max-width: 767px) {
    #addressInput {
        padding: 12px 16px;
        font-size: 14px;
    }

    #suggestions li {
        padding: 10px 16px;
        font-size: 13px;
    }

    #suggestions {
        max-height: 200px;
    }
}
/* Duration button s cenou */
@media (max-width: 767px) {
    .contact-section {
        padding: 60px 15px;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 1rem;
    }
}