.checkout-billing-details-wrap h2 {
    margin-bottom: 0.75rem;
}

.checkout-billing-details-wrap + .checkout-billing-details-wrap {
    margin-top: 2.5rem;
}

.checkout-section-intro {
    margin: 0 0 1.25rem;
    color: #777;
    font-size: 0.95rem;
}

.checkout-destination-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
    border: 1px solid #ebe4df;
    border-radius: 8px;
    background: #faf8f7;
}

.checkout-destination-summary__label {
    color: #777;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.checkout-destination-summary__value {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #111;
    font-weight: 600;
}

.checkout-destination-summary__value img {
    object-fit: cover;
    border-radius: 2px;
}

.checkout-field-hint {
    display: block;
    margin-top: 0.35rem;
    color: #888;
    font-size: 0.85rem;
}

.checkout-terms-check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    text-align: left;
}

.checkout-terms-check__input {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-top: 0.15rem;
    accent-color: #CC2121;
    cursor: pointer;
}

.checkout-terms-check__label {
    margin: 0;
    color: #111;
    font-size: 0.95rem;
    line-height: 1.45;
    cursor: pointer;
}

@media (max-width: 991.98px) {
    .checkout-page-wrapper {
        padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px)) !important;
    }
}

.off-canvas-wrapper .off-canvas-overlay,
.minicart-inner .offcanvas-overlay {
    cursor: pointer;
}

.header-top-settings ul li.language .language-selector-icon {
    width: 1.05rem;
    height: 1.05rem;
    margin-right: 0;
    vertical-align: middle;
    color: #666;
}

.header-language-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: capitalize;
    cursor: pointer;
    transition: color 0.2s ease;
}

.header-language-trigger:hover,
.header-language-trigger:focus {
    color: #CC2121;
    outline: 0;
}

.header-language-trigger:hover .language-selector-icon,
.header-language-trigger:focus .language-selector-icon {
    color: #CC2121;
}

.header-language-flag {
    object-fit: cover;
    border-radius: 2px;
}

.header-language-trigger .fa-angle-down {
    font-size: 0.75rem;
    color: #999;
}

.translate-icon {
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    vertical-align: middle;
    flex-shrink: 0;
}

.destination-nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.destination-nav-flag {
    object-fit: cover;
    border-radius: 2px;
}

.destination-nav-item--attention .destination-nav-trigger {
    color: #c45c26;
    font-weight: 600;
    animation: destination-attention-pulse 2s ease-in-out infinite;
}

body.dest-country-unset .mobile-bottom-nav__item--attention {
    color: #c45c26;
    font-weight: 600;
    animation: destination-attention-pulse 2s ease-in-out infinite;
}

@keyframes destination-attention-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(196, 92, 38, 0);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(196, 92, 38, 0.25);
    }
}

.destination-country-modal {
    position: fixed;
    inset: 0;
    z-index: 10060;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.destination-country-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.destination-country-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.55);
}

.destination-country-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 90vh;
    padding: 1.25rem 1rem 1.5rem;
    background: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -12px 40px rgba(17, 17, 17, 0.18);
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.25s ease;
}

.destination-country-modal.is-open .destination-country-modal-dialog {
    transform: translateY(0);
}

.destination-country-modal-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.destination-country-modal-hero {
    margin-bottom: 1rem;
}

.destination-country-modal-hero h2 {
    margin: 0 0 0.5rem;
    color: #111;
    font-size: 1.25rem;
    font-weight: 600;
}

.destination-country-modal .destination-floral-carousel-wrap {
    --floral-portal-size: min(400px, 78vw);
    width: min(100%, 28rem);
    margin-bottom: 1rem;
}

.destination-country-modal-subtitle {
    margin: 0;
    color: #777;
    font-size: 0.95rem;
    text-align: center;
}

.destination-country-modal-hero .destination-country-modal-subtitle {
    margin-top: 0.25rem;
}

.destination-country-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f5f1ee;
    color: #111;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.destination-country-modal-close:hover,
.destination-country-modal-close:focus {
    background: #CC2121;
    color: #fff;
    outline: 0;
}

.destination-picker-current--modal {
    margin-bottom: 1rem;
}

body.destination-country-modal-open {
    overflow: hidden;
}

@media (min-width: 992px) {
    .destination-country-modal {
        align-items: center;
        padding: 1.5rem;
    }

    .destination-country-modal-dialog {
        width: min(760px, 100%);
        max-height: min(90vh, 860px);
        border-radius: 16px;
        transform: translateY(16px) scale(0.98);
    }

    .destination-country-modal.is-open .destination-country-modal-dialog {
        transform: translateY(0) scale(1);
    }
}

/* Keep visited links the same color as unvisited (no browser purple). */
/* a:visited {
    color: inherit;
} */

/* .main-menu ul li a:visited {
    color: #111;
}

.main-menu ul li:hover > a:visited,
.main-menu ul li.active > a:visited {
    color: #CC2121;
}

.mobile-menu a:visited,
.header-configure-area ul li a:visited,
.footer-widget-body a:visited,
.breadcrumb-item a:visited {
    color: inherit;
} */

