/* Always light mode */
html {
    color-scheme: light;
}

html.light-mode,
html.dark-mode {
    color-scheme: light;
}

/* Bella Hero — per-slide content, autoplay, desktop thumbs only */
.page-home .bella-hero.hero-sec-two {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: hidden;
}

.page-home .bella-hero__main {
    position: relative;
    height: 580px;
}

.page-home .bella-hero__main,
.page-home .bella-hero__main .slick-list,
.page-home .bella-hero__main .slick-track,
.page-home .bella-hero__main .slick-slide,
.page-home .bella-hero__main .slick-slide > div {
    height: 100%;
}

.page-home .bella-hero__slide {
    position: relative;
    height: 580px;
    overflow: hidden;
}

.page-home .bella-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-home .bella-hero__media img,
.page-home .bella-hero__media .bella-hero__video,
.page-home .bella-hero__media .bella-hero__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-home .bella-hero__media--youtube .bella-hero__poster {
    position: relative;
    z-index: 0;
}

.page-home .bella-hero__youtube {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.page-home .bella-hero__youtube iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
}

.page-home .bella-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.15) 38%,
        rgba(0, 0, 0, 0.35) 62%,
        rgba(0, 0, 0, 0.78) 100%
    );
    pointer-events: none;
}

.page-home .bella-hero__slide--media-only .bella-hero__overlay {
    background: transparent;
}

.page-home .bella-hero__container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 56px;
}

.page-home .bella-hero__content {
    max-width: 720px;
    width: 100%;
    padding-top: 24px;
}

