/* =====================================================
   EXTRA STYLY — Ceník, Rezervace, GDPR lišta, Admin
   ===================================================== */

/* --- CENÍK — prodloužení šedého pozadí --- */
#process .process.gray-light-bg {
    padding-bottom: 50px;
}

/* --- CENÍK --- */
.pricing-subtitle {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin: -10px 0 30px;
}

/* Dvě kartičky vedle sebe */
.pricing-cards-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    margin: 0 0 28px;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.08);
    flex: 1 1 300px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid #e8e8e8;
}

.pricing-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-3px);
}

.pricing-card--featured {
    border: 2px solid #27ae60;
    box-shadow: 0 6px 28px rgba(39,174,96,0.18);
}

.pricing-card--featured:hover {
    box-shadow: 0 12px 36px rgba(39,174,96,0.25);
    transform: translateY(-5px);
}

/* Hlavička karty */
.pricing-card__header {
    padding: 22px 26px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card__header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 8px 0 4px;
}

.pricing-card__badge {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
}

.pricing-card__badge--grey { background: #7f8c8d; }

.pricing-card__dates {
    font-size: 0.82rem;
    color: #999;
    margin: 2px 0 0;
}

/* Tabulka cen */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    flex: 1;
}

.pricing-table tr {
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s;
}

.pricing-table tr:hover {
    background: #f9fffe;
}

.pricing-table tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 10px 26px;
    font-size: 0.9rem;
    color: #444;
}

.pricing-table td.pricing-price {
    text-align: right;
    font-weight: 700;
    font-size: 1rem;
    color: #27ae60;
    white-space: nowrap;
}

/* Zvýrazněné speciální termíny (Silvestr, Velikonoce) */
.pricing-row--special td {
    background: #fffbf0;
    color: #7d5a00;
    font-size: 0.85rem;
}

.pricing-row--special td.pricing-price {
    color: #c0820a;
}

/* Poznámka na kartě */
.pricing-note {
    font-size: 0.8rem;
    color: #888;
    padding: 8px 26px 4px;
    font-style: italic;
}

/* CTA tlačítko ve spodní části karty */
.pricing-card__footer {
    padding: 16px 26px 20px;
    margin-top: auto;
}

.pricing-cta {
    display: block;
    text-align: center;
    background: #27ae60;
    color: #fff !important;
    padding: 11px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.1s;
}

.pricing-cta:hover {
    background: #219a52;
    transform: translateY(-1px);
}

.pricing-cta--outline {
    background: transparent;
    color: #27ae60 !important;
    border: 2px solid #27ae60;
}

.pricing-cta--outline:hover {
    background: #27ae60;
    color: #fff !important;
}

/* Informační box – full width pod kartami */
.pricing-info-box {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    padding: 24px 30px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pricing-info-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-info-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 32px;
}

.pricing-info-grid li {
    flex: 1 1 280px;
    font-size: 0.83rem;
    color: #555;
    line-height: 1.5;
    padding: 7px 0 7px 22px;
    border-bottom: 1px solid #f4f4f4;
    position: relative;
}

.pricing-info-grid li:last-child {
    border-bottom: none;
}

.pricing-info-grid li::before {
    content: '✓';
    color: #27ae60;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsivita */
@media (max-width: 767px) {
    .pricing-card {
        max-width: 100%;
    }

    .pricing-card--featured {
        order: -1;
    }

    .pricing-table td {
        padding: 10px 16px;
    }

    .pricing-info-box {
        padding: 18px 16px;
    }

    .pricing-info-grid li {
        flex: 1 1 100%;
    }
}

/* --- REZERVACE --- */
#booking {
    background: #f9f9f9;
    padding: 60px 0;
}

/* Oprava viditelnosti formulářových polí v sekci rezervace */
input.booking-input,
input.booking-input[type="date"],
input.booking-input[type="text"],
input.booking-input[type="email"] {
    background-color: #ffffff !important;
    color: #222222 !important;
    border: 1px solid #bbbbbb !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    -webkit-text-fill-color: #222222 !important;
}

input.booking-input:focus,
input.booking-input[type="date"]:focus {
    border-color: #27ae60 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(39,174,96,0.2) !important;
    color: #222222 !important;
    -webkit-text-fill-color: #222222 !important;
}

#booking-form select,
#booking-form textarea {
    background-color: #ffffff !important;
    color: #222222 !important;
    border: 1px solid #bbbbbb !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}

#booking-form label {
    color: #333333 !important;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

#booking .booking-section {
    padding: 0;
}

.booking-info {
    padding-right: 30px;
}

.booking-info h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.booking-steps {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.booking-steps li {
    padding: 6px 0;
    color: #555;
}

.booking-steps li i {
    color: #27ae60;
    margin-right: 8px;
}

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

#booking-form label {
    font-weight: 600;
    color: #444;
    font-size: 0.9rem;
}

#booking-form .form-control {
    border-radius: 3px;
    border: 1px solid #ccc;
    padding: 8px 12px;
    height: auto;
}

#booking-form .form-control:focus {
    border-color: #27ae60;
    box-shadow: 0 0 0 2px rgba(39,174,96,0.15);
}

/* GDPR checkbox v rezervaci / kontaktu */
.gdpr-check {
    margin-top: 10px;
}

.gdpr-check label {
    font-weight: normal;
    cursor: pointer;
}

.gdpr-check input[type=checkbox] {
    margin-right: 6px;
    cursor: pointer;
}

/* jQuery UI Datepicker – obsazené dny */
.ui-datepicker .booked-day a,
.ui-datepicker .booked-day span {
    background: #ffcccc !important;
    color: #c0392b !important;
    border-radius: 3px;
    text-decoration: line-through;
}

/* --- COOKIE LIŠTA --- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.97);
    color: #eee;
    z-index: 99999;
    border-top: 3px solid #27ae60;
}

.cookie-banner-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-inner p {
    margin: 0;
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.5;
    min-width: 200px;
}

.cookie-banner-inner a {
    color: #7deba4;
    text-decoration: underline;
}

#cookie-accept {
    white-space: nowrap;
    background: #27ae60;
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 3px;
    font-size: 0.9rem;
    cursor: pointer;
}

#cookie-accept:hover {
    background: #219a52;
}

/* --- ADMIN PŘIHLÁŠENÍ --- */
.login-box .alert {
    margin-bottom: 15px;
}

/* --- PŘIZPŮSOBENÍ BOOTSTRAP ALERT PRO BOOKING --- */
#booking-msg {
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 0.95rem;
}

/* --- RESPONSIVE OPRAVY --- */
@media (max-width: 767px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .booking-info {
        padding-right: 0;
        margin-bottom: 20px;
    }
}