.destination-picker {
    background: #faf8f6;
}

.destination-picker .section-title {
    overflow: visible;
}

.destination-floral-carousel-wrap {
    --floral-portal-size: 400px;
    position: relative;
    width: min(100%, 48rem);
    height: var(--floral-portal-size);
    margin: 0 auto 1.25rem;
}

.destination-floral-carousel,
.destination-floral-carousel.slick-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: var(--floral-portal-size);
    margin: 0;
}

.destination-floral-carousel .slick-list {
    height: var(--floral-portal-size);
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.destination-floral-carousel-mask {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: #faf8f6;
    -webkit-mask-image: radial-gradient(
        circle at 50% 50%,
        transparent calc(var(--floral-portal-size) / 2 - 1px),
        #000 calc(var(--floral-portal-size) / 2)
    );
    mask-image: radial-gradient(
        circle at 50% 50%,
        transparent calc(var(--floral-portal-size) / 2 - 1px),
        #000 calc(var(--floral-portal-size) / 2)
    );
}

.destination-floral-carousel-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: var(--floral-portal-size);
    height: var(--floral-portal-size);
    margin-top: calc(var(--floral-portal-size) / -2);
    margin-left: calc(var(--floral-portal-size) / -2);
    border: 2px solid #2d3748;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
    pointer-events: none;
}

.destination-floral-carousel .slick-track {
    height: var(--floral-portal-size);
}

.destination-floral-carousel .slick-slide {
    height: var(--floral-portal-size);
}

.destination-floral-carousel .slick-slide > div {
    height: 100%;
    width: auto !important;
    display: block !important;
}

.destination-floral-carousel__item {
    height: var(--floral-portal-size);
    width: auto;
    line-height: 0;
}

.destination-floral-carousel__item img {
    display: block;
    height: var(--floral-portal-size);
    width: auto;
    max-width: none;
}

.destination-picker-current {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto 2rem;
    padding: 0.85rem 1.25rem;
    max-width: 420px;
    background: #fff;
    border: 1px solid #ebe4df;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}

.destination-picker-current-label {
    color: #777;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.destination-picker-current-value {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #111;
    font-weight: 600;
}

.destination-picker-current-value img {
    border-radius: 2px;
    object-fit: cover;
}

.destination-picker-toolbar {
    max-width: 420px;
    margin: 0 auto 1.75rem;
}

.destination-picker-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin: 0;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(17, 17, 17, 0.04);
}

.destination-picker-search:focus-within {
    border-color: #CC2121;
    box-shadow: 0 0 0 3px rgba(204, 33, 33, 0.12);
}

.destination-picker-search i {
    color: #999;
    font-size: 1rem;
}

.destination-picker-search input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111;
    font-size: 0.95rem;
}

.destination-picker-search input::placeholder {
    color: #999;
}

.destination-picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.75rem;
}

.destination-picker-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 96px;
    padding: 0.75rem 0.5rem;
    background: #fff;
    border: 1px solid #ebe4df;
    border-radius: 8px;
    color: #111;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.destination-picker-card:hover {
    border-color: #CC2121;
    box-shadow: 0 10px 24px rgba(204, 33, 33, 0.12);
    transform: translateY(-2px);
    color: #111;
}

.destination-picker-card.is-active {
    border-color: #CC2121;
    background: #fff8f8;
    box-shadow: 0 10px 24px rgba(204, 33, 33, 0.14);
}

.destination-picker-flag img {
    display: block;
    width: 40px;
    height: 26px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(17, 17, 17, 0.08);
}

.destination-picker-name {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
}

.destination-picker-pin {
    position: absolute;
    top: 0.5rem;
    right: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #CC2121;
    font-size: 1rem;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.9));
}

.destination-picker-empty {
    margin: 1.5rem 0 0;
    text-align: center;
    color: #777;
}

.mobile-language-picker {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #ebe4df;
}

.mobile-language-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0.85rem 0.9rem;
    border: 1px solid #ebe4df;
    border-radius: 8px;
    background: #fff;
    color: #111;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-language-trigger:hover,
.mobile-language-trigger:focus {
    border-color: #CC2121;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(204, 33, 33, 0.12);
}

.mobile-language-trigger-label {
    color: #777;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mobile-language-trigger-value {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.mobile-language-trigger-value img {
    object-fit: cover;
    border-radius: 2px;
}

.mobile-language-trigger-value .fa-angle-right {
    color: #999;
    font-size: 0.85rem;
}

.mobile-language-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-language-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-language-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.55);
}

.mobile-language-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 85vh;
    padding: 1.25rem 1rem 1.5rem;
    background: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -12px 40px rgba(17, 17, 17, 0.18);
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.25s ease;
}

.mobile-language-modal.is-open .mobile-language-modal-dialog {
    transform: translateY(0);
}

.mobile-language-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #ebe4df;
}

.mobile-language-modal-header h2 {
    margin: 0;
    color: #111;
    font-size: 1.1rem;
    font-weight: 600;
}

.mobile-language-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f5f1ee;
    color: #111;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-language-modal-close:hover,
.mobile-language-modal-close:focus {
    background: #CC2121;
    color: #fff;
    outline: 0;
}