.page-home .bella-hero__title {
    color: #fff;
    font-size: clamp(1.5rem, 3.2vw, 2.75rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.page-home .bella-hero__title-highlight {
    color: #fff;
    position: relative;
    display: inline;
}

.page-home .bella-hero__intro {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 620px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.page-home .bella-hero__btn {
    box-shadow: 0 8px 24px rgba(207, 52, 37, 0.35);
}

/* Prev / next arrows */
.page-home .bella-hero__nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: #212529;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-home .bella-hero__nav:hover {
    background: #cf3425;
    color: #fff;
}

.page-home .bella-hero__nav--prev {
    left: 16px;
}

.page-home .bella-hero__nav--next {
    right: 16px;
}

.page-home .bella-hero__nav i {
    font-size: 1.25rem;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .page-home .bella-hero__main {
        height: min(480px, 72vw);
        min-height: 420px;
    }

    .page-home .bella-hero__slide {
        height: min(480px, 72vw);
        min-height: 420px;
    }

    .page-home .bella-hero__container {
        align-items: center;
        justify-content: center;
        padding-top: 56px;
        padding-bottom: 44px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .page-home .bella-hero__content {
        padding-top: 0;
        max-width: 100%;
    }

    .page-home .bella-hero__title {
        font-size: 1.65rem;
        line-height: 1.28;
        margin-bottom: 10px;
        letter-spacing: -0.01em;
    }

    .page-home .bella-hero__intro {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 14px;
        max-width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .page-home .bella-hero__btn {
        padding: 0.45rem 1.1rem;
        font-size: 0.875rem;
    }

    .page-home .bella-hero__slide--media-only .bella-hero__media img {
        object-fit: cover;
        object-position: left center;
    }

    .page-home .bella-hero__nav {
        display: flex;
        width: 38px;
        height: 38px;
        z-index: 6;
    }

    .page-home .bella-hero__nav--prev {
        left: 8px;
    }

    .page-home .bella-hero__nav--next {
        right: 8px;
    }

    .page-home .bella-hero__nav i {
        font-size: 1.05rem;
    }
}

@media (max-width: 575.98px) {
    .page-home .bella-hero__main {
        height: min(440px, 112vw);
        min-height: 360px;
    }

    .page-home .bella-hero__slide {
        height: min(440px, 112vw);
        min-height: 360px;
    }

    .page-home .bella-hero__container {
        padding-top: 48px;
        padding-bottom: 36px;
    }

    .page-home .bella-hero__title {
        font-size: 1.5rem;
        line-height: 1.32;
    }

    .page-home .bella-hero__nav {
        width: 34px;
        height: 34px;
    }

    .page-home .bella-hero__nav--prev {
        left: 6px;
    }

    .page-home .bella-hero__nav--next {
        right: 6px;
    }
}

/* Package categories — Varanasi decorative backgrounds */
.page-home .traveling-sec {
    position: relative;
    overflow: hidden;
    padding-top: 72px !important;
}

.page-home .travel-sec-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.page-home .travel-sec-bg img {
    pointer-events: none;
    user-select: none;
}

.page-home .travel-sec-bg--varanasi .varanasi-bg-decor-wrap {
    position: absolute;
    left: 0;
    top: 8px;
    z-index: 0;
    width: min(420px, 44vw);
    max-width: 420px;
    line-height: 0;
    pointer-events: none;
}

.page-home .travel-sec-bg--varanasi .varanasi-bg-decor {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left top;
    opacity: 0.92;
}

.page-home .travel-sec-bg .bg-2 {
    position: absolute;
    left: 52px;
    top: 24%;
    z-index: 0;
    max-width: 38px;
    width: auto;
    height: auto;
    opacity: 0.5;
}

.page-home .travel-sec-bg .bg-3 {
    position: absolute;
    right: 52px;
    bottom: 16%;
    z-index: 0;
    max-width: 30px;
    width: auto;
    height: auto;
    opacity: 0.5;
}

.page-home .traveling-sec > .container {
    position: relative;
    z-index: 2;
}

/* Package category cards — circular image + title */
.page-home .bella-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 32px 20px 28px;
    overflow: hidden;
    border: 1px solid #E8E0D4;
    border-radius: 20px;
    background: #faf7f2;
    box-shadow: 0 6px 20px rgba(194, 194, 194, 0.22);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.page-home .bella-category-card:hover {
    box-shadow: 0 10px 28px rgba(194, 194, 194, 0.32);
    transform: translateY(-4px);
}

.page-home .bella-category-card__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.page-home .bella-category-card__media {
    flex: 0 0 auto;
    width: 190px;
    height: 190px;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(33, 46, 71, 0.16);
}

.page-home .bella-category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.55s ease;
}

.page-home .bella-category-card:hover .bella-category-card__media img {
    transform: scale(1.06);
}

.page-home .bella-category-card__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    color: #1a3c34;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.page-home .bella-category-card:hover .bella-category-card__title {
    color: #CF3425;
}

.page-home .bella-categories-slider .owl-item {
    display: flex;
}

.page-home .bella-categories-slider .owl-stage-outer {
    padding-bottom: 6px;
}

.page-home .bella-categories-slider .owl-nav {
    margin-top: 20px;
}

@media (max-width: 991.98px) {
    .page-home .bella-category-card {
        padding: 24px 16px 20px;
    }

    .page-home .bella-category-card__media {
        width: min(42vw, 200px);
        height: min(42vw, 200px);
        margin-bottom: 16px;
    }

    .page-home .bella-category-card__title {
        font-size: 1.125rem;
    }
}

@media (max-width: 767.98px) {
    .page-home .bella-category-card__media {
        width: min(58vw, 240px);
        height: min(58vw, 240px);
    }
}

@media (max-width: 575.98px) {
    .page-home .bella-category-card {
        padding: 18px 12px 16px;
    }

    .page-home .bella-category-card__media {
        width: min(78vw, 280px);
        height: min(78vw, 280px);
        margin-bottom: 14px;
        border-width: 4px;
    }

    .page-home .bella-category-card__title {
        font-size: 1.125rem;
    }

    .page-home .bella-categories-slider .owl-nav {
        margin-top: 14px;
    }

    .page-home .bella-categories-slider .owl-item {
        padding: 0 4px;
    }
}

/* Home recommended packages slider */
.page-home .bella-recommended-slider .owl-item {
    display: flex;
}

.page-home .bella-recommended-slider .owl-item .recommended-list-item {
    width: 100%;
}

.page-home .bella-recommended-slider .owl-stage-outer {
    padding-bottom: 6px;
}

.page-home .bella-recommended-slider .owl-nav {
    margin-top: 20px;
}

.page-home .recommended-sec .recommended-list-item .recommended-img .bella-package-card__image {
    position: relative;
    z-index: 0;
}

.page-home .recommended-sec .recommended-list-item .recommended-img::before {
    z-index: 1;
    pointer-events: none;
}

.page-home .recommended-sec .recommended-list-item .recommended-img .fav-item,
.page-home .recommended-sec .recommended-list-item .recommended-img .recommended-amount,
.page-home .recommended-sec .recommended-list-item .recommended-img .bella-package-card__photos-badge {
    z-index: 2;
}

.page-home .bella-recommended-slider .owl-item {
    visibility: visible;
}

@media (max-width: 575.98px) {
    .page-home .bella-recommended-slider .owl-nav {
        margin-top: 16px;
    }
}

@media (max-width: 991.98px) {
    .page-home .traveling-sec {
        padding-top: 48px !important;
    }

    .page-home .travel-sec-bg--varanasi .varanasi-bg-decor-wrap {
        width: min(280px, 50vw);
        top: 0;
    }

    .page-home .travel-sec-bg .bg-2,
    .page-home .travel-sec-bg .bg-3 {
        max-width: 22px;
        opacity: 0.35;
    }
}

@media (max-width: 575.98px) {
    .page-home .travel-sec-bg--varanasi .varanasi-bg-decor-wrap {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: min(260px, 85vw);
    }

    .page-home .traveling-sec .section-header {
        padding-top: 110px;
    }

    .page-home .travel-sec-bg .bg-2 {
        left: 10px;
    }

    .page-home .travel-sec-bg .bg-3 {
        right: 10px;
    }
}

/* Site header — slightly larger nav + button text */
.site-header-nav .header-nav .main-menu-wrapper .main-nav > li > a {
    font-size: 16px;
    font-weight: 500;
}

.site-header-nav .header-btn .btn {
    font-size: 15px;
    padding: 8px 18px;
}

@media (min-width: 1200px) {
    .site-header-nav .header-nav .main-menu-wrapper .main-nav > li > a {
        font-size: 16.5px;
    }

    .site-header-nav .header-btn .btn {
        font-size: 15px;
        padding: 9px 20px;
    }
}

@media (max-width: 991.98px) {
    .site-header-nav .mean-container .mean-nav .main-nav > li > a {
        font-size: 15px;
    }
}

/* Home destinations — fixed image heights (middle card tall) */
.page-home .destinations-sec .location-wrap__media {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.page-home .destinations-sec .location-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-home .destinations-sec .location-wrap--tall img {
    height: 464px;
}

.page-home .destinations-sec .location-wrap--compact img {
    height: 200px;
}

.page-home .destinations-sec .loc-name-bottom h3 {
    max-width: 100%;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .page-home .destinations-sec .location-wrap img,
    .page-home .destinations-sec .location-wrap--compact img {
        height: 240px;
    }

    .page-home .destinations-sec .location-wrap--tall img {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .page-home .destinations-sec .location-wrap img,
    .page-home .destinations-sec .location-wrap--compact img,
    .page-home .destinations-sec .location-wrap--tall img {
        height: 220px;
    }
}

/* Packages page — full clickable category cards */
.page-packages a.hotel-type-item {
    display: flex;
    width: 100%;
    color: inherit;
    cursor: pointer;
}

.page-packages a.hotel-type-item:hover {
    color: inherit;
}

.page-packages a.hotel-type-item--active {
    border-color: #cf3425;
    box-shadow: 0 4px 24px rgba(207, 52, 37, 0.18);
}

.page-packages .bella-packages-category-slider-wrap {
    position: relative;
}

.page-packages .bella-packages-category-slider.owl-carousel {
    position: relative;
}

.page-packages .bella-packages-category-slider .owl-item {
    display: flex;
}

.page-packages .bella-packages-category-slider .owl-item .hotel-type-item {
    width: 100%;
    margin-bottom: 0;
}

.page-packages .bella-packages-category-slider .owl-stage-outer {
    padding-bottom: 4px;
}

.page-packages .bella-packages-category-slider .owl-nav {
    margin-top: 0;
}

.page-packages .bella-packages-category-slider.nav-center .owl-nav button.owl-prev,
.page-packages .bella-packages-category-slider.nav-center .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
    z-index: 5;
    box-shadow: 0 4px 16px rgba(17, 24, 39, 0.12);
}

.page-packages .bella-packages-category-slider.nav-center .owl-nav button.owl-prev {
    left: 6px;
}

.page-packages .bella-packages-category-slider.nav-center .owl-nav button.owl-next {
    right: 6px;
}

@media (max-width: 575.98px) {
    .page-packages .bella-packages-category-slider.nav-center .owl-nav button.owl-prev,
    .page-packages .bella-packages-category-slider.nav-center .owl-nav button.owl-next {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .page-packages .bella-packages-category-slider.nav-center .owl-nav button.owl-prev {
        left: 2px;
    }

    .page-packages .bella-packages-category-slider.nav-center .owl-nav button.owl-next {
        right: 2px;
    }

    .page-packages .bella-packages-category-slider .owl-item .hotel-type-item {
        padding: 8px 6px;
    }

    .page-packages .bella-packages-category-slider .owl-item .hotel-type-item h6 {
        font-size: 14px;
    }

    .page-packages .bella-packages-category-slider .owl-item .hotel-type-item p {
        font-size: 12px;
    }
}

/* Package listing cards */
.bella-package-card {
    cursor: pointer;
}

.bella-package-card__gallery {
    position: relative;
    overflow: hidden;
}

.page-packages .bella-package-card__gallery {
    height: 260px;
}

.page-home .recommended-img.bella-package-card__gallery {
    height: 280px;
}

.bella-package-card__gallery .img-slider,
.bella-package-card__gallery .image-slide,
.bella-package-card__gallery .img-slider .owl-stage-outer,
.bella-package-card__gallery .image-slide .owl-stage-outer,
.bella-package-card__gallery .img-slider .owl-stage,
.bella-package-card__gallery .image-slide .owl-stage,
.bella-package-card__gallery .img-slider .owl-item,
.bella-package-card__gallery .image-slide .owl-item,
.bella-package-card__gallery .slide-images {
    height: 100%;
}

.bella-package-card__gallery .slide-images {
    display: block;
}

.bella-package-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-home .recommended-img.bella-package-card__gallery .bella-package-card__image {
    position: relative;
    z-index: 0;
    border-radius: 10px 10px 0 0;
}

.bella-package-card:hover .bella-package-card__image {
    transform: scale(1.08);
    transition: transform 0.3s ease-out;
}

@media (max-width: 767.98px) {
    .page-packages .bella-package-card__gallery {
        height: 220px;
    }

    .page-home .recommended-img.bella-package-card__gallery {
        height: 240px;
    }
}

.bella-package-card__photos-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
}

.page-packages .bella-package-card .place-img .owl-dots,
.page-home .bella-package-card .place-img .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 4;
    margin: 0;
}

.bella-package-card__gallery .img-slider.owl-carousel,
.bella-package-card__gallery .image-slide.owl-carousel {
    position: relative;
}

.bella-package-card__gallery .owl-nav {
    position: absolute;
    inset: 0;
    margin: 0;
    pointer-events: none;
    z-index: 4;
}

.bella-package-card__gallery .owl-nav button.owl-prev,
.bella-package-card__gallery .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    display: flex !important;
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin: 0;
}

.bella-package-card__gallery .owl-nav button.owl-prev {
    left: 10px;
    right: auto;
}

.bella-package-card__gallery .owl-nav button.owl-next {
    right: 10px;
    left: auto;
}

.bella-package-card__gallery .owl-nav button.owl-prev:hover,
.bella-package-card__gallery .owl-nav button.owl-next:hover {
    background: #cf3425;
    color: #fff !important;
}

.page-home .bella-recommended-slider .bella-package-card {
    cursor: pointer;
}

.bella-package-card__title {
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    line-height: 1.4;
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
}

.bella-package-card__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.bella-package-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.bella-package-card__price-current {
    font-size: 1.25rem;
    font-weight: 600;
    color: #cf3425;
    line-height: 1.2;
}

.bella-package-card__price-compare {
    font-size: 1rem;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
    line-height: 1.2;
}

.bella-package-card__cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.bella-package-card__cart-btn i {
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 575.98px) {
    .bella-package-card__cart-btn span {
        display: none;
    }

    .bella-package-card__cart-btn {
        width: 38px;
        height: 38px;
        padding: 0;
        border-radius: 50%;
    }
}

/* Package detail — vertical slider layout */
.page-package-detail .bella-package-detail-slider {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 12px;
    align-items: stretch;
    width: 100%;
}

.page-package-detail .bella-package-detail-slider__main {
    position: relative;
    min-width: 0;
    width: 100%;
}

.page-package-detail .bella-package-detail-slider__main .slider-for {
    float: none !important;
    max-width: none !important;
    width: 100% !important;
    padding-right: 0 !important;
}

.page-package-detail .bella-package-detail-slider__main .slider-for .slick-list {
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.page-package-detail .bella-package-detail-slider__main .slider-for .slick-slide {
    height: 400px;
}

.page-package-detail .bella-package-detail-slider__main .slider-for .slick-slide > div,
.page-package-detail .bella-package-detail-slider__main .slider-for .service-img {
    height: 100%;
}

.page-package-detail .bella-package-detail-slider__main .slider-for img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.page-package-detail .bella-package-detail-slider__main .view-btn {
    right: 15px !important;
    z-index: 5;
}

.page-package-detail .bella-package-detail-slider__thumbs {
    width: 92px;
    flex-shrink: 0;
}

.page-package-detail .bella-package-detail-slider__thumbs .slider-nav {
    width: 92px !important;
    height: 400px;
}

.page-package-detail .bella-package-detail-slider__thumbs .slider-nav .slick-list {
    height: 100% !important;
}

.page-package-detail .bella-package-detail-slider__thumbs .slider-nav .slick-slide {
    width: 92px !important;
    height: auto !important;
    border: none;
}

.page-package-detail .bella-package-detail-slider__thumbs .slider-nav .slick-slide img {
    width: 92px !important;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.page-package-detail .bella-package-detail-slider__thumbs .slider-nav .slick-current img {
    outline: 2px solid #cf3425;
    outline-offset: 2px;
}

.page-package-detail .col-xl-8 > div:first-child {
    width: 100%;
}

@media (max-width: 767.98px) {
    .page-package-detail .bella-package-detail-slider {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .page-package-detail .bella-package-detail-slider__main .slider-for .slick-list,
    .page-package-detail .bella-package-detail-slider__main .slider-for .slick-slide,
    .page-package-detail .bella-package-detail-slider__main .slider-for img {
        height: 220px;
    }

    /* Main slider: hide stacked images before / without slick */
    .page-package-detail .slider-for:not(.slick-initialized) .service-img:not(:first-child) {
        display: none;
    }

    .page-package-detail .bella-package-detail-slider__thumbs {
        width: 100%;
        overflow: hidden;
    }

    /* Mobile: horizontal scroll thumbs (no vertical slick) */
    .page-package-detail .bella-package-detail-slider__thumbs .slider-nav.bella-thumbs-scroll {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        height: 72px;
        width: 100% !important;
        padding: 2px 0;
    }

    .page-package-detail .bella-package-detail-slider__thumbs .slider-nav.bella-thumbs-scroll::-webkit-scrollbar {
        display: none;
    }

    .page-package-detail .bella-package-detail-slider__thumbs .slider-nav.bella-thumbs-scroll > div {
        flex: 0 0 72px;
        width: 72px !important;
        scroll-snap-align: start;
        cursor: pointer;
    }

    .page-package-detail .bella-package-detail-slider__thumbs .slider-nav.bella-thumbs-scroll > div img {
        width: 72px !important;
        height: 64px;
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }

    .page-package-detail .bella-package-detail-slider__thumbs .slider-nav.bella-thumbs-scroll > div.is-active img {
        outline: 2px solid #cf3425;
        outline-offset: 2px;
    }

    .page-package-detail .bella-package-detail-slider__thumbs .slider-nav .slick-prev,
    .page-package-detail .bella-package-detail-slider__thumbs .slider-nav .slick-next {
        display: none !important;
    }
}

.bella-customer-content {
    padding-top: 12px;
    padding-bottom: 56px;
}

.page-customer .bella-customer-content > .container {
    max-width: 1240px;
    padding-left: clamp(20px, 3vw, 40px);
    padding-right: clamp(20px, 3vw, 40px);
}

.page-customer .bella-customer-content > .container > .row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 1.75rem;
}

.page-customer .bella-customer-sidebar-col {
    position: relative;
}

.page-customer .bella-customer-sidebar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .page-customer .bella-customer-sidebar-col {
        position: sticky;
        top: 96px;
        align-self: flex-start;
    }
}

.bella-customer-avatar-wrap {
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #cf3425 0%, #e04a3d 100%);
    box-shadow: 0 8px 20px rgba(207, 52, 37, 0.22);
    aspect-ratio: 1 / 1;
}

.bella-customer-avatar__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.bella-customer-avatar__initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.bella-customer-avatar--sidebar {
    width: 96px;
    height: 96px;
    min-width: 96px;
    min-height: 96px;
    max-width: 96px;
    max-height: 96px;
    margin: 0 auto 20px;
}

.bella-customer-avatar--sidebar .bella-customer-avatar__initial {
    font-size: 34px;
}

.bella-customer-avatar--hero {
    width: 88px;
    height: 88px;
    min-width: 88px;
    min-height: 88px;
    max-width: 88px;
    max-height: 88px;
    border: 4px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.18);
}

.bella-customer-avatar--hero .bella-customer-avatar__initial {
    font-size: 32px;
}

.bella-customer-avatar--profile {
    width: 80px;
    height: 80px;
}

.bella-customer-avatar--profile .bella-customer-avatar__initial {
    font-size: 30px;
}

.bella-customer-sidebar {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.bella-customer-sidebar__header {
    padding: 28px 24px 26px;
    background: linear-gradient(180deg, rgba(207, 52, 37, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    border-bottom: 1px solid #f3f4f6;
}

.bella-customer-sidebar__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bella-customer-sidebar__details {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 4px;
}

.bella-customer-sidebar__name {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
    word-break: break-word;
}

.bella-customer-sidebar__email {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.45;
    word-break: break-word;
    max-width: 100%;
}

.bella-customer-sidebar__badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(207, 52, 37, 0.08);
    color: #cf3425;
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

.bella-customer-sidebar__edit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: 6px;
}

.bella-customer-sidebar__edit-link:hover {
    color: #cf3425;
}

.bella-customer-sidebar__body {
    padding: 22px 20px 24px;
}

.bella-customer-sidebar__nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bella-customer-sidebar__nav > li {
    margin: 0;
}

.bella-customer-sidebar__label {
    padding: 18px 14px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9ca3af;
}

.bella-customer-sidebar__label:first-child {
    padding-top: 6px;
}

.bella-customer-sidebar__link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 8px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.bella-customer-sidebar__link:hover {
    background: #f9fafb;
    color: #cf3425;
}

.bella-customer-sidebar__link.is-active {
    background: rgba(207, 52, 37, 0.1);
    color: #cf3425;
    font-weight: 600;
}

.bella-customer-sidebar__link-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #f3f4f6;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.bella-customer-sidebar__link:hover .bella-customer-sidebar__link-icon,
.bella-customer-sidebar__link.is-active .bella-customer-sidebar__link-icon {
    background: rgba(207, 52, 37, 0.14);
    color: #cf3425;
}

.bella-customer-sidebar__logout {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.bella-customer-sidebar__logout form {
    margin: 0;
}

.bella-customer-sidebar__link--logout:hover {
    background: rgba(220, 38, 38, 0.06);
    color: #dc2626;
}

.bella-customer-sidebar__link--logout:hover .bella-customer-sidebar__link-icon {
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
}

.bella-customer-sidebar__link:focus,
.bella-customer-sidebar__link:focus-visible,
.bella-customer-sidebar__edit-link:focus,
.bella-customer-sidebar__edit-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(207, 52, 37, 0.22);
}

.bella-dash-hero {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #cf3425 0%, #a8281c 52%, #7c1d14 100%);
    box-shadow: 0 16px 40px rgba(207, 52, 37, 0.22);
}

.bella-dash-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.16) 0%, transparent 42%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.08) 0%, transparent 36%);
    pointer-events: none;
}

