.costa-alora-booking {
    --cab-sky: #26bdf7;
    --cab-sky-dark: #087aa7;
    --cab-sea: #0f766e;
    --cab-reef: #14b8a6;
    --cab-ink: #102332;
    --cab-text: #334155;
    --cab-muted: #64748b;
    --cab-line: #e2edf3;
    --cab-panel: #ffffff;
    --cab-page: #f6fbfd;
    --cab-danger: #dc2626;
    --cab-danger-soft: #fff1f2;
    --cab-warning: #f59e0b;
    --cab-success: #15803d;
    color: var(--cab-text);
    font-family: "Roboto", Arial, sans-serif;
    margin: 0 auto;
    max-width: 1120px;
}

.costa-alora-booking *,
.costa-alora-booking *::before,
.costa-alora-booking *::after {
    box-sizing: border-box;
}

.costa-alora-booking__intro-card {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(16, 35, 50, 0.96), rgba(8, 122, 167, 0.9)),
        #102332;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(16, 35, 50, 0.18);
    color: #fff;
    display: grid;
    gap: 20px;
    grid-template-columns: auto minmax(0, 1fr);
    margin-bottom: 18px;
    overflow: hidden;
    padding: clamp(22px, 4vw, 38px);
    position: relative;
}

.costa-alora-booking__intro-card::after {
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 12px);
    bottom: 0;
    content: "";
    opacity: 0.28;
    position: absolute;
    right: 0;
    top: 0;
    width: 36%;
}

.costa-alora-booking__intro-card > * {
    position: relative;
    z-index: 1;
}

.costa-alora-booking__intro-icon {
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    color: var(--cab-sky-dark);
    display: inline-flex;
    font-size: 36px;
    height: 68px;
    justify-content: center;
    width: 68px;
}

.costa-alora-booking__eyebrow {
    color: #a7f3d0;
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.costa-alora-booking__intro-card h2 {
    color: #fff;
    font-family: "Merienda One", cursive;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.15;
    margin: 0 0 10px;
    padding: 0;
}

.costa-alora-booking__intro-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    max-width: 760px;
}

.costa-alora-booking__intro-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.costa-alora-booking__intro-chips span {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 10px;
}

.costa-alora-booking__stepper {
    background: var(--cab-panel);
    border: 1px solid var(--cab-line);
    border-radius: 8px;
    margin-bottom: 18px;
    padding: 18px;
}

.costa-alora-booking__stepper h3 {
    color: var(--cab-ink);
    font-size: 18px;
    line-height: 1.25;
    margin: 0 0 18px;
    padding: 0;
}

