:root {
    --travelbook-blue: #0089C3;
    --travelbook-blue-text: #B7EAFF;
    --travelbook-text: #333;
    --travelbook-white: #FFFFFF;
    --travelbook-pink: #EC3E92;
    --travelbook-yellow: #FFE28A;
    --travelbook-border: #DCDBDB;
    --travelbook-dash: #F2C12E;
    --travelbook-dot: #D9D9D9;
}

* {
    box-sizing: border-box;
}

body.travelbook-page {
    margin: 0;
    font-family: Inter, sans-serif;
    color: var(--travelbook-text);
}


/* =========================
   HEADER
========================= */
.travelbook-header {
    background-color: var(--travelbook-blue);
    padding: 28px 0 20px;
}

.travelbook-header__inner {
    display: flex;
    align-items: center;
}

.travelbook-header__brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.travelbook-header__title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.travelbook-header__icon {
    color: var(--travelbook-white);
    font-size: 1.4rem;
    line-height: 1;
}

.travelbook-header__title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1;
    margin: 0;
}

.travelbook-header__title-main {
    color: var(--travelbook-white);
    font-size: 2rem;
    font-weight: 300;
}

    .travelbook-header__title-main strong {
        font-weight: 500;
    }

.travelbook-header__divider {
    width: 2px;
    height: 34px;
    background-color: var(--travelbook-yellow);
    display: inline-block;
}

.travelbook-header__title-country {
    color: var(--travelbook-yellow);
    font-size: 1.95rem;
    font-weight: 500;
}

.travelbook-header__logo-wrap {
    padding-left: 28px;
}

.travelbook-header__logo {
    display: block;
    max-width: 140px;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* =========================
   HERO
========================= */
.travelbook-hero {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.travelbook-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: bottom;
}

.travelbook-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.20) 38%, rgba(0, 0, 0, 0.18) 100%);
}

.travelbook-hero__content {
    position: relative;
    z-index: 2;
    min-height: 540px;
    align-items: stretch;
}

.travelbook-hero__text {
    padding-bottom: 70px;
    max-width: 700px;
}

.travelbook-hero__title {
    color: var(--travelbook-white);
    font-size: 32px;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 12px;
}

.travelbook-hero__title-span {
    color: var(--travelbook-blue-text);
}

.travelbook-hero__description {
    color: var(--travelbook-white);
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
}

/* =========================
   FORM
========================= */
.travelbook-form {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 540px;
}