.bella-dash-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "avatar text"
        "actions actions";
    gap: 16px 20px;
    padding: 24px;
    align-items: center;
}

.bella-dash-hero__avatar {
    grid-area: avatar;
    line-height: 0;
}

.bella-dash-hero__avatar .bella-customer-avatar-wrap {
    display: block;
}

.bella-dash-hero__text {
    grid-area: text;
    min-width: 0;
}

.bella-dash-hero__eyebrow {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.bella-dash-hero__title {
    margin: 0 0 6px;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.bella-dash-hero__meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.45;
    word-break: break-word;
}

.bella-dash-hero__actions {
    grid-area: actions;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bella-dash-hero__btn {
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
}

.bella-dash-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
    padding: 18px 16px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bella-dash-stat:hover {
    border-color: rgba(207, 52, 37, 0.25);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
    transform: translateY(-2px);
    color: inherit;
}

.bella-dash-stat__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.bella-dash-stat__icon--primary {
    background: rgba(207, 52, 37, 0.12);
    color: #cf3425;
}

.bella-dash-stat__icon--success {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.bella-dash-stat__icon--purple {
    background: rgba(139, 92, 246, 0.12);
    color: #7c3aed;
}

.bella-dash-stat__icon--info {
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
}

.bella-dash-stat__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.bella-dash-stat__content strong {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.bella-dash-stat__content small {
    font-size: 13px;
    color: #6b7280;
}

.bella-dash-card {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
}

.bella-dash-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.bella-dash-link {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bella-dash-link:hover {
    border-color: rgba(207, 52, 37, 0.22);
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.07);
    transform: translateY(-1px);
    color: inherit;
}

.bella-dash-link__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.bella-dash-link--account .bella-dash-link__icon {
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
}

.bella-dash-link--security .bella-dash-link__icon {
    background: rgba(245, 158, 11, 0.14);
    color: #d97706;
}

.bella-dash-link__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.bella-dash-link__text strong {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.bella-dash-link__text small {
    font-size: 13px;
    color: #6b7280;
}

.bella-dash-link__arrow {
    color: #9ca3af;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.bella-dash-link:hover .bella-dash-link__arrow {
    color: #cf3425;
    transform: translateX(3px);
}

@media (max-width: 767.98px) {
    .bella-dash-hero__content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "avatar"
            "text"
            "actions";
        text-align: center;
    }

    .bella-dash-hero__avatar {
        justify-self: center;
    }

    .bella-dash-hero__actions {
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .bella-dash-hero__content {
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "avatar text actions";
    }

    .bella-dash-hero__actions {
        justify-content: flex-end;
        align-self: center;
    }
}

.page-blog .blog-item .bella-blog-meta__name,
.page-blog .blog-item .bella-blog-meta__date {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

.page-blog .blog-item .bella-blog-meta__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    margin-right: 8px;
    background: rgba(255, 255, 255, 0.15);
}

.page-blog .blog-item .bella-blog-meta__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-blog .blog-item .bella-blog-meta__author {
    max-width: 100%;
}

.page-blog .blog-item .bella-blog-meta__name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

@media (min-width: 768px) {
    .page-blog .blog-item .bella-blog-meta__name {
        max-width: 160px;
    }
}

.page-discover-detail .bella-discover-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
}

.page-discover-detail .bella-discover-hero__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.page-discover-detail .bella-discover-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.05) 0%, rgba(17, 24, 39, 0.78) 100%);
}

.page-discover-detail .bella-discover-hero__title {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.page-discover-detail .bella-discover-hero__excerpt {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    max-width: 720px;
}

.page-discover-detail .bella-discover-card {
    border-radius: 16px;
    overflow: hidden;
}

.page-discover-detail .bella-discover-item-img {
    height: 220px;
    overflow: hidden;
    background: #f3f4f6;
}

.page-discover-detail .bella-discover-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767.98px) {
    .page-discover-detail .bella-discover-hero__img {
        height: 240px;
    }
}

.authentication-wrapper .auth-brand {
    padding: 0 0 1rem;
    margin-bottom: 0.25rem;
}

.authentication-wrapper .auth-brand__link {
    display: inline-block;
    line-height: 0;
}

.authentication-wrapper .auth-brand__logo {
    max-height: 52px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .authentication-wrapper .auth-brand__logo {
        max-height: 44px;
        max-width: 170px;
    }

    .authentication-card .card-body {
        padding: 24px 20px;
    }
}

.bella-header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: #111827;
    font-size: 24px;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.bella-header-cart:hover {
    color: #cf3425;
    transform: translateY(-1px);
}

.bella-header-cart__count {
    position: absolute;
    top: 0;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #cf3425;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.bella-header-cart__count--empty {
    background: #6b7280;
}

.bella-header-account {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 2px;
    margin-right: 6px;
    padding: 0;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: #111827;
    font-size: 22px;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.bella-header-account:hover {
    color: #cf3425;
    transform: translateY(-1px);
}

@media (max-width: 1199.98px) {
    .site-header-nav .header-btn {
        gap: 2px;
    }

    .site-header-nav .header-btn .bella-header-cart {
        margin-right: 2px;
    }

    .site-header-nav .header__hamburger {
        margin-left: 0;
    }
}

.bella-floating-contact {
    position: fixed;
    left: 20px;
    bottom: 28px;
    z-index: 999;
}

.bella-floating-contact__toggle {
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #cf3425 0%, #e04a3d 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(207, 52, 37, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bella-floating-contact__toggle:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 32px rgba(207, 52, 37, 0.45);
}

.bella-floating-contact.is-open .bella-floating-contact__toggle {
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.28);
}

.bella-floating-contact__popup {
    position: absolute;
    left: calc(100% + 14px);
    bottom: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(17, 24, 39, 0.18);
    padding: 12px;
    border: 1px solid rgba(17, 24, 39, 0.06);
}

.bella-floating-contact__popup[hidden] {
    display: none !important;
}

.bella-floating-contact.is-open .bella-floating-contact__popup {
    display: block !important;
    animation: bellaContactPopupIn 0.22s ease;
}

.bella-floating-contact__title {
    margin: 0 0 8px;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b7280;
}

.bella-floating-contact__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #111827;
    text-decoration: none;
    transition: background 0.2s ease;
}