body.mobile-language-modal-open {
    overflow: hidden;
}

.mobile-language-picker-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-language-picker-list li + li {
    margin-top: 0.5rem;
}

.mobile-language-picker-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    border: 1px solid #ebe4df;
    border-radius: 10px;
    color: #111;
    font-size: 1rem;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.mobile-language-picker-list a:hover {
    border-color: #CC2121;
    color: #111;
}

.mobile-language-picker-list a.is-active {
    border-color: #CC2121;
    background: #fff8f8;
    font-weight: 600;
}

.mobile-language-picker-list a img {
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 3px;
}

.mobile-language-picker-list a span {
    flex: 1;
}

.mobile-language-picker-list a .fa-check {
    color: #CC2121;
    font-size: 0.9rem;
}

@media (min-width: 992px) {
    .mobile-language-modal {
        align-items: center;
        padding: 1.5rem;
    }

    .mobile-language-modal-dialog {
        width: min(100%, 420px);
        max-height: min(85vh, 560px);
        border-radius: 16px;
        transform: translateY(1.5rem);
        box-shadow: 0 24px 60px rgba(17, 17, 17, 0.18);
    }

    .mobile-language-modal.is-open .mobile-language-modal-dialog {
        transform: translateY(0);
    }
}

@media (max-width: 575px) {
    .destination-picker-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 0.35rem;
    }

    .destination-picker-card {
        gap: 0.2rem;
        min-height: 0;
        padding: 0.45rem 0.15rem;
        border-radius: 6px;
    }

    .destination-picker-card:hover {
        transform: none;
    }

    .destination-picker-flag img {
        width: 26px;
        height: 17px;
    }

    .destination-picker-name {
        font-size: 0.6rem;
        line-height: 1.1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .destination-picker-pin {
        top: 0.15rem;
        right: 0.2rem;
        font-size: 0.75rem;
    }

    .destination-picker-current {
        border-radius: 16px;
    }
}

/* Mobile bottom navigation */
@media (max-width: 991.98px) {
    body {
        padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1040;
        display: flex;
        align-items: stretch;
        justify-content: space-around;
        gap: 0.15rem;
        min-height: 4.25rem;
        padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
    }

    .mobile-bottom-nav__item {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        padding: 0.25rem 0.15rem;
        text-align: center;
        text-decoration: none;
        color: #666;
        font-size: 0.65rem;
        line-height: 1.2;
        font-weight: 500;
        border-radius: 10px;
        transition: color 0.2s ease, background-color 0.2s ease;
    }

    .mobile-bottom-nav__item i {
        font-size: 1.25rem;
        line-height: 1;
    }

    .mobile-bottom-nav__item span:last-child {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-bottom-nav__item:hover,
    .mobile-bottom-nav__item:focus {
        color: #CC2121;
        text-decoration: none;
    }

    .mobile-bottom-nav__item.is-active {
        color: #CC2121;
        background: rgba(204, 33, 33, 0.08);
    }

    .mobile-bottom-nav__icon-wrap {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-bottom-nav__badge {
        position: absolute;
        top: -0.45rem;
        right: -0.55rem;
        min-width: 1rem;
        height: 1rem;
        padding: 0 0.2rem;
        border-radius: 999px;
        background: #CC2121;
        color: #fff;
        font-size: 0.6rem;
        font-weight: 700;
        line-height: 1rem;
        text-align: center;
    }

    .mobile-bottom-nav__item--language {
        border: 0;
        background: transparent;
        font-family: inherit;
        cursor: pointer;
    }

    .mobile-bottom-nav__icon-wrap--language {
        display: inline-flex;
        align-items: center;
        gap: 0.2rem;
    }

    .mobile-bottom-nav__icon-wrap--language .translate-icon {
        width: 1.2rem;
        height: 1.2rem;
    }

    .mobile-bottom-nav__icon-wrap--destination {
        display: inline-flex;
        align-items: center;
        gap: 0.15rem;
    }

    .mobile-bottom-nav__icon-wrap--destination .fa-map-marker {
        font-size: 1.1rem;
        line-height: 1;
    }

    .mobile-bottom-nav {
        gap: 0;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .mobile-bottom-nav__item {
        font-size: 0.58rem;
        padding-left: 0.1rem;
        padding-right: 0.1rem;
    }

    .mobile-bottom-nav__lang-flag {
        display: block;
        object-fit: cover;
        border-radius: 2px;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85);
    }
}

.account-email-value {
    color: #333;
    font-weight: 500;
    padding: 0.65rem 0;
}

.password-requirements li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.password-requirements li::before {
    content: "○";
    flex-shrink: 0;
    font-weight: 700;
    line-height: 1.35;
}

.password-requirements li.is-valid {
    color: #198754;
}

.password-requirements li.is-valid::before {
    content: "✓";
}

.password-requirements li.is-invalid {
    color: #dc3545;
}

.password-requirements li.is-invalid::before {
    content: "✕";
}

.js-account-password-form input.is-valid {
    border-color: #198754;
}

.js-account-password-form input.is-invalid {
    border-color: #dc3545;
}