.travelbook-form__card {
    width: 100%;
    max-width: 420px;
    background-color: var(--travelbook-white);
    border: 1px solid var(--travelbook-border);
    border-radius: 18px;
    padding: 32px 55px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.travelbook-form__title {
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    color: var(--travelbook-text);
    font-weight: 500;
    margin-bottom: 10px;
}

.travelbook-form__subtitle {
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
    color: var (--travelbook-text);
    margin-bottom: 22px;
    font-weight: 300;
}

.travelbook-form__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.travelbook-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.travelbook-form__label {
    font-size: 12px;
    color: var (--travelbook-text);
    font-weight: 300;
}

.travelbook-form__control {
    height: 46px;
    border-radius: 8px;
    border: 1px solid #cfcfcf;
    padding: 0 14px;
    font-size: 0.95rem;
    color: var(--travelbook-text);
    box-shadow: none;
}

    .travelbook-form__control:focus {
        border-color: var(--travelbook-blue);
        box-shadow: 0 0 0 0.2rem rgba(0, 137, 195, 0.12);
    }

    .travelbook-form__control::placeholder {
        color: #b7b7b7;
    }

.travelbook-form__button {
    margin-top: 8px;
    height: 52px;
    border: 0;
    border-radius: 10px;
    background-color: var(--travelbook-pink);
    color: var(--travelbook-white);
    font-size: 16px;
    font-weight: 500;
    transition: 0.25s ease;
    width: 260px;
}

    .travelbook-form__button:hover {
        background-color: #d93182;
        color: var(--travelbook-white);
    }

.travelbook-form__note {
    margin-top: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    color: #777777;
    font-size: 0.88rem;
    line-height: 1.35;
    text-align: center;
}

.travelbook-form__note-icon {
    color: var(--travelbook-pink);
    margin-top: 2px;
    flex-shrink: 0;
}

.travelbook-form__note-text {
    max-width: 300px;
    font-size: 12px;
    text-align: center;
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.travelbook-steps {
    position: relative;
    overflow: hidden;
}

.container__travelbook-steps {
    max-width: 100%;
    padding: 0 3rem;
}

.travelbook-steps {
    overflow: hidden;
}

.travelbook-steps__wrapper {
    position: relative;
    padding: 5rem 0 3rem;
}

.travelbook-steps__line {
    position: absolute;
    top: 0rem;
    left: 14%;
    width: 70%;
    height: 88%;
    z-index: 1;
    pointer-events: none;
}

    .travelbook-steps__line svg {
        width: 100%;
        height: 100%;
        display: block;
    }

.travelbook-steps__pin {
    position: absolute;
    right: 13%;
    bottom: 3rem;
    z-index: 2;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--travelbook-dash);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.travelbook-steps__carousel,
.travelbook-steps__content {
    position: relative;
    z-index: 2;
}

.travelbook-steps__media {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.travelbook-steps__image {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.travelbook-steps__content {
    max-width: 580px;
    margin-left: auto;
}

.travelbook-steps__title {
    color: var(--travelbook-text);
    margin-bottom: 0.9rem;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.travelbook-steps__highlight {
    display: inline-block;
    background: var(--travelbook-yellow);
    padding: .4em 0.25em .1em 0.5em;
    line-height: 1;
}

.travelbook-steps__text {
    font-size: 16px;
    line-height: normal;
    color: var(--travelbook-text);
    margin-bottom: 1.8rem;
    margin-left: 0.8rem;
}

.travelbook-steps__indicators {
    justify-content: center;
    gap: 10px;
    margin: 0;
}

    .travelbook-steps__indicators [data-bs-target] {
        width: 14px;
        height: 14px;
        margin: 0;
        border: 0;
        border-radius: 50%;
        background: var(--travelbook-dot);
        opacity: 1;
    }

    .travelbook-steps__indicators .active {
        background: var(--travelbook-dash);
    }

.travelbook-special {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 6rem;
}

.travelbook-special__container {
    position: relative;
    max-width: 100%;
    padding: 0 3rem;
}

.travelbook-special__header {
    margin-bottom: 2rem;
}

.travelbook-special__title {
    margin: 0;
    color: var(--travelbook-text);
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 1.2;
}

.travelbook-special__highlight {
    display: inline-block;
    padding: 0.04em 0.2em;
    background-color: rgba(236, 62, 146, 0.28);
    line-height: 1;
}

.travelbook-special__grid-wrapper {
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

.travelbook-special__line {
    position: absolute;
    inset: -1rem 25rem -13rem -3.5rem;
    z-index: 1;
    pointer-events: none;
}

    .travelbook-special__line svg {
        display: block;
        width: 100%;
        height: 100%;
    }

/* Card */
.travelbook-special-card {
    position: relative;
    z-index: 2;
    min-height: 270px;
    max-height: 270px;
    padding: 1.7rem 1.5rem 1.9rem;
    border: 1px solid var(--travelbook-border);
    border-radius: 16px;
    background-color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    gap: 25px;
}


.travelbook-special-card__icon-bg {
    width: 99px;
    height: 99px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.travelbook-special-card__text-wrap {
    width: 85%;
}

.travelbook-special-card__icon-bg--yellow {
    background-color: #FFE28A;
}

.travelbook-special-card__icon-bg--cream {
    background-color: #FBF2E4;
}

.travelbook-special-card__icon-bg--blue {
    background-color: #B7EAFF;
}

.travelbook-special-card__icon {
    font-size: 2rem;
    color: var(--travelbook-pink);
    line-height: 1;
    width: 93px;
    height: 92px;
    aspect-ratio: 93/92;
}

.travelbook-special-card__title {
    margin: 0 0 0.85rem;
    color: var(--travelbook-text);
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.travelbook-special-card__text {
    margin: 0;
    color: var(--travelbook-text);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}


.travelbook-cta {
    position: relative;
    padding: 3rem;
    background-image: url("https://eurocdn.azureedge.net/bucket/EBE/TravelBook/ebe/348Frame_1270.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 420px;
}

    .travelbook-cta .container {
        position: relative;
        z-index: 2;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

.travelbook-cta__content {
    max-width: 430px;
}


.travelbook-cta__title {
    margin: 0 0 20px;
    color: var(--travelbook-white);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.travelbook-cta__text {
    margin: 0 0 18px;
    color: var(--travelbook-white);
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.travelbook-cta__button {
    margin-top: 10px;
    min-width: 200px;
    max-width: 200px;
    max-height: 40px;
    padding: 13px 35px;
    border: 0;
    border-radius: 8px;
    background-color: var(--travelbook-pink);
    color: var(--travelbook-white);
    font-weight: 500;
    line-height: 1;
    transition: 0.25s ease;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    justify-content: center;
    align-items: center;
    display: flex;
}

    .travelbook-cta__button:hover {
        background-color: #d83284;
        color: var(--travelbook-white);
    }

.travelbook-cta__visual {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.travelbook-cta__circle {
    position: absolute;
    width: 315px;
    height: 315px;
    border-radius: 50%;
    background-color: rgba(255, 226, 138, 0.72);
    z-index: 1;
}

.travelbook-cta__card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 753px;
    background-color: rgba(255, 255, 255, 0.94);
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.travelbook-cta__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 753px;
    max-height: 266px;
}

.travelbook-cta__dash {
    position: absolute;
    display: block;
    width: 58px;
    height: 34px;
    border: 2px dashed var(--travelbook-pink);
    z-index: 3;
}

.travelbook-cta__dash--top {
    top: -10px;
    right: 120px;
    border-bottom: 0;
    border-left: 0;
}

.travelbook-cta__dash--bottom {
    right: 26px;
    bottom: -12px;
    border-top: 0;
    border-left: 0;
}

/* Footer */
.travelbook-footer {
    background-color: var(--travelbook-blue);
    padding: 30px 0 38px;
}

.container__travelbook-footer {
    max-width: 100%;
    padding: 0 3rem;
}

.travelbook-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.travelbook-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.travelbook-footer__by {
    color: var(--travelbook-white);
    font-size: 0.95rem;
    line-height: 1;
}

.travelbook-footer__logo {
    display: block;
    width: 120px;
    height: auto;
}

.travelbook-footer__copy {
    margin: 0;
    color: var(--travelbook-white);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/************************************************* DATOS ITINERARIO ***********************************************/
.travelbook-plan {
    border-top: 3px solid var(--travelbook-blue);
    padding: 36px 0 120px;
}

.travelbook-plan__container {
    max-width: 100%;
}

.travelbook-plan__intro {
    margin-bottom: 42px;
}

.travelbook-plan__section-heading {
    margin-bottom: 20px;
}

.travelbook-plan__heading {
    max-width: 280px;
}

.travelbook-plan__section-heading {
    max-width: 50%;
}

.travelbook-plan__title {
    margin: 0 0 6px;
    color: var(--travelbook-text);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.travelbook-plan__subtitle {
    margin: 0;
    color: var(--travelbook-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.travelbook-plan__summary-card,
.travelbook-plan__timeline-panel,
.travelbook-plan__map-card {
    border: 1px solid var(--travelbook-border);
    border-radius: 18px;
}

.travelbook-plan__summary-card {
    padding: 10px 22px;
    width: 908px;
    height: 131px;
    border-radius: 8px;
    background: #FBFBFB;
}

.travelbook-plan__summary-item {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
}

.travelbook-plan__summary-item--end {
    justify-content: flex-end;
}

.travelbook-plan__label {
    color: var(--travelbook-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.travelbook-plan__value {
    color: var(--travelbook-text);
    font-weight: 600;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.travelbook-plan__timeline-panel {
    padding: 20px 18px 16px;
    min-height: 450px;
    max-height: 480px;
}

.travelbook-plan__start {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 4px;
    margin-bottom: 18px;
}

.travelbook-plan__end {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 4px;
    margin: 10px 0 20px;
}

.travelbook-plan__start-icon {
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0c348;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.travelbook-plan__start-content {
    display: flex;
    flex-direction: column;
}

.travelbook-plan__start-title {
    color: var(--travelbook-text);
    font-weight: 500;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.travelbook-plan__start-date {
    color: var(--travelbook-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.travelbook-plan__timeline-list {
    max-height: 425px;
    overflow-y: auto;
}

.travelbook-plan__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 6px;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .travelbook-plan__timeline::-webkit-scrollbar {
        width: 6px;
    }

    .travelbook-plan__timeline::-webkit-scrollbar-thumb {
        background-color: #d8d8d8;
        border-radius: 20px;
    }

.travelbook-plan__stop-card {
    position: relative;
    z-index: 2;
    background-color: var(--travelbook-white);
    border: 1px solid var(--travelbook-border);
    border-radius: 14px;
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-direction: column;
}

.travelbook-plan__stop-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.travelbook-dashed-line {
    display: block;
    flex-shrink: 0;
}

.travelbook-dashed-line--vertical {
    width: 0;
    height: 37px;
    border-left: 2px dashed var(--travelbook-dash);
    margin-left: 20px;
}

.travelbook-plan__stop-main {
    min-width: 0;
}

.travelbook-plan__stop-city {
    margin: 0 0 8px;
    color: var(--travelbook-text);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.travelbook-plan__stop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
}

.travelbook-plan__stop-separator {
    color: #b5b5b5;
}

.travelbook-plan__edit-btn {
    min-width: 72px;
    height: 30px;
    border: 0;
    border-radius: 8px;
    background-color: #f0c348;
    color: #5a4a13;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    transition: 0.2s ease;
}

    .travelbook-plan__edit-btn:hover {
        background-color: #e0b42c;
    }

.travelbook-plan__map-card {
    min-height: 450px;
    max-height: 480px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.travelbook-plan__map-image {
    display: block;
    max-width: 100%;
    max-height: 360px;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.travelbook-plan__actions {
    padding-top: 20px;
    display: flex;
    justify-content: center;
}

.travelbook-plan__next-btn {
    min-width: 230px;
    height: 44px;
    border: 0;
    border-radius: 6px;
    background-color: var(--travelbook-pink);
    color: var(--travelbook-white);
    font-size: 16px;
    font-weight: 500;
    transition: 0.25s ease;
}

    .travelbook-plan__next-btn:hover {
        background-color: #d93182;
    }

.travelbook-plan__summary-col {
    margin: 10px 0 !important;
}

.travelbook-plan__summary-col--duration,
.travelbook-plan__summary-col--date {
    padding-left: 20px !important;
}

/****************************** EDITAR DESTINOS ************************************/
.travelbook-plan__timeline-edit {
    width: 100%;
}

.travelbook-plan__timeline-edit-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.travelbook-plan__timeline-edit-city {
    margin: 0;
    color: var(--travelbook-text);
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}

.travelbook-plan__timeline-edit-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: var(--travelbook-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.travelbook-plan__timeline-edit-country {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.travelbook-plan__timeline-edit-flag {
    width: 25px;
    height: 25px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

.travelbook-plan__timeline-edit-separator {
    color: #9b9b9b;
}

.travelbook-plan__timeline-edit-section + .travelbook-plan__timeline-edit-section {
    margin-top: 26px;
}

.travelbook-plan__timeline-edit-title {
    margin: 0 0 8px;
    color: var(--travelbook-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.travelbook-plan__timeline-edit-text {
    margin: 0 0 14px;
    color: var(--travelbook-text);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.travelbook-plan__timeline-edit-limit {
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}


.travelbook-plan__timeline-edit-gallery-container {
    padding: 16px;
    border: 1px solid var(--travelbook-border);
    border-radius: 16px;
    min-height: 103px;
    height: auto;
    display: flex;
    gap: 16px;
}

.travelbook-plan__timeline-edit-gallery__text-cotainer{
        display: flex;
    width: 180px;
    justify-content: center;
}

.travelbook-plan__timeline-edit-gallery__text-imgPrincipal{
    font-size: 12px;
}

.travelbook-plan__timeline-edit-gallery__text-cotainer--hidden {
    display: none;
}

.travelbook-plan__timeline-edit-gallery {
    display: flex;
    gap: 16px;
}

.travelbook-plan__timeline-edit-gallery-add-image {
    cursor: pointer;
    flex-shrink: 0;
}

.travelbook-plan__timeline-edit-thumb {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

    .travelbook-plan__timeline-edit-thumb img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .travelbook-plan__timeline-edit-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    padding: 0;
}

.travelbook-plan__timeline-edit-remove i {
    font-size: 10px;
}

.travelbook-plan__timeline-edit-thumb-first {
     width: 180px;
     border: 1px solid var(--travelbook-border);
}

.travelbook-plan__timeline-edit-gallery-add-image--disabled {
    opacity: .45;
    pointer-events: none;
}

.travelbook-plan__timeline-edit-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.travelbook-plan__timeline-edit-textarea {
    width: 100%;
    min-height: 150px;
    max-height: 150px;
    resize: vertical;
    padding: 18px;
    border: 1px solid var(--travelbook-border);
    border-radius: 16px;
    outline: none;
    box-shadow: none;
    color: var(--travelbook-text);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.35;
}

    .travelbook-plan__timeline-edit-textarea:focus {
        border-color: var(--travelbook-blue);
        box-shadow: 0 0 0 0.15rem rgba(0, 137, 195, 0.12);
    }

.travelbook-plan__timeline-edit-actions {
    display: flex;
    justify-content: space-around;
    gap: 12px;
    margin-top: 22px;
}

.travelbook-plan__timeline-edit-btn {
    min-width: 260px;
    max-width: 260px;
    min-height: 42px;
    max-height: 42px;
    border-radius: 8px;
    border: 0;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s ease;
}

.travelbook-plan__timeline-edit-btn--ghost {
    background-color: #efefef;
    color: var(--travelbook-text);
}

.travelbook-plan__timeline-edit-btn--primary {
    background-color: var(--travelbook-pink);
    color: var(--travelbook-white);
}

    .travelbook-plan__timeline-edit-btn--primary:hover {
        background-color: #d93182;
    }

.travelbook-plan__timeline-edit-gallery-add-image {
    width: 100%;
    border: 1px solid var(--travelbook-border);
    border-radius: 18px;
    min-height: 72px;
    min-width: 72px;
    max-height: 72px;
    max-width: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.travelbook-plan__timeline-edit-remove i {
    font-size: 10px;
}

.travelbook-plan__stop-slider {
    margin-top: 16px;
}

    .travelbook-plan__stop-slider .owl-stage-outer {
        overflow: hidden;
    }

.travelbook-plan__stop-slider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.travelbook-plan__stop-slider .owl-item {
    box-sizing: border-box;
}

.travelbook-plan__stop-slider-item {
    width: 100%;
    height: 240px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #f4f4f4;
}

.travelbook-plan__stop-slide,
.travelbook-plan__stop-slider-item {
    width: 100%;
}

.travelbook-plan__stop-slider-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.travelbook-plan__stop-indicators {
    position: static;
    margin-top: 14px;
    margin-bottom: 0;
    gap: 8px;
}

    .travelbook-plan__stop-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        border: 0;
        border-radius: 50%;
        margin: 0;
        opacity: 1;
        background-color: #d9d9d9;
    }

    .travelbook-plan__stop-indicators .active {
        background-color: var(--travelbook-pink);
    }

.travelbook-plan__stop-slider {
    margin-top: 16px;
    cursor: pointer;
    user-select: none;
}

.travelbook-plan__stop-slider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.travelbook-plan__stop-slider-item {
    width: 100%;
    height: 240px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #f4f4f4;
}

.travelbook-plan__stop-slider-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

.travelbook-plan__stop-card--slider {
    padding: 18px 18px 20px;
}

.travelbook-plan__stop-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.travelbook-plan__stop-slider {
    margin-top: 8px;
}

.travelbook-plan__stop-slide {
    width: 374px;
    height: 195px;
}

.owl-item {
    width: 375px !important;
}

.travelbook-plan__stop-slider-item {
    width: 374px;
    height: 195px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f4f4f4;
}

.travelbook-plan__stop-slider-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.travelbook-plan__stop-slider .owl-stage-outer {
    overflow: hidden;
}

.travelbook-plan__stop-slider .owl-stage {
    display: flex;
    align-items: stretch;
}

.travelbook-plan__stop-slider .owl-item {
    cursor: grab;
}

    .travelbook-plan__stop-slider .owl-item:active {
        cursor: grabbing;
    }

.travelbook-plan__stop-slider.owl-theme .owl-nav,
.travelbook-plan__stop-slider.owl-theme .owl-dots {
    display: none;
}

/****************ALBUM**************/
.travelbook-album-result {
    background-color: #f8f8f8;
    border-top: 4px solid var(--travelbook-blue);
    padding: 42px 0 72px;
}

.travelbook-album-result__container {
    max-width: 100%;
    padding-right: 3rem;
    padding-left: 3rem;
}

.travelbook-album-result__back {
    margin-bottom: 18px;
}

.travelbook-album-result__back-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--travelbook-text);
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

    .travelbook-album-result__back-link span:hover {
        color: var(--travelbook-text);
        text-decoration: underline;
    }

.travelbook-album-result__header,
.travelbook-album-result__edit-back {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 24px;
}

.travelbook-album-result__edit-back {
    display: flex;
    justify-content: end;
    align-items: flex-end;
    
}

.travelbook-album-result__edit-link{
        min-width: 150px;
    height: 44px;
    border-radius: 6px;
    border: 1px solid var(--travelbook-pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--travelbook-text);
}

.travelbook-album-result__edit-link:hover{
       
    border: 1px solid #fff;
    color: #fff;
    background-color: var(--travelbook-pink);
}

.travelbook-album-result__edit-link i{
    font-size: 14px;
}

.travelbook-album-result__status {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.travelbook-album-result__status-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.travelbook-album-result__title {
    margin: 0;
    color: var(--travelbook-text);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.travelbook-album-result__description {
    margin: 0;
    color: var(--travelbook-text);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    width: 609px;
}

.travelbook-album-result__cover {
    height: 460px;
    display: flex;
    justify-content: center;
}

.travelbook-album-result__cover-image {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.travelbook-album-result__flipbook-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 460px;
}

.travelbook-album-result__flipbook {
    width: 100%;
    max-width: 1100px;
    min-height: 420px;
    margin: 0 auto;
}

.travelbook-album-result__viewer-block {
    width: 1425px;
    height: 642px;
    max-width: 100%;
    margin: 0 auto;
}

.travelbook-album-result__viewer-shell {
    display: flex;
    justify-content: center;
        display: flex;
    flex-direction: column;
}

.travelbook-album-result__viewer {
    position: relative;
    width: 100%;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.travelbook-album-result__canvas,
.travelbook-album-result__image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.travelbook-album-result__image {
    width: 100%;
    object-fit: contain;
}

.travelbook-album-result__loading {
    color: #7a7a7a;
    font-size: 15px;
}

.travelbook-album-result__pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 5rem;
}

.travelbook-album-result__pager-btn {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #cfcfcf;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .travelbook-album-result__pager-btn:not(:disabled) {
        color: var(--travelbook-pink);
    }

.travelbook-album-result__pager-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5a5a5a;
    font-size: 18px;
    font-weight: 500;
}


.travelbook-album-result__actions {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.travelbook-album-result__btn {
    min-width: 260px;
    height: 44px;
    border-radius: 6px;
    border: 1px solid var(--travelbook-pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.travelbook-album-result__btn--ghost {
    background: transparent;
    color: var(--travelbook-pink);
}

.travelbook-album-result__btn--primary {
    background: var(--travelbook-pink);
    color: #fff;
}

    .travelbook-album-result__btn--primary:hover,
    .travelbook-album-result__btn--ghost:hover {
        text-decoration: none;
    }

.travelbook-album-result__share {
    margin-top: 72px;
    text-align: center;
}

.travelbook-album-result__share-title {
    margin: 0 0 14px;
    color: var(--travelbook-text);
    font-size: 18px;
    font-weight: 500;
}

.travelbook-album-result__share-list {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.travelbook-album-result__share-btn {
    min-width: 105px;
    height: 34px;
    padding: 0 14px;
    border-radius: 6px;
    background: #8b8b8b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
}

    .travelbook-album-result__share-btn:hover {
        color: #fff;
        text-decoration: none;
    }




@media (min-width: 240px) and (max-width: 374px) {
    .travelbook-header__title-main,
    .travelbook-header__title-country,
    .travelbook-header__icon {
        font-size: 20px;
    }

    .travelbook-header__divider{
        height: 20px;
    }

    .travelbook-header__logo-wrap {
        padding-left: 30px;
    }

    .travelbook-header__logo{
        width: 100px;
    }

    /* =========================
    HERO
    ========================= */
    .travelbook-hero {
        min-height: auto;
        background: #f3f3f3;
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
        padding-bottom: 24px;
    }

    .travelbook-hero__image {
        position: relative;
        inset: auto;
        display: block;
        width: 100%;
        height: 430px;
        object-fit: cover;
        object-position: center;
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
    }

    .travelbook-hero__overlay {
        inset: 0 auto auto 0;
        width: 100%;
        height: 430px;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.15) 35%,
            rgba(0, 0, 0, 0.70) 100%
        );
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
    }

    .travelbook-hero__content {
        min-height: auto;
        display: block;
        margin-top: -175px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .travelbook-hero__text {
        max-width: 310px;
        margin: 0 auto 18px;
        padding-bottom: 0;
        text-align: center;
    }

    .travelbook-hero__title {
        font-size: 26px;
        line-height: 1.1;
        margin: 10px 40px;
    }

    .travelbook-hero__description {
        font-size: 16px;
        line-height: 1.3;
    }

    .travelbook-form {
        max-width: 330px;
        margin: 0 auto;
    }

    .travelbook-form__card {
        border-radius: 22px;
        padding: 24px 18px 20px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
    }

    .travelbook-form__title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .travelbook-form__subtitle {
        font-size: 13px;
        line-height: 1.35;
        margin-bottom: 18px;
    }

    .travelbook-form__label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .travelbook-form__control {
        height: 42px;
        font-size: 13px;
        border-radius: 8px;
    }

    .travelbook-form__button {
        height: 48px;
        font-size: 16px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .travelbook-form__note {
        font-size: 12px;
        line-height: 1.4;
        justify-content: center;
    }
}

@media (min-width: 375px) and (max-width: 424px){

}

@media (min-width: 425px) and (max-width: 767px){

}

@media (min-width: 768px) and (max-width: 1023px){

}

@media (min-width: 1024px) and (max-width: 1439px){

}






























.travelbook-album-result__viewer-shell {
    width: 100%;
    margin-top: 24px;
    height: 100%;
}

.travelbook-album-result__viewer {
    width: 100%;
     height: 100%;
    margin: 0 auto;
    position: relative;
}

.travelbook-album-result__book {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.travelbook-album-result__book.wowbook,
.travelbook-album-result__book .wowbook-book-container {
    margin-left: auto !important;
    margin-right: auto !important;
}

.travelbook-album-result__viewer-block {
    width: min(1425px, 100%);
    max-width: 1425px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .travelbook-album-result__viewer {
        max-width: 100%;
        padding: 0 8px;
    }

    .travelbook-album-result__book {
        max-width: 100%;
    }
}