.bella-floating-contact__option:hover {
    background: #f9fafb;
    color: #111827;
}

.bella-floating-contact__option-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.bella-floating-contact__option--whatsapp .bella-floating-contact__option-icon {
    background: rgba(37, 211, 102, 0.14);
    color: #128c7e;
}

.bella-floating-contact__option--call .bella-floating-contact__option-icon {
    background: rgba(207, 52, 37, 0.12);
    color: #cf3425;
}

.bella-floating-contact__option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}

.bella-floating-contact__option-text strong {
    font-size: 14px;
    font-weight: 600;
}

.bella-floating-contact__option-text small {
    font-size: 12px;
    color: #6b7280;
}

@keyframes bellaContactPopupIn {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bella-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.bella-qty-control form {
    margin: 0;
}

.bella-qty-control__btn {
    width: 34px;
    height: 34px;
    border: 0;
    background: #f9fafb;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.bella-qty-control__btn:hover:not(:disabled) {
    background: #cf3425;
    color: #fff;
}

.bella-qty-control__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.bella-qty-control__value {
    min-width: 36px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.bella-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(360px, calc(100vw - 32px));
    pointer-events: none;
}

.bella-toast {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px 16px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(17, 24, 39, 0.16);
    border-left: 4px solid #6b7280;
    overflow: hidden;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: auto;
}

.bella-toast.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.bella-toast.is-leaving {
    opacity: 0;
    transform: translateX(24px);
}

.bella-toast--success {
    border-left-color: #16a34a;
}

.bella-toast--error {
    border-left-color: #dc2626;
}

.bella-toast--warning {
    border-left-color: #d97706;
}

.bella-toast--info {
    border-left-color: #2563eb;
}

.bella-toast__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-top: 1px;
}

