/*
 * PoslednĂ­ aktualizace: 18.04.2026 07:24
 */
:root {
    --primary-color: #ff6b00;
    --primary-hover: #ff8533;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 8px 30px rgba(0, 0, 0, 0.1);
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-outfit: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-outfit);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem 1.5rem;
    min-height: 80vh;
}

/* Header */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.75rem 1rem;
    }
}

.header-home,
.header-back,
.header-external {
    font-size: 1.5rem;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.header-home:hover,
.header-back:hover,
.header-external:hover {
    color: var(--primary-color);
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    padding: 0rem 1rem 2rem;
}

.welcome-section .logo {
    max-height: 100px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.welcome-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.welcome-section h1 .subtitle {
    display: block;
    font-size: 0.45em;
    font-weight: 500;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.welcome-section p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 0rem 1rem 1rem;
    }

    .welcome-section h1 {
        font-size: 2rem;
    }

    .welcome-section p {
        font-size: 1.1rem;
    }
}

/* Search Bar (Glassmorphism) */
.search-bar {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 4rem;
}

.search-bar form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: end;
}

.search-fields {
    display: flex;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .search-bar {
        padding: 12px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }

    .search-bar form {
        display: block !important;
        width: 100% !important;
    }

    .search-fields {
        display: block !important;
        width: 100% !important;
    }

    .date-field {
        width: 100% !important;
        margin-bottom: 1rem !important;
    }

    .date-field input {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 48px !important; /* Zajištění výšky na iOS i když je prázdné */
        box-sizing: border-box !important;
        -webkit-appearance: none !important;
        min-width: 0 !important;
        line-height: 1.5 !important;
        background-color: #fff !important;
    }

    .search-bar button {
        width: 100% !important;
        margin-top: 0.5rem !important;
    }
}

.search-info {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.date-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.date-field input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
    cursor: pointer;
}

.date-field input:focus {
    border-color: var(--primary-color);
}

.search-bar button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.search-bar button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.range-field {
    flex-grow: 1;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    pointer-events: none;
}

.input-with-icon input {
    padding-left: 2.75rem !important;
}

/* Modal Datepicker Styles */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content-datepicker {
    background-color: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.modal-close {
    font-size: 28px;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 24px;
    display: flex;
    justify-content: center;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
}

.btn-confirm-dates {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-confirm-dates:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

/* Ensure the calendar doesn't overflow and looks good inside modal */
#datepicker-container .hotel-datepicker {
    box-shadow: none !important;
    border: none !important;
    position: static !important;
    display: block !important;
}

@media (max-width: 600px) {
    .modal-content-datepicker {
        max-width: 100%;
        border-radius: 20px;
    }
    .modal-body {
        padding: 12px;
    }
}

/* Hotel Datepicker Premium Overrides */
.hotel-datepicker {
    border-radius: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1) !important;
    font-family: inherit !important;
}

.datepicker__month-day--selected,
.datepicker__month-day--first-day-selected,
.datepicker__month-day--last-day-selected {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.datepicker__month-day--selected.datepicker__month-day--hovering,
.datepicker__month-day--selected:hover {
    background-color: #51cf66 !important;
}

.datepicker__month-day--hovering {
    background-color: rgba(255, 107, 0, 0.1) !important;
}

.datepicker__button {
    color: var(--primary-color) !important;
}

.datepicker__month-name {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 0.9rem !important;
}

.datepicker__day-name {
    font-weight: 600 !important;
    color: var(--text-muted) !important;
}

.datepicker__month-day--today {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
}

/* Categories */
.categories-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.categories-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
}

.card-link {
    text-decoration: none;
    color: inherit;
}

.card {
    height: 480px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    background: #000;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.card-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 0;
}

.card:hover .card-bg-image {
    transform: scale(1.08);
}

.card-overlay-full {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
    transition: background 0.4s ease;
}

.card:hover .card-overlay-full {
    background: rgba(0, 0, 0, 0.0);
}

.card-content-center {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 2.5rem 2.5rem;
    color: white;
    text-align: center;
}

