/* =============================================
   Royal Palm — Hotres Widget Styles
   ============================================= */

/* --- Kontener inline --- */
.rp-hotres-container,
#hotresContainer {
    width: 100%;
    min-height: 500px;
}

/* --- iFrame wrapper --- */
.rp-hotres-iframe-wrap {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.rp-hotres-iframe-wrap iframe {
    width: 100%;
    min-height: 850px;
    border: none;
    display: block;
}

/* --- Przyciski --- */
.rp-hotres-btn {
    display: inline-block;
    padding: 14px 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-align: center;
    user-select: none;
}

.rp-hotres-btn--dark {
    background: #b59079;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.rp-hotres-btn--dark:hover {
    background: #a07d68;
    color: #fff;
}

.rp-hotres-btn--light {
    background: #fff;
    color: #1a1a1a;
}
.rp-hotres-btn--light:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

.rp-hotres-btn--outline {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}
.rp-hotres-btn--outline:hover {
    background: #1a1a1a;
    color: #fff;
}

/* --- Searchbar --- */
.rp-hotres-searchbar,
.hotresSearchBar {
    background: #fff;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    border-radius: 4px;
    height: 60px;
    overflow: hidden;
    min-width: 340px;
    max-width: 580px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 24px auto 0;
}

.hotresSearchBar > div {
    padding: 0 20px;
    min-width: 100px;
    transition: 0.2s;
    color: #1a1a1a;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    display: flex;
}

.hotresSearchBar .arrival { position: relative; }
.hotresSearchBar .arrival::after,
.hotresSearchBar .arrival::before {
    content: '';
    width: 8px;
    border: 1px solid #555;
    transform: rotate(45deg);
    position: absolute;
    top: 11px;
    right: -10px;
}
.hotresSearchBar .arrival::before {
    top: 17px;
    transform: rotate(-45deg);
}

.hotresSearchBar > div:last-child {
    padding: 0;
    height: 100%;
    flex-grow: 2;
}

.hotresSearchBar button {
    height: 100%;
    width: 100%;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.hotresSearchBar button:hover {
    background: #333;
}

.hotresSearchBar .day {
    font-size: 30px;
    padding-right: 8px;
    font-weight: 700;
    line-height: 1;
}

.hotresSearchBar .month {
    font-size: 12px;
    line-height: 14px;
}

.hotresSearchBar .month small {
    font-size: 11px;
    color: #888;
    display: block;
}

@media (max-width: 600px) {
    .rp-hotres-searchbar,
    .hotresSearchBar {
        min-width: 100%;
        max-width: 100%;
        border-radius: 4px;
        flex-wrap: wrap;
        height: auto;
        padding: 8px 0;
    }
}