.bella-toast--success .bella-toast__icon {
    color: #16a34a;
}

.bella-toast--error .bella-toast__icon {
    color: #dc2626;
}

.bella-toast--warning .bella-toast__icon {
    color: #d97706;
}

.bella-toast--info .bella-toast__icon {
    color: #2563eb;
}

.bella-toast__message {
    flex: 1;
    margin: 0;
    padding-right: 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #111827;
    font-weight: 500;
}

.bella-toast__close {
    flex-shrink: 0;
    border: 0;
    background: transparent;
    color: #9ca3af;
    width: 24px;
    height: 24px;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bella-toast__close:hover {
    color: #374151;
}

.bella-toast__progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: currentColor;
    opacity: 0.25;
    transform-origin: left center;
    animation: bellaToastProgress linear forwards;
}

.bella-toast--success .bella-toast__progress {
    color: #16a34a;
}

.bella-toast--error .bella-toast__progress {
    color: #dc2626;
}

.bella-toast--warning .bella-toast__progress {
    color: #d97706;
}

.bella-toast--info .bella-toast__progress {
    color: #2563eb;
}

@keyframes bellaToastProgress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

.bella-cart-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
}

.bella-add-to-cart-form {
    position: relative;
    z-index: 3;
    margin: 0;
}

/* Inner-page sub banner — single full-width background, no tiling on wide screens */
.breadcrumb-bar.breadcrumb-bar--dynamic {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

/* Customer area — layout polish (sidebar, dashboard, spacing) */
.page-customer .bella-customer-sidebar h6,
.page-customer .bella-customer-sidebar p {
    margin: 0;
}

.page-customer .bella-customer-sidebar .bella-customer-avatar-wrap {
    display: block;
    border-radius: 50% !important;
    overflow: hidden !important;
}

.page-customer .bella-customer-sidebar .bella-customer-avatar__img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    border-radius: 50%;
}

.page-customer .bella-dash-hero {
    background: linear-gradient(135deg, #cf3425 0%, #a8281c 52%, #7c1d14 100%);
}

.page-customer .bella-dash-hero__content {
    padding: 28px;
    gap: 20px 24px;
}

.page-customer .bella-dash-hero__avatar .bella-customer-avatar-wrap {
    width: 88px;
    height: 88px;
    min-width: 88px;
    min-height: 88px;
    max-width: 88px;
    max-height: 88px;
}

@media (max-width: 767.98px) {
    .bella-floating-contact {
        left: 14px;
        bottom: 22px;
    }

    .bella-floating-contact__popup {
        left: 0;
        bottom: calc(100% + 12px);
        min-width: 210px;
    }

    .bella-toast-container {
        top: 16px;
        right: 16px;
        left: 16px;
        width: auto;
    }
}