.card-title-wrapper {
    width: 100%;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.card-meta-center {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-separator {
    margin: 0 8px;
    opacity: 0.6;
}

.unavailable-text {
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-desc-center {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    max-width: 90%;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    height: 4.2em;
    /* PevnĂˇ vĂ˝Ĺˇka na 3 Ĺ™Ăˇdky */

    /* TĹ™Ă­Ĺ™ĂˇdkovĂ© zkrĂˇcenĂ­ s teÄŤkami */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.card-action-center {
    margin-top: auto;
    width: 100%;
}

.btn-orange {
    display: inline-block;
    background: #ff6b00;
    color: white;
    padding: 12px 60px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.card:hover .btn-orange {
    background: #ff8533;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
}

/* Language Switcher */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem !important;
    }
}

.header-right {
    margin-left: auto;
}

.language-switcher {
    position: relative;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.lang-btn img {
    width: 32px;
    border-radius: 4px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    display: none;
    min-width: 150px;
}

.language-switcher:hover .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text-main);
    border-radius: 8px;
    transition: background 0.2s;
}

.lang-dropdown a:hover {
    background: #f1f5f9;
}

.lang-dropdown img {
    width: 20px;
    border-radius: 2px;
}

/* Footer */
.main-footer {
    background: #1e293b;
    color: white;
    padding: 5rem 1.5rem 0;
    margin-top: 0.1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .footer-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.footer-section {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.registration-info {
    font-size: 0.8rem;
    margin-top: 1.5rem;
    font-style: italic;
    opacity: 0.8;
}

.footer-links a,
.footer-external-links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-external-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-section a {
    color: inherit;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-section i {
    width: 20px;
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    font-size: 1.5rem;
}

.footer-social a {
    color: #94a3b8;
    transition: all 0.2s;
}

.footer-social a:hover {
    color: white;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #334155;
    color: #64748b;
    font-size: 0.875rem;
    margin-top: 0;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}


/* Accommodation List Grid */
.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .accommodation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .accommodation-grid {
        grid-template-columns: 1fr;
    }
}

.accommodation-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.accommodation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
    overflow: hidden;
}

.accommodation-card:hover .card-image {
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-top-left-radius: 15px;
    text-align: right;
    box-shadow: -2px -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.price-badge small {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

.price-badge strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-features {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.card-features i {
    transition: color 0.2s;
}

.accommodation-card:hover .card-features i {
    color: var(--primary-color);
}

.accommodation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.availability-badge-list {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.accommodation-card .short-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-footer {
    padding-top: 1.25rem;
}

.btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 0.85rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.35);
}

.breadcrumb {
    margin-top: 1.5rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.no-results {
    text-align: center;
    padding: 4rem;
    grid-column: 1 / -1;
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Detail Page */
.detail-main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin-top: 2rem;
}

.main-image-wrapper {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-left {
    min-width: 0;
    /* ZabrĂˇnĂ­ pĹ™etĂ©kĂˇnĂ­ grid itemu na mobilu */
}

/* Main Image Navigation Arrows */
.main-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    line-height: 0;
    /* OdstranĂ­ mezeru pod obrĂˇzkem */
}

.main-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.main-image-wrapper:hover .main-nav-arrow {
    opacity: 1;
}

.main-nav-arrow:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.main-nav-arrow.prev {
    left: 15px;
}

.main-nav-arrow.next {
    right: 15px;
}

/* Gallery Navigation Arrows (Thumbnails) */
.thumbnails-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.thumb-arrow {
    background: white;
    border: 1px solid #e2e8f0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    z-index: 5;
    flex-shrink: 0;
}

.thumb-arrow:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    flex-grow: 1;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.thumbnails::-webkit-scrollbar {
    display: none;
}

.thumbnails {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    font-size: 3.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 3005;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-arrow:hover {
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow.prev {
    left: 20px;
}

.lightbox-arrow.next {
    right: 20px;
}

.lightbox-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    animation: zoom 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 3001;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

#main-image {
    cursor: pointer;
    transition: opacity 0.3s;
}

#main-image:hover {
    opacity: 0.95;
}

@media (max-width: 768px) {
    .thumb-arrow {
        display: none;
        /* Mobile users use swipe */
    }

    .thumbnails {
        padding-left: 0;
        padding-right: 0;
    }

    .lightbox-content-wrapper {
        padding: 1rem;
    }
}

.thumb {
    flex: 0 0 100px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.thumb.active {
    border-color: var(--primary-color);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-box h1 {
    font-size: 2.5rem;
    margin: 1.5rem 0 1rem;
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #f1f5f9;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.feature-tag:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.feature-tag i {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .features-row {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        justify-content: center;
    }

    .feature-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .feature-tag i {
        font-size: 1rem;
    }
}

.description {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.8;
}

/* Booking Wizard */
.card-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.booking-wizard h2 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.step {
    margin-bottom: 2rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: inherit;
}

.person-row,
.accessory-row,
.equipment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.p-label,
.a-label,
.e-label {
    display: block;
    font-weight: 500;
}

.p-info small,
.a-info small,
.e-info small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.p-control,
.a-control,
.e-control {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 30px;
    padding: 2px;
}

.q-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.q-btn:hover {
    background: var(--bg-color);
}

.p-count,
.a-count,
.e-count {
    width: 40px;
    text-align: center;
    border: none;
    background: none;
    font-weight: 600;
    -moz-appearance: textfield;
}

.p-count::-webkit-inner-spin-button,
.p-count::-webkit-outer-spin-button,
.a-count::-webkit-inner-spin-button,
.a-count::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.price-summary {
    margin-top: 2rem;
}

.summary-rows {
    padding: 1rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
    color: var(--text-muted);
    gap: 15px;
}



.summary-item span:first-child {
    flex: 1;
}

.summary-item span:last-child {
    color: var(--text-main);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    padding-top: 1.25rem;
    border-top: 2px solid #f1f5f9;
    color: var(--text-main);
}

.total-row span:last-child {
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 10px;
}

.btn-book-final {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-book-final:hover {
    background: var(--primary-hover);
}

@media (max-width: 1024px) {
    .detail-main-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        /* SnĂ­ĹľenĂ­ mezery na tabletu/mobilu */
    }

    .card-glass {
        position: static;
    }

    .main-image-wrapper {
        height: 300px;
        /* MenĹˇĂ­ obrĂˇzek na mobilu */
    }

    /* OmezenĂ­ ĹˇĂ­Ĺ™ky kalendĂˇĹ™e na mobilu */
    .datepicker {
        max-width: 100% !important;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 0 1rem 2rem 1rem;
    }

    .card-glass {
        padding: 1.25rem;
    }

    .date-inputs {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .detail-main-grid {
        gap: 1rem;
    }

    .info-box h1 {
        font-size: 1.75rem;
        margin-top: 1rem;
    }
}

/* Checkout Page */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    margin-top: 2rem;
}

.checkout-form-side h3,
.checkout-summary-side h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.terms-check {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin: 2rem 0;
    font-size: 0.9rem;
}

.terms-check input {
    margin-top: 0.25rem;
}

.terms-check a {
    color: var(--primary-color);
}

.summary-card {
    position: sticky;
    top: 100px;
}

.summary-acc-info {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.summary-acc-info strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.summary-acc-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.loading-placeholder {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

/* Customer Type Toggle */
.customer-type-switch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.customer-type-switch h3 {
    margin: 0;
    font-size: 1.25rem;
}

.type-toggle {
    display: flex;
    background: #f1f5f9;
    border-radius: 30px;
    padding: 4px;
}

.toggle-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.toggle-option input[type="radio"] {
    display: none;
}

.toggle-option.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

/* Company Fields */
.company-fields {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Select Styling */
.form-group select {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    background: white;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* 3-column form row */
.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .customer-type-switch {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   8. OCUPANCY CALENDAR (Detail Page)
   ========================================================================== */
#occupancy-calendar-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    margin-right: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.legend-color.l-select {
    background: #51cf66;
}

.legend-color.l-moving {
    background: #ff7b00;
}

/* Green */
.legend-color.l-occ {
    background: #ff6b6b;
}

/* Red */
.legend-color.l-avail {
    background: #fff;
}

/* White */
.legend-color.l-maint {
    background: #495057;
}

/* Dark Grey */
.legend-color.l-checkin {
    background: linear-gradient(to top left, #ff6b6b 50%, transparent 50%);
}

.legend-color.l-checkout {
    background: linear-gradient(to bottom right, #ff6b6b 50%, transparent 50%);
}

/* Hotel Datepicker Style Overrides - Optimized for Sidebar */
.datepicker {
    width: 100% !important;
    max-width: none !important;
    position: relative !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.datepicker__inner {
    padding: 0 !important;
    width: 100% !important;
}

.datepicker__months {
    display: flex !important;
    flex-direction: column !important;
    /* Stack months vertically in sidebar */
    width: 100% !important;
}

.datepicker__month {
    width: 100% !important;
    /* Take full sidebar width */
    box-sizing: border-box;
    margin-bottom: 20px;
    border: none !important;
}

.datepicker__month::after,
.datepicker__month::before,
.datepicker__months::before {
    display: none !important;
}

.datepicker__month-table {
    width: 100% !important;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
}

.datepicker__month-day {
    height: 44px !important;
    vertical-align: middle !important;
    border: 1px solid #f1f5f9 !important;
    font-size: 0.9rem !important;
    position: relative;
    background-color: transparent !important;
}

/* Ensure disabled days are also transparent to show background */
.datepicker__month-day--disabled,
.datepicker__month-day--disabled:hover {
    background-color: transparent !important;
}

/* Gradients for turnover days */
.is-occupied {
    background-color: #ff6b6b !important;
    color: white !important;
}

.is-maintenance {
    background-color: #495057 !important;
    color: white !important;
}

.is-checkin {
    background: linear-gradient(135deg, transparent 50%, #ff6b6b 50%) !important;
}

.is-checkout {
    background: linear-gradient(135deg, #ff6b6b 50%, transparent 50%) !important;
}

.is-checkin.is-checkout {
    background: linear-gradient(135deg, #ff6b6b 49%, #fff 49%, #fff 51%, #ff6b6b 51%) !important;
}

.is-maintenance-checkin {
    background: linear-gradient(135deg, transparent 50%, #495057 50%) !important;
}

.is-maintenance-checkout {
    background: linear-gradient(135deg, #495057 50%, transparent 50%) !important;
}

/* Kombinace turnoverĹŻ */
.is-turnover-ro-ri {
    background: linear-gradient(135deg, #ff6b6b 48%, #fff 48%, #fff 52%, #ff6b6b 52%) !important;
}

.is-turnover-ro-mi {
    background: linear-gradient(135deg, #ff6b6b 48%, #fff 48%, #fff 52%, #495057 52%) !important;
}

.is-turnover-mo-ri {
    background: linear-gradient(135deg, #495057 48%, #fff 48%, #fff 52%, #ff6b6b 52%) !important;
}

.is-turnover-mo-mi {
    background: linear-gradient(135deg, #495057 48%, #fff 48%, #fff 52%, #495057 52%) !important;
}

.datepicker__month-day--selected,
.datepicker__month-day--first-day-selected,
.datepicker__month-day--last-day-selected,
.datepicker__month-day--hovering {
    background-color: #51cf66 !important;
    color: white !important;
    z-index: 10 !important;
}

.datepicker__month-day--disabled {
    cursor: not-allowed !important;
    opacity: 1 !important;
}

.datepicker__month-day--disabled:after {
    display: none !important;
}

.datepicker__month-day--disabled .calendar-bg {
    display: block !important;
    z-index: -1 !important;
}

.calendar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

@media (min-width: 992px) {
    /* Optional: Side-by-side if we ever move it out of sidebar */
    /* .datepicker__months { flex-direction: row !important; } */
    /* .datepicker__month { width: 48% !important; } */
}

/* Cookie Consent Bar */
.cookie-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 800px;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-bar.slide-up {
    transform: translateX(-50%) translateY(0);
}

.cookie-bar.slide-down {
    transform: translateX(-50%) translateY(150%);
}

.cookie-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(255, 107, 0, 0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cookie-more-link {
    color: var(--primary-color);
    font-size: 0.85rem;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-more-link:hover {
    color: var(--primary-hover);
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-cookie-accept {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-cookie-accept:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-cookie-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-cookie-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .cookie-bar-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-actions button {
        flex: 1;
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}

.datepicker__month {
    width: 100% !important;
    /* Take full sidebar width */
    box-sizing: border-box;
    margin-bottom: 20px;
    border: none !important;
}

.datepicker__month::after,
.datepicker__month::before,
.datepicker__months::before {
    display: none !important;
}

.datepicker__month-table {
    width: 100% !important;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
}

.datepicker__month-day {
    height: 44px !important;
    vertical-align: middle !important;
    border: 1px solid #f1f5f9 !important;
    font-size: 0.9rem !important;
    position: relative;
    background-color: transparent !important;
}

/* --- NOVINKA: Zvýraznění aktivních dnů (dnešek a budoucnost) --- */
.datepicker__month-day--valid,
.datepicker__month-day--today {
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    color: #0f172a !important;
    /* Velmi tmavá barva pro vysoký kontrast */
}

/* Ensure disabled days are also transparent to show background */
.datepicker__month-day--disabled,
.datepicker__month-day--disabled:hover {
    background-color: transparent !important;
}

/* Gradients for turnover days */
.is-occupied {
    background-color: #ff6b6b !important;
    color: white !important;
}

.is-maintenance {
    background-color: #495057 !important;
    color: white !important;
}

.is-checkin {
    background: linear-gradient(135deg, transparent 50%, #ff6b6b 50%) !important;
}

.is-checkout {
    background: linear-gradient(135deg, #ff6b6b 50%, transparent 50%) !important;
}

.is-checkin.is-checkout {
    background: linear-gradient(135deg, #ff6b6b 49%, #fff 49%, #fff 51%, #ff6b6b 51%) !important;
}

.is-maintenance-checkin {
    background: linear-gradient(135deg, transparent 50%, #495057 50%) !important;
}

.is-maintenance-checkout {
    background: linear-gradient(135deg, #495057 50%, transparent 50%) !important;
}

/* Kombinace turnoverĹŻ */
.is-turnover-ro-ri {
    background: linear-gradient(135deg, #ff6b6b 48%, #fff 48%, #fff 52%, #ff6b6b 52%) !important;
}

.is-turnover-ro-mi {
    background: linear-gradient(135deg, #ff6b6b 48%, #fff 48%, #fff 52%, #495057 52%) !important;
}

.is-turnover-mo-ri {
    background: linear-gradient(135deg, #495057 48%, #fff 48%, #fff 52%, #ff6b6b 52%) !important;
}

.is-turnover-mo-mi {
    background: linear-gradient(135deg, #495057 48%, #fff 48%, #fff 52%, #495057 52%) !important;
}

.datepicker__month-day--selected,
.datepicker__month-day--first-day-selected,
.datepicker__month-day--last-day-selected,
.datepicker__month-day--hovering {
    background-color: #51cf66 !important;
    color: white !important;
    z-index: 10 !important;
}

.datepicker__month-day--disabled {
    cursor: not-allowed !important;
    opacity: 1 !important;
}

.datepicker__month-day--disabled:after {
    display: none !important;
}

.datepicker__month-day--disabled .calendar-bg {
    display: block !important;
    z-index: -1 !important;
}

.calendar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

@media (min-width: 992px) {
    /* Optional: Side-by-side if we ever move it out of sidebar */
    /* .datepicker__months { flex-direction: row !important; } */
    /* .datepicker__month { width: 48% !important; } */
}

/* Cookie Consent Bar */


/* Category Filter Tabs */
.category-tabs-wrapper {
    position: relative;
    /* Statická základna pro masku */
    width: 100%;
    margin-bottom: 2.5rem;
}

.category-tabs-container {
    width: 100%;
    display: block;
}

.category-tabs {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    padding: 0.5rem;
    flex-wrap: wrap;
    /* Výchozí je zalamování pro všechny kromě mobilů */
}

@media (max-width: 1200px) {
    .category-tabs {
        gap: 0.6rem;
    }

    .tab-item {
        padding: 0.7rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 600px) {
    .category-tabs {
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .tab-item {
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

.tab-item {
    background: var(--card-bg);
    border: 2px solid transparent;
    padding: 0.8rem 1.75rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-outfit);
}

.tab-item i {
    font-size: 1.1rem;
}

.tab-item:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tab-item.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    transform: translateY(-2px);
}

/* Animation for filtered cards */
.accommodation-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.accommodation-card.revealing {
    animation: cardReveal 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Empty category message */
.no-results-category {
    display: none;
    text-align: center;
    padding: 3rem 1.5rem;
    background: #f8fafc;
    border-radius: var(--radius-lg);
    border: 2px dashed #e2e8f0;
    margin: 2rem 0;
    color: var(--text-muted);
    font-size: 1.1rem;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header navigation icons */
.header-home,
.header-back {
    font-size: 1.5rem;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
    flex-shrink: 0;
}

.header-home:hover,
.header-back:hover {
    color: var(--primary-color);
}

/* Mobile Overrides */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 0.75rem 2rem 0.75rem !important;
    }

    .cards-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }

    .card {
        height: 260px !important;
        border-radius: 12px !important;
    }

    .card-content-center {
        padding: 1rem 0.5rem !important;
    }

    .card-title-wrapper {
        min-height: auto !important;
        margin-bottom: 1rem !important;
    }

    .card-title {
        font-size: 1.4rem !important;
        font-weight: 900 !important;
        letter-spacing: 0.5px !important;
        text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.4) !important;
    }

    .card-meta-center {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        text-shadow: 0 1px 4px rgba(0,0,0,0.9) !important;
        margin-bottom: 0.5rem !important;
        height: auto !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .meta-separator {
        display: none !important;
    }

    .card-desc-center {
        display: none !important;
    }

    .btn-orange {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
        min-width: 0 !important;
        width: auto !important;
    }

    .availability-badge-list.too-short-badge {
        background: #fff3e0 !important;
        color: #e65100 !important;
        border: 1px solid #ffcc80 !important;
        font-weight: 700 !important;
    }

    .btn-too-short {
        background: #94a3b8 !important;
        border-color: #94a3b8 !important;
    }
}

/* Base styles for too-short (outside media query) */
.availability-badge-list.too-short-badge {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffcc80;
    font-weight: 700;
}
.btn-too-short {
    background: #94a3b8 !important;
    border-color: #94a3b8 !important;
}
.customer-section-subtitle {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    font-weight: 400;
}

/* ICTON / PICTOGRAMS STYLING */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.3rem;
}

.card-features i {
    font-size: 1.25rem;
    color: #0f172a;
    transition: all 0.3s ease;
    opacity: 0.9;
    text-shadow: 0.25px 0 0 currentColor, -0.25px 0 0 currentColor; /* Simulate bolder weight */
}

.accommodation-card:hover .card-features i {
    opacity: 1;
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .card-features {
        gap: 0.8rem;
        margin-bottom: 0.5rem;
    }
    .card-features i {
        font-size: 1.1rem;
    }
}

/* TRUST BADGES - CHECKOUT */
.trust-badges {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.8;
}

.trust-label {
    font-size: 0.85rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.trust-label i {
    color: #22c55e; /* Green for success/shield */
}

.trust-icons {
    display: flex;
    gap: 1.25rem;
    font-size: 1.5rem;
    color: #94a3b8;
}

.trust-icons i {
    transition: color 0.3s;
}

.trust-icons i:hover {
    color: #475569;
}