.costa-alora-booking__stepper ol {
    counter-reset: booking-step;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.costa-alora-booking__stepper li {
    border-left: 3px solid var(--cab-line);
    min-width: 0;
    padding: 0 4px 0 14px;
    position: relative;
}

.costa-alora-booking__stepper li::before {
    background: var(--cab-ink);
    border: 3px solid #fff;
    border-radius: 999px;
    box-shadow: 0 0 0 1px var(--cab-line);
    color: #fff;
    content: counter(booking-step);
    counter-increment: booking-step;
    display: grid;
    font-size: 11px;
    font-weight: 800;
    height: 28px;
    left: -16px;
    place-items: center;
    position: absolute;
    top: -2px;
    width: 28px;
}

.costa-alora-booking__stepper .dashicons {
    color: var(--cab-sky-dark);
    display: block;
    margin: 2px 0 8px 4px;
}

.costa-alora-booking__stepper strong,
.costa-alora-booking__stepper small {
    display: block;
}

.costa-alora-booking__stepper strong {
    color: var(--cab-ink);
    font-size: 15px;
    line-height: 1.3;
}

.costa-alora-booking__stepper small {
    color: var(--cab-muted);
    font-size: 13px;
    line-height: 1.45;
    margin-top: 5px;
}

.costa-alora-booking__form {
    background: var(--cab-page);
    border: 1px solid var(--cab-line);
    border-radius: 8px;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(260px, 0.78fr) minmax(340px, 1.22fr);
    padding: clamp(14px, 2vw, 20px);
}

.costa-alora-booking__form .costa-alora-booking__section:nth-of-type(3),
.costa-alora-booking__form .costa-alora-booking__button {
    grid-column: 1 / -1;
}

.costa-alora-booking__section {
    background: var(--cab-panel);
    border: 1px solid var(--cab-line);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(15, 35, 50, 0.08);
    overflow: hidden;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.costa-alora-booking__section:hover,
.costa-alora-booking__section:focus-within {
    border-color: rgba(38, 189, 247, 0.6);
    box-shadow: 0 20px 46px rgba(15, 35, 50, 0.11);
}

.costa-alora-booking__section-toggle {
    align-items: center;
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--cab-line);
    color: var(--cab-ink);
    cursor: default;
    display: flex;
    font-size: 16px;
    font-weight: 800;
    gap: 10px;
    line-height: 1.3;
    padding: 16px 18px;
    text-align: left;
    width: 100%;
}

.costa-alora-booking__section-toggle .dashicons {
    align-items: center;
    background: #e8f8ff;
    border-radius: 8px;
    color: var(--cab-sky-dark);
    display: inline-flex;
    flex: 0 0 auto;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.costa-alora-booking__section-toggle::after {
    content: "";
    display: none;
}

.costa-alora-booking__section-body {
    display: grid;
    gap: 16px;
    padding: clamp(18px, 2vw, 24px);
}

.costa-alora-booking__field {
    margin: 0;
}

.costa-alora-booking__field label {
    color: var(--cab-ink);
    display: block;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
}

.costa-alora-booking__hint {
    color: var(--cab-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.costa-alora-booking .costa-alora-booking__field input,
.costa-alora-booking .costa-alora-booking__field select,
.costa-alora-booking .costa-alora-booking__field textarea {
    background: #fbfdff !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    color: var(--cab-ink) !important;
    font-family: "Roboto", Arial, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    min-height: 58px !important;
    padding: 0 18px !important;
    transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease !important;
    width: 100% !important;
}

.costa-alora-booking .costa-alora-booking__field select {
    -webkit-appearance: none !important;
    appearance: none !important;
    background-color: #fff !important;
    background-image:
        linear-gradient(45deg, transparent 50%, #334155 50%),
        linear-gradient(135deg, #334155 50%, transparent 50%) !important;
    background-position:
        calc(100% - 28px) 25px,
        calc(100% - 20px) 25px !important;
    background-repeat: no-repeat !important;
    background-size: 8px 8px, 8px 8px !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    height: 58px !important;
    padding-right: 54px !important;
}

.costa-alora-booking .costa-alora-booking__field input,
.costa-alora-booking .costa-alora-booking__field textarea {
    padding-bottom: 14px !important;
    padding-top: 14px !important;
}

.costa-alora-booking .costa-alora-booking__field input:focus,
.costa-alora-booking .costa-alora-booking__field select:focus,
.costa-alora-booking .costa-alora-booking__field textarea:focus {
    background: #fff !important;
    border-color: #7fb2ff !important;
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.22) !important;
    outline: 0 !important;
}

.costa-alora-booking__field textarea {
    min-height: 112px;
    resize: vertical;
}

.costa-alora-booking .costa-alora-booking__button {
    appearance: none !important;
    background: #14865f !important;
    border: 1px solid #14865f !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 22px rgba(20, 134, 95, 0.2) !important;
    color: #fff !important;
    cursor: pointer !important;
    font-family: "Roboto", Arial, sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    justify-self: end;
    line-height: 1 !important;
    min-height: 58px !important;
    padding: 0 30px !important;
    text-align: center !important;
    text-transform: none !important;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease !important;
}

.costa-alora-booking .costa-alora-booking__button:hover,
.costa-alora-booking .costa-alora-booking__button:focus {
    background: #0f7553 !important;
    border-color: #0f7553 !important;
    box-shadow: 0 12px 26px rgba(20, 134, 95, 0.28) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.costa-alora-booking__notice {
    border: 1px solid;
    border-left-width: 5px;
    border-radius: 8px;
    font-weight: 800;
    margin-bottom: 18px;
    padding: 14px 16px;
}

.costa-alora-booking__notice--success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    border-left-color: var(--cab-success);
    color: #166534;
}

.costa-alora-booking__notice--error {
    background: var(--cab-danger-soft);
    border-color: #fecdd3;
    border-left-color: var(--cab-danger);
    color: #991b1b;
}

.costa-alora-booking__success-card {
    align-items: flex-start;
    background: linear-gradient(135deg, #ecfdf5, #f7fffb);
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(21, 128, 61, 0.12);
    color: #14532d;
    display: grid;
    gap: 14px;
    grid-template-columns: auto minmax(0, 1fr);
    margin-bottom: 18px;
    padding: clamp(18px, 3vw, 24px);
}

.costa-alora-booking__success-icon {
    align-items: center;
    background: var(--cab-success);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 24px;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.costa-alora-booking__success-card h3 {
    color: #14532d;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 8px;
    padding: 0;
}

.costa-alora-booking__success-card p {
    color: #166534;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px;
}

.costa-alora-booking__success-card ol {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 20px;
}

.costa-alora-booking__success-card li {
    color: #14532d;
    font-size: 14px;
    line-height: 1.5;
}

.costa-alora-booking-modal-open {
    overflow: hidden;
}

.costa-alora-booking__modal[hidden] {
    display: none;
}

.costa-alora-booking__modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 18px;
    position: fixed;
    z-index: 999999;
}

.costa-alora-booking__modal-backdrop {
    background: rgba(16, 35, 50, 0.62);
    inset: 0;
    position: absolute;
}

.costa-alora-booking__modal-panel {
    background: #fff;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(16, 35, 50, 0.28);
    max-width: 520px;
    padding: clamp(22px, 4vw, 32px);
    position: relative;
    width: min(100%, 520px);
    z-index: 1;
}

.costa-alora-booking__modal-close {
    align-items: center;
    appearance: none;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    color: #334155;
    cursor: pointer;
    display: inline-flex;
    font-size: 24px;
    height: 36px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 14px;
    top: 14px;
    width: 36px;
}

.costa-alora-booking__modal-icon {
    align-items: center;
    background: var(--cab-success);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 30px;
    height: 58px;
    justify-content: center;
    margin-bottom: 14px;
    width: 58px;
}

.costa-alora-booking__modal-panel h3 {
    color: var(--cab-ink);
    font-size: 28px;
    line-height: 1.2;
    margin: 0 40px 10px 0;
    padding: 0;
}

.costa-alora-booking__modal-panel p {
    color: var(--cab-text);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 14px;
}

.costa-alora-booking__modal-panel ul {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding: 14px 14px 14px 32px;
}

.costa-alora-booking__modal-panel li {
    color: #14532d;
    font-size: 14px;
    line-height: 1.5;
}

.costa-alora-booking__modal-button {
    appearance: none;
    background: #14865f;
    border: 1px solid #14865f;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    min-height: 48px;
    padding: 0 20px;
}

.costa-alora-booking__modal-button:hover,
.costa-alora-booking__modal-button:focus {
    background: #0f7553;
    border-color: #0f7553;
}

.costa-alora-booking__inline-error {
    color: var(--cab-danger);
    display: block;
    font-size: 14px;
    font-weight: 800;
    margin-top: 8px;
}

.costa-alora-booking__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.costa-alora-booking__legend span {
    align-items: center;
    background: #fff;
    border: 1px solid var(--cab-line);
    border-radius: 999px;
    color: var(--cab-muted);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 6px;
    padding: 6px 9px;
}

.costa-alora-booking__legend-box {
    border-radius: 999px;
    display: inline-block;
    height: 10px;
    width: 10px;
}

.costa-alora-booking__legend-box--available {
    background: #e8f8ff;
}

.costa-alora-booking__legend-box--selected {
    background: var(--cab-sea);
}

.costa-alora-booking__legend-box--blocked {
    background: var(--cab-danger);
}

.costa-alora-booking__calendar {
    margin-top: 8px;
    max-width: 100%;
    position: relative;
}

.costa-alora-booking__calendar--loading {
    opacity: 0.62;
    pointer-events: none;
}

.costa-alora-booking__calendar .ui-datepicker {
    background: #fff;
    border: 1px solid var(--cab-line);
    border-radius: 8px;
    box-shadow: none;
    display: block;
    padding: 14px;
    width: 100%;
}

.costa-alora-booking__calendar .ui-datepicker-header {
    align-items: center;
    background: #f8fbfd;
    border: 1px solid var(--cab-line);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 8px;
}

.costa-alora-booking__calendar .ui-datepicker-title {
    color: var(--cab-ink);
    font-weight: 800;
    order: 2;
    text-align: center;
    width: 180px;
}

.costa-alora-booking__calendar .ui-datepicker-prev,
.costa-alora-booking__calendar .ui-datepicker-next {
    align-items: center;
    background: #fff;
    border: 1px solid var(--cab-line);
    border-radius: 6px;
    color: var(--cab-sky-dark);
    cursor: pointer;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 32px;
    padding: 0 10px;
    text-decoration: none;
}

.costa-alora-booking__calendar .ui-datepicker-prev {
    order: 1;
}

.costa-alora-booking__calendar .ui-datepicker-next {
    order: 3;
}

.costa-alora-booking__calendar .ui-datepicker-calendar {
    border-collapse: separate;
    border-spacing: 5px;
    table-layout: fixed;
    width: 100%;
}

.costa-alora-booking__calendar .ui-datepicker-calendar th,
.costa-alora-booking__calendar .ui-datepicker-calendar td {
    padding: 0;
    text-align: center;
}

.costa-alora-booking__calendar .ui-datepicker-calendar th {
    color: var(--cab-muted);
    font-size: 11px;
    font-weight: 800;
    padding-bottom: 4px;
    text-transform: uppercase;
}

.costa-alora-booking__calendar .ui-datepicker-calendar a,
.costa-alora-booking__calendar .ui-datepicker-calendar span {
    border-radius: 8px;
    display: block;
    line-height: 1.4;
    min-height: 38px;
    padding: 9px 4px;
    text-decoration: none;
}

.costa-alora-booking__calendar .ui-datepicker-calendar a {
    background: #eefaff;
    border: 1px solid #d6f2fb;
    color: var(--cab-ink);
    font-weight: 800;
}

.costa-alora-booking__calendar .ui-datepicker-calendar a:hover {
    background: #dff6ff;
    border-color: var(--cab-sky);
}

.costa-alora-booking__calendar .ui-datepicker-unselectable span,
.costa-alora-booking__calendar .costa-alora-booking__blocked-date span {
    background: var(--cab-danger-soft);
    border: 1px solid #fecdd3;
    color: #991b1b;
    font-weight: 800;
    position: relative;
}

.costa-alora-booking__calendar .costa-alora-booking__blocked-date span::after {
    background: var(--cab-warning);
    border: 2px solid #fff;
    border-radius: 999px;
    content: "";
    height: 10px;
    position: absolute;
    right: 4px;
    top: 4px;
    width: 10px;
}

.costa-alora-booking__calendar .costa-alora-booking__selected-date a {
    background: var(--cab-sea);
    border-color: var(--cab-sea);
    box-shadow: 0 8px 16px rgba(15, 118, 110, 0.2);
    color: #fff;
}

.costa-alora-booking__selected-dates {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    color: #166534;
    font-weight: 800;
    margin-top: 12px;
    min-height: 0;
    padding: 0;
}

.costa-alora-booking__selected-dates:not(:empty) {
    padding: 11px 13px;
}

@media (max-width: 900px) {
    .costa-alora-booking__stepper ol,
    .costa-alora-booking__form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .costa-alora-booking,
    .costa-alora-booking__form,
    .costa-alora-booking__section,
    .costa-alora-booking__section-body,
    .costa-alora-booking__field,
    .costa-alora-booking__calendar,
    .costa-alora-booking__calendar .ui-datepicker {
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }

    .costa-alora-booking__intro-card {
        align-items: start;
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .costa-alora-booking__success-card {
        grid-template-columns: 1fr;
    }

    .costa-alora-booking__modal {
        align-items: flex-end;
        padding: 12px;
    }

    .costa-alora-booking__modal-panel {
        max-height: calc(100vh - 24px);
        overflow: auto;
        width: 100%;
    }

    .costa-alora-booking__intro-card::after {
        width: 55%;
    }

    .costa-alora-booking__stepper ol {
        gap: 16px;
    }

    .costa-alora-booking__form {
        padding: 12px;
    }

    .costa-alora-booking__hint {
        overflow-wrap: anywhere;
    }

    .costa-alora-booking__legend {
        display: grid;
        grid-template-columns: 1fr;
    }

    .costa-alora-booking__legend span {
        justify-content: flex-start;
        width: 100%;
    }

    .costa-alora-booking__section-toggle {
        cursor: pointer;
        padding-right: 48px;
        position: relative;
    }

    .costa-alora-booking__section-toggle::after {
        color: var(--cab-sky-dark);
        content: "+";
        display: block;
        font-size: 26px;
        font-weight: 400;
        line-height: 1;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
    }

    .costa-alora-booking__section.is-open .costa-alora-booking__section-toggle::after {
        content: "-";
    }

    .costa-alora-booking__section-body {
        display: none;
    }

    .costa-alora-booking__section.is-open .costa-alora-booking__section-body {
        display: grid;
    }

    .costa-alora-booking__button {
        justify-self: stretch;
        width: 100%;
    }

    .costa-alora-booking__calendar .ui-datepicker {
        padding: 10px;
    }

    .costa-alora-booking__calendar .ui-datepicker-header {
        gap: 8px;
        padding: 8px;
    }

    .costa-alora-booking__calendar .ui-datepicker-title {
        flex: 1 1 auto;
        font-size: 16px;
        min-width: 0;
        width: auto;
    }

    .costa-alora-booking__calendar .ui-datepicker-prev,
    .costa-alora-booking__calendar .ui-datepicker-next {
        flex: 0 0 42px;
        font-size: 0;
        height: 42px;
        min-height: 42px;
        padding: 0;
        position: relative;
        width: 42px;
    }

    .costa-alora-booking__calendar .ui-datepicker-prev::before,
    .costa-alora-booking__calendar .ui-datepicker-next::before {
        color: var(--cab-sky-dark);
        display: block;
        font-size: 24px;
        font-weight: 800;
        line-height: 1;
    }

    .costa-alora-booking__calendar .ui-datepicker-prev::before {
        content: "<";
    }

    .costa-alora-booking__calendar .ui-datepicker-next::before {
        content: ">";
    }

    .costa-alora-booking__calendar .ui-datepicker-calendar {
        border-spacing: 3px;
    }

    .costa-alora-booking__calendar .ui-datepicker-calendar th {
        font-size: 10px;
    }

    .costa-alora-booking__calendar .ui-datepicker-calendar a,
    .costa-alora-booking__calendar .ui-datepicker-calendar span {
        border-radius: 7px;
        font-size: 14px;
        min-height: 34px;
        padding: 7px 1px;
    }
}

@media (max-width: 420px) {
    .costa-alora-booking__intro-card h2 {
        font-size: 25px;
    }

    .costa-alora-booking__section-body {
        padding: 16px 12px;
    }

    .costa-alora-booking__calendar .ui-datepicker-calendar {
        border-spacing: 2px;
    }

    .costa-alora-booking__calendar .ui-datepicker-calendar a,
    .costa-alora-booking__calendar .ui-datepicker-calendar span {
        font-size: 13px;
        min-height: 31px;
        padding: 6px 1px;
    }
}

body.costa-alora-room-page {
    background: #f6fbfd;
}

body.costa-alora-room-page #main {
    background:
        linear-gradient(180deg, rgba(232, 248, 255, 0.85), rgba(246, 251, 253, 0) 320px),
        #f6fbfd;
}

body.costa-alora-room-page #main > .container,
body.costa-alora-room-page .entry-content,
body.costa-alora-room-page .elementor {
    max-width: 1120px;
}

body.costa-alora-room-page h1,
body.costa-alora-room-page .entry-title {
    color: #102332;
    font-size: clamp(42px, 8vw, 84px);
    line-height: 1;
    margin-bottom: 28px;
    position: relative;
}

body.costa-alora-room-page h1::after,
body.costa-alora-room-page .entry-title::after {
    background: linear-gradient(90deg, #26bdf7, #14b8a6);
    border-radius: 999px;
    content: "";
    display: block;
    height: 5px;
    margin-top: 16px;
    width: 92px;
}

.costa-alora-room-page__card {
    background: #ffffff;
    border: 1px solid #dcecf4;
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(16, 35, 50, 0.1);
    color: #334155;
    margin: 22px 0;
    overflow: hidden;
    padding: clamp(22px, 4vw, 34px);
    position: relative;
}

.costa-alora-room-page__card::before {
    background: linear-gradient(180deg, #26bdf7, #14b8a6);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 6px;
}

.costa-alora-room-page__card p {
    color: #475569 !important;
    font-family: "Roboto", Arial, sans-serif !important;
    line-height: 1.65;
    margin: 0 0 14px !important;
    white-space: normal !important;
}

.costa-alora-room-page__card p:first-child,
.costa-alora-room-page__card p:first-child strong,
.costa-alora-room-page__card p:first-child span {
    color: #102332 !important;
    font-family: "Merienda One", cursive !important;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    margin-bottom: 16px !important;
}

.costa-alora-room-page__card ul {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.costa-alora-room-page__card li,
.costa-alora-room-page__card span {
    color: #475569;
    font-size: 17px;
    line-height: 1.55;
}

.costa-alora-room-page__card li {
    align-items: flex-start;
    display: flex;
    gap: 10px;
}

.costa-alora-room-page__card li::before {
    background: #e8f8ff;
    border: 1px solid #bce9fb;
    border-radius: 999px;
    color: #087aa7;
    content: "\2713";
    display: grid;
    flex: 0 0 24px;
    font-size: 14px;
    font-weight: 900;
    height: 24px;
    line-height: 1;
    place-items: center;
    transform: translateY(1px);
    width: 24px;
}

.costa-alora-room-page__actions,
body.costa-alora-room-page .wp-block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.costa-alora-room-page__actions a,
body.costa-alora-room-page .wp-block-button__link {
    align-items: center;
    background: linear-gradient(135deg, #26bdf7, #0f766e) !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 26px rgba(8, 122, 167, 0.22);
    color: #ffffff !important;
    display: inline-flex;
    font-family: "Roboto", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 900;
    justify-content: center;
    min-height: 48px;
    min-width: 138px;
    padding: 13px 20px !important;
    text-decoration: none !important;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.costa-alora-room-page__actions a:hover,
body.costa-alora-room-page .wp-block-button__link:hover {
    box-shadow: 0 16px 34px rgba(8, 122, 167, 0.32);
    color: #ffffff !important;
    transform: translateY(-1px);
}

body.costa-alora-room-page .elementor-widget-image-gallery,
body.costa-alora-room-page .gallery {
    background: #ffffff;
    border: 1px solid #dcecf4;
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(16, 35, 50, 0.08);
    margin-bottom: 22px;
    overflow: hidden;
    padding: 12px;
}

body.costa-alora-room-page .gallery img,
body.costa-alora-room-page .elementor-image-gallery img {
    border-radius: 8px;
}

@media (min-width: 780px) {
    body.costa-alora-room-page .elementor-widget-text-editor .elementor-widget-container,
    body.costa-alora-room-page .entry-content {
        display: grid;
        gap: 18px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.costa-alora-room-page--kubo .elementor-widget-text-editor .elementor-widget-container,
    body.costa-alora-room-page--kubo .entry-content {
        display: block;
    }

    .costa-alora-room-page__card {
        margin: 0;
    }
}

@media (max-width: 700px) {
    .costa-alora-room-page__card {
        border-radius: 10px;
        margin: 16px 0;
        padding: 20px;
    }

    .costa-alora-room-page__actions,
    body.costa-alora-room-page .wp-block-buttons {
        display: grid;
    }

    .costa-alora-room-page__actions a,
    body.costa-alora-room-page .wp-block-button__link {
        width: 100%;
    }
}
