/* === CAROUSEL MESSAGES === */
.carousel-message {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 24px;
}

.carousel-message .message-content {
    background: none !important;
    padding: 0 !important;
}

.carousel-footer {
    text-align: center;
    margin: 16px 0 0 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    font-size: 14px;
    color: var(--c1, #0c1742);
    backdrop-filter: blur(10px);
}

/* === CATEGORY CAROUSEL STYLES === */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.simple-categories-carousel,
.simple-services-carousel {
    width: 100%;
    max-width: 100%;
}

/* === SERVICE CATEGORY CARD STYLES (pre carousel) === */
.service-category-card {
    background: white;
    border-radius: 16px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    border: 2px solid var(--c3);
    display: flex;
    flex-direction: column;
    width: 320px;
    position: relative;
    overflow: hidden;
}

.service-category-card:hover {
    border-color: var(--c2);
}

.service-category-card .category-image {
    height: 180px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--w) 0%, var(--c3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-category-card .category-image.has-image {
    background: none;
}

.service-category-card .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-category-card .category-placeholder {
    font-size: 48px;
    color: var(--c1, #0c1742);
    opacity: 0.3;
}

.service-category-card .category-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-category-card .category-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--c1, #0c1742);
    margin: 0 0 16px 0;
    text-align: center;
    line-height: 1.3;
}

.service-category-card .category-actions {
    display: flex;
    justify-content: center;
}

.service-category-card .category-select-btn {
    background: var(--c1);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-category-card .category-select-btn:hover {
    background: var(--c2, #d4af37);
    color: var(--c1, #0c1742);
}

/* Špecifické štýly pre služby v carousel */
.simple-services-carousel .service-category-card .category-placeholder {
    font-size: 36px;
    color: var(--c2, #d4af37);
}

.simple-services-carousel .service-info {
    margin: 8px 0;
}

.simple-services-carousel .service-duration {
    font-size: 13px;
    color: var(--c3);
    margin: 4px 0;
}

.simple-services-carousel .service-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--c1);
    margin: 4px 0;
    opacity: .5;
    margin-top: -10px;
}

/* === BOOKING FORM STYLES === */
.booking-form {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--c1, #0c1742);
    font-size: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--c2, #d4af37);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.booking-form input:required:invalid {
    border-color: var(--c2);
}

.booking-form input:required:valid {
    border-color: var(--c2);
}

.booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-form .form-actions {
    margin-top: 25px;
    text-align: center;
}

.booking-form .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.booking-form .btn-success {
    background: var(--c2, #d4af37);
    color: white;
}

.booking-form .btn-success:hover {
    background: var(--c1, #0c1742);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .booking-form {
        padding: 15px;
        margin: 10px 0;
    }
    
    .booking-form .btn {
        width: 100%;
        min-width: auto;
    }
}

/* === RESPONZÍVNE ŠTÝLY PRE SERVICE CATEGORY CARDS === */
@media (max-width: 768px) {
    .service-category-card {
        width: 90vw;
        max-width: 90vw;
        height: 260px;
    }
    
    .service-category-card .category-image {
        height: 160px;
    }
    
    .service-category-card .category-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .service-category-card {
        width: 90vw;
        max-width: 90vw;
        height: 240px;
    }
    
    .service-category-card .category-image {
        height: 140px;
    }
    
    .service-category-card .category-name {
        font-size: 15px;
    }
    
    .service-category-card .category-select-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* === SERVICES CAROUSEL STYLES === */
.services-carousel {
    width: 100%;
    max-width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    padding: 20px 0;
}

.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 20px;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--c2);
    transform: translateY(-2px);
}

.service-info {
    text-align: center;
}

.service-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--c1, #0c1742);
    margin: 0 0 8px 0;
}

.service-duration {
    font-size: 14px;
    color: var(--c3);
    margin: 0 0 8px 0;
}

.service-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--c2, #d4af37);
    margin: 0;
}

/* === DATETIME SELECTOR STYLES === */
.datetime-selector {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    padding: 20px !important;
    background: white !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Špecifické štýly pre datetime message */
.datetime-message {
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
}

.datetime-message .message-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 1 !important;
}

.datetime-message .message-bubble {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Zabezpečíme, že datetime selector zostane v rámci chat kontajnera */
.chat-messages-content .datetime-message,
.chat-messages .datetime-message {
    contain: layout style !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 1 !important;
}

.chat-messages-content .datetime-selector,
.chat-messages .datetime-selector {
    contain: layout style !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 1 !important;
}

.chat-messages-content .message,
.chat-messages .message {
    overflow: visible !important;
    position: relative !important;
}

.calendar-section {
    width: 100% !important;
    margin-bottom: 40px !important;
    display: block !important;
    clear: both !important;
}

.times-section {
    width: 100% !important;
    margin-top: 20px !important;
    display: block !important;
    clear: both !important;
}

/* Zabezpečíme, že sa neaplikujú grid štýly na datetime selector */
.datetime-selector:not(.categories-grid):not(.services-grid) {
    display: block !important;
    grid-template-columns: none !important;
}

.datetime-selector .calendar-section,
.datetime-selector .times-section {
    display: block !important;
    grid-template-columns: none !important;
    flex: none !important;
}

.calendar-section h4, .times-section h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--c1, #0c1742);
    text-align: center;
}

/* Štýly pre vybraný dátum a čas */
.selected-date-info, .selected-time-info {
    margin: 15px 0;
    padding: 15px;
    background: var(--w);
    border: 2px solid var(--c2, #d4af37);
    border-radius: 12px;
    text-align: center;
}

.selected-date-display, .selected-time-display {
    color: var(--c1, #0c1742);
    font-size: 14px;
}

.selected-date-display strong, .selected-time-display strong {
    color: var(--c1, #0c1742);
    font-weight: 600;
}

.booking-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-actions .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.booking-actions .btn-success {
    background: var(--c2);
    color: var(--c1);
}

.booking-actions .btn-success:hover {
    background: var(--c1);
    color: var(--w);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.booking-actions .btn-secondary {
    background: var(--c3);
    color: var(--w);
}

.booking-actions .btn-secondary:hover {
    background: var(--c1);
    color: var(--w);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.service-calendar {
    width: 100% 
}


/* === KOMPAKTNÉ ČASY ŠTÝLY === */
.times-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 8px;
    padding: 20px;
    background: var(--w);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.times-container {
    width: 100% !important;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: visible !important;
}

/* Zabezpečíme správne zobrazenie časov v chat kontajneri */
.chat-messages-content .times-container,
.chat-messages .times-container {
    position: relative;
    z-index: 1;
    overflow: visible;
    contain: none;
}

.chat-messages-content .times-grid-compact,
.chat-messages .times-grid-compact {
    position: relative;
    z-index: 1;
    overflow: visible;
    contain: none;
}

.time-slot-compact {
    background: var(--w);
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 8px 4px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--c1, #0c1742);
    transition: all 0.2s ease;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-slot-compact:hover {
    border-color: var(--c2, #d4af37);
    background: var(--c2, #d4af37);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.time-slot-compact:active {
    transform: translateY(0);
}

/* Responzívne štýly pre časy */
@media (max-width: 768px) {
    .times-grid-compact {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 6px;
        padding: 15px;
    }
    
    .time-slot-compact {
        font-size: 12px;
        padding: 6px 2px;
        min-height: 32px;
    }
}

@media (max-width: 480px) {
    .times-grid-compact {
        grid-template-columns: repeat(auto-fit, minmax(55px, 1fr));
        gap: 4px;
        padding: 12px;
    }
    
    .time-slot-compact {
        font-size: 11px;
        padding: 5px 2px;
        min-height: 28px;
    }
    
    .calendar-container {
        padding: 15px;
        max-width: 350px;
    }
    
    .calendar-day {
        font-size: 12px;
    }
    
    /* Zabezpečíme správne zobrazenie na mobiloch */
    .datetime-selector {
        padding: 15px !important;
        margin: 10px 0 !important;
    }
    
    .calendar-section h4,
    .times-section h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

.date-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.date-nav-btn {
    background: var(--c2, #d4af37);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.date-nav-btn:hover {
    background: var(--c1, #0c1742);
    transform: translateY(-1px);
}

.current-date {
    font-size: 16px;
    font-weight: 600;
    color: var(--c1, #0c1742);
    text-align: center;
    flex: 1;
}

.times-container {
    width: 100%;
}

.times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    padding: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
}

.time-slot {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--c1, #0c1742);
    transition: all 0.3s ease;
}

.time-slot:hover {
    border-color: var(--c3, #d4af37);
    background: var(--c3, #d4af37);
    color: var(--c1);
    transform: translateY(-1px);
}

.no-times {
    text-align: center;
    padding: 40px 20px;
    color: var(--c3);
    font-style: italic;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 320px;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.category-card.expanded {
    height: 400px; /* Fixná výška aj pre expandované */
}



.category-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--c2);
    transform: translateY(-4px);
}

.category-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    border-radius: 16px 16px 0 0; /* Zaoblenie len hore */
    flex-shrink: 0; /* Nech sa nezmenší */
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.category-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
}


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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px 16px 16px;
    color: white;
}

.category-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.category-count {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}

.category-services {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    min-height: 0;
}

.category-services::-webkit-scrollbar {
    width: 4px;
}

.category-services::-webkit-scrollbar-track {
    background: var(--w);
    border-radius: 2px;
}

.category-services::-webkit-scrollbar-thumb {
    background: var(--c2);
    border-radius: 2px;
}

.category-services::-webkit-scrollbar-thumb:hover {
    background: var(--c1);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

.service-item.clickable-service {
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 8px 8px;
    margin: 0 -8px;
    border-radius: 6px;
}

.service-item.clickable-service:hover {
    background-color: var(--w);
}

.service-item.clickable-service.selected {
    background-color: rgba(255, 191, 0, 0.1);
    border-color: var(--c2);
}

.service-checkbox {
    font-size: 16px;
    color: var(--c2);
    margin-left: 8px;
    font-weight: bold;
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    flex: 1;
    font-weight: 500;
    color: var(--c1);
    line-height: 1.3;
    margin-right: 8px;
}

.service-price {
    font-weight: 600;
    color: var(--c2);
    font-size: 12px;
    white-space: nowrap;
}

.service-item.more-services {
    background: var(--w);
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 4px;
    border: none;
    font-weight: 500;
    color: var(--c1);
    cursor: pointer;
}

.expand-services-btn {
    width: 100%;
    background: var(--c2);
    color: var(--c1);
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expand-services-btn:hover {
    background: var(--c1);
    color: white;
    transform: translateY(-1px);
}

.expand-text {
    flex: 1;
    text-align: left;
}

.more-text {
    flex: 1;
    font-size: 12px;
}

.expand-icon {
    color: var(--c2);
    font-weight: bold;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.service-item.expanded-service {
    animation: fadeIn 0.3s ease;
    background: var(--w);
    border-radius: 4px;
    margin: 2px 0;
}

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

/* Responzívne úpravy pre categories */
@media (max-width: 768px) {
    .category-card {
        height: 280px;
    }
    
    .category-card.expanded {
        height: 350px; /* Fixná výška aj na mobile */
    }
    

    
    .category-image {
        height: 140px;
    }
    
    .category-name {
        font-size: 16px;
    }
    
    .category-services {
        padding: 12px;
        gap: 6px;
    }
    
    .service-item {
        padding: 6px 0;
        font-size: 12px;
    }
    
    .expand-services-btn {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* === RESERVATION CAROUSEL STYLES === */
.reservation-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--c3);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.reservation-card:hover {
    border-color: var(--c2);
}

.reservation-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    flex-shrink: 0;
}

.reservation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.reservation-image.no-image {
    background: linear-gradient(135deg, var(--w) 0%, var(--c3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-placeholder {
    font-size: 48px;
    color: var(--c1);
    opacity: 0.7;
}

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

.reservation-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.reservation-status.current {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.reservation-status.future {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.reservation-status.past {
    background: rgba(107, 114, 128, 0.9);
    color: white;
}

.reservation-details {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reservation-id {
    font-size: 17px;
    font-weight: 700;
    color: var(--c1);
    margin: 0;
}

.reservation-rooms {
    font-size: 14px;
    color: var(--c2);
    font-weight: 600;
    margin: -8px 0 -8px 0;
}

.reservation-dates {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 8px 0;
}

.room_category {
    font-size: 14px;
    font-weight: 600;
    color: var(--c1, #2c5aa0);
    margin-bottom: 2px;
}

.stay_type {
    font-size: 13px;
    color: var(--c1);
    font-style: normal;
    margin-bottom: 2px;
    margin-top: -4px;
    opacity: .5;
}

.persons {
    font-size: 13px;
    color: var(--c1);
    font-style: normal;
    margin-bottom: 2px;
    margin-top: -4px;
    opacity: .5;
}

.date-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.date-label {
    color: var(--c1);
    font-weight: 500;
}

.date-value {
    color: var(--c1);
    font-weight: 600;
}

.nights-info {
    text-align: center;
    margin-top: 8px;
    padding: 6px;
    background: rgba(255, 191, 0, 0.1);
    border-radius: 6px;
}

.nights-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--c1);
}

.reservation-actions {
    margin-top: auto;
}

.actions-toggle-btn {
    width: 100%;
    background: var(--c2);
    color: var(--c1);
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.actions-toggle-btn:hover {
    background: var(--c1);
    color: white;
}

.past-count-info {
    text-align: center;
    margin: 12px 0 0 0;
    padding: 8px;
    background: var(--w);
    border-radius: 8px;
    font-size: 12px;
    color: var(--c3);
}

/* Responzívne úpravy pre reservations */
@media (max-width: 768px) {
    
    
    .reservation-image {
        height: 140px;
    }
    
    .reservation-id {
        font-size: 18px;
    }
    
    .reservation-details {
        padding: 12px;
        gap: 6px;
    }
    
    .actions-toggle-btn {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* === RESERVATION SELECTION CAROUSEL STYLES === */
.reservation-selection-message .carousel-bubble {
    background: none !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.reservation-selection-message .reservation-card {
    height: auto;
    min-height: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reservation-selection-message .reservation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--c2);
}

.reservation-selection-message .reservation-card:active {
    transform: translateY(-2px);
}

/* Zvýrazníme že je klikateľná */
.reservation-selection-message .reservation-card::after {
    content: '👆';
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 191, 0, 0.9);
    color: var(--c1);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reservation-selection-message .reservation-card:hover::after {
    opacity: 1;
}

/* === KOŠÍK ŠTÝLY === */
.services-cart-indicator {
    background: white;
    border: 2px solid var(--c2);
    border-radius: 12px;
    margin: 16px 0;
    animation: slideUp 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cart-summary {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c1);
}

.cart-confirm-btn {
    background: var(--c2);
    color: var(--c1);
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cart-confirm-btn:hover {
    background: var(--c1);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .cart-summary {
        padding: 12px;
        gap: 12px;
        font-size: 13px;
    }
    
    .cart-confirm-btn {
        padding: 13px 12px;
        font-size: 14px;
        font-weight: 500;
    }
}

/* Reservation Actions */
.reservation-actions {
    position: relative;
}

.reservation-select-btn {
    background: var(--c1);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
    width: 100%;
}

.reservation-select-btn:hover {
    background: var(--c2);
    color: var(--c1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .reservation-select-btn {
        padding: 12px 12px;
        font-size: 14px;
    }
}

/* === FEEDBACK SYSTEM STYLES === */

.feedback-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
}

.feedback-option {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--w);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feedback-option:hover {
    border-color: var(--c2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ella-action-btn {
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.feedback-icon {
    font-size: 14px;
    margin-right: 0px;
    min-width: 25px;
    text-align: center;
}

.feedback-details h3 {
    color: var(--c1);
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.feedback-details p {
    color: var(--c3);
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.feedback-form {
    background: var(--w);
    border-radius: 12px;
    padding: 25px;
    margin: 10px auto;
    width: 100%;
}

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

.feedback-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--c1);
    font-size: 14px;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: var(--c2);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.feedback-form textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.feedback-form .form-actions {
    margin-top: 25px;
    text-align: center;
}

.feedback-form .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    min-width: 200px;
}

.feedback-form .btn-success {
    background: var(--c2);
    color: var(--c1);
}

.feedback-form .btn-success:hover {
    background: var(--c1);
    color: var(--w);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .feedback-option {
        padding: 15px;
    }
    
    .feedback-icon {
        font-size: 28px;
        margin-right: 15px;
        min-width: 40px;
    }
    
    .feedback-details h3 {
        font-size: 16px;
    }
    
    .feedback-details p {
        font-size: 13px;
    }
    
    .feedback-form {
        padding: 20px;
    }
    
    .feedback-form .btn {
        width: 100%;
        min-width: auto;
        padding: 15px 20px;
        margin-top: 10px;
    }
}

/* === COMPLEX STAY REVIEW FORM STYLES === */

.feedback-form.complex-review {
    max-width: 100%;
    padding: 20px;
}

.user-type-section .user-type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.radio-container {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.radio-container:hover {
    border-color: var(--c1);
    background: #f8f9ff;
}

.radio-container input[type="radio"] {
    display: none;
}

.radio-container:has(input[type="radio"]:checked) {
    border-color: var(--c1);
    background: var(--c1);
    color: white;
}

.radio-container:has(input[type="radio"]:checked) span {
    color: white;
    font-weight: bold;
}

.radio-container:has(input[type="radio"]:checked)::before {
    content: "✓";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.radio-container {
    position: relative;
}

.overall-rating .rating-scale {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.overall-rating .rating-scale.overall {
    grid-template-columns: repeat(5, 1fr);
}

.rating-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
}

.rating-option:hover {
    border-color: var(--c1);
    background: #f8f9ff;
}

.rating-option input[type="radio"] {
    display: none;
}

.rating-option .rating-value {
    font-size: 14px;
    font-weight: bold;
    color: #666;
}

.rating-option:has(input[type="radio"]:checked) {
    border-color: var(--c1);
    background: var(--c1);
    color: white;
}

.rating-option:has(input[type="radio"]:checked) .rating-value {
    color: white;
}

.categories-rating {
    margin: 20px 0;
}

.category-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.category-label {
    font-weight: bold;
    color: var(--c1);
    min-width: 150px;
}

.category-rating .rating-scale {
    display: flex;
    gap: 5px;
}

.category-rating .rating-option {
    padding: 8px 12px;
    min-width: 50px;
}

.form-validation-info {
    background: #ffcdcd7d;
    border: 1px solid #ffcdcd7d;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .user-type-options {
        grid-template-columns: 1fr;
    }
    
    .overall-rating .rating-scale {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .category-rating {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .category-label {
        min-width: auto;
        text-align: center;
    }
    
    .category-rating .rating-scale {
        justify-content: center;
    }
}

/* === STAY SELECTION STYLES === */

.stays-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.stay-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stay-option:hover {
    border-color: var(--c1);
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.stay-info h4 {
    color: var(--c1);
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.stay-info p {
    margin: 5px 0;
    color: var(--c3);
    font-size: 14px;
}

.stay-arrow {
    font-size: 24px;
    color: var(--c2);
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .stay-option {
        padding: 15px;
    }
    
    .stay-info h4 {
        font-size: 16px;
    }
    
    .stay-info p {
        font-size: 13px;
    }
    
    .stay-arrow {
        font-size: 20px;
        min-width: 25px;
    }
}

/* === PAYMENT SUCCESS BUTTON STYLES === */
.payment-success-btn {
    background: var(--c3);
    color: var(--w);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.payment-success-btn:hover {
    background: var(--c1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Horizontálny services carousel */
.service-horizontal-item {
    min-width: 280px;
    max-width: 320px;
}

.service-horizontal-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border 0.3s ease;
    height: 100%;
    display: flex;
    border: 2px solid var(--c3);
    flex-direction: column;
}

.service-horizontal-card:hover {
    border-color: var(--c2);
}

.service-image {
    width: 100%;
    height: 160px;
    background-color: #f5f5f5;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.service-info {
    padding: 0 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-header {
    margin-bottom: 12px;
}

.service-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.service-price-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--c1, #2c5aa0);
}

.service-price-info .service-price {
    font-weight: bold;
    color: var(--c2);
    font-size: 18px;
    margin: 5px 0;
    text-align: center;
    width: 100%;
}

.info-btn {
    background: #e3f2fd;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--c1, #2c5aa0);
    transition: all 0.2s ease;
}

.info-btn:hover {
    background: var(--c1, #2c5aa0);
    color: white;
    transform: scale(1.1);
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 12px 0;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 8px;
}

.qty-btn {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    border-color: var(--c1, #2c5aa0);
    color: var(--c1, #2c5aa0);
    background: #f0f7ff;
}

.qty-btn:active {
    transform: scale(0.95);
}

.quantity {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    min-width: 24px;
    text-align: center;
}

.service-actions {
    margin-top: auto;
}

.select-service-btn {
    width: 100%;
    background: var(--c1, #2c5aa0);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: var(--c2, #1e3d6f);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.select-service-btn:active {
    transform: translateY(0);
}

/* Info popup štýly */
.service-info-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-info-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-content {
    background: white;
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.service-info-popup.show .popup-content {
    transform: scale(1);
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 0 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.popup-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.popup-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: #f0f0f0;
    color: #333;
}

.popup-body {
    padding: 0 20px 20px 20px;
}

.service-details {
    margin-bottom: 20px;
}

.service-price-large {
    font-size: 24px;
    font-weight: 700;
    color: var(--c1, #2c5aa0);
    margin-bottom: 4px;
}

.service-unit {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.service-category-info {
    font-size: 14px;
    color: #888;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}

.service-description h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #333;
}

.service-description p {
    margin: 0;
    line-height: 1.5;
    color: #666;
}

.service-horizontal-item .service-info {
    padding: 20px;
}

/* Responzívne úpravy */
@media (max-width: 768px) {
    .service-horizontal-item {
        min-width: 260px;
        max-width: 280px;
    }
    
    .service-image {
        height: 140px;
    }
    
    .popup-overlay {
        padding: 10px;
    }
    
    .popup-content {
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .service-horizontal-item {
        min-width: 240px;
        max-width: 260px;
        margin-right: 12px;
    }
    
    .service-image {
        height: 120px;
    }
    
    .service-info {
        padding: 12px;
    }
    
    .service-name {
        font-size: 15px;
    }
    
    .service-price {
        font-size: 16px;
    }
}

/* Services Cart Styles */
.services-cart-indicator {
    margin-top: 16px;
    padding: 16px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cart-summary {
    width: 100%;
}

.cart-header {
    font-weight: 600;
    color: var(--c1, #2c5aa0);
    margin-bottom: 8px;
    font-size: 14px;
}

.cart-details {
    max-height: 120px;
    overflow-y: auto;
    margin: 8px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4px 0;
    padding: 6px 8px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 13px;
}

.cart-item span {
    flex: 1;
    color: #495057;
}

.cart-remove-btn {
    background: #dc3545 !important;
    color: white !important;
    border: none !important;
    border-radius: 3px !important;
    padding: 2px 6px !important;
    font-size: 12px !important;
    cursor: pointer !important;
    margin-left: 8px !important;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-remove-btn:hover {
    background: #c82333 !important;
}

.cart-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.cart-clear-btn, .cart-confirm-btn {
    border: none !important;
    border-radius: 4px !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.cart-clear-btn {
    background: #6c757d !important;
    color: white !important;
    flex: 1;
}

.cart-clear-btn:hover {
    background: #5a6268 !important;
}

.cart-confirm-btn {
    background: #28a745 !important;
    color: white !important;
    flex: 2;
}

.cart-confirm-btn:hover {
    background: #218838 !important;
}

/* ===== SERVICES CATEGORY FILTER ===== */
.services-category-filter {
    margin-bottom: 16px;
    padding: 0;
    background: transparent;
    border: none;
}

.filter-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--c1, #2c5aa0);
    margin-bottom: 6px;
}

.filter-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.filter-buttons::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.filter-btn {
    background: var(--c3) !important;
    color: var(--c1) !important;
    border: 1px solid var(--c3) !important;
    border-radius: 20px !important;
    padding: 8px 16px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

.filter-btn:hover {
    background: var(--c2) !important;
    border-color: var(--c2) !important;
    color: var(--c1) !important;
}

.filter-btn.active {
    background: var(--c1) !important;
    color: var(--w) !important;
    border-color: var(--c1) !important;
}

/* Responsive filter buttons */
@media (max-width: 768px) {
    .filter-btn {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
}
