/* ==========================================================================
   Dorano Front Page — RTL Overrides
   ========================================================================== */

/* Hero content */
.dorano-hero__slide-content {
    align-items: flex-end;
    text-align: right;
}

/* Hero arrows swap */
.dorano-hero__arrow--prev {
    left: auto;
    right: 24px;
}

.dorano-hero__arrow--next {
    right: auto;
    left: 24px;
}

/* Arrow SVGs flip */
.dorano-hero__arrow--prev svg,
.dorano-hero__arrow--next svg {
    transform: scaleX(-1);
}

/* Brand story: gold border on other side */
.dorano-brand-story__image-wrap::before {
    left: 12px;
    right: -12px;
}

/* Brand story text alignment */
.dorano-brand-story__content .dorano-section-header__tag {
    text-align: right;
}

/* Trust bar item */
.dorano-trust-bar__item {
    flex-direction: row-reverse;
}

.dorano-trust-bar__text {
    text-align: right;
}

/* Newsletter input */
.dorano-newsletter__input {
    border-right: 1px solid rgba(201, 168, 76, 0.3);
    border-left: none;
    border-radius: 0 4px 4px 0;
}

.dorano-newsletter__btn {
    border-radius: 4px 0 0 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .dorano-hero__arrow--prev {
        right: 12px;
        left: auto;
    }

    .dorano-hero__arrow--next {
        left: 12px;
        right: auto;
    }

    .dorano-brand-story__image-wrap::before {
        left: 8px;
        right: -8px;
    }

    .dorano-brand-story__content .dorano-section-header__tag,
    .dorano-brand-story__title,
    .dorano-brand-story__text {
        text-align: center;
    }
}

@media (max-width: 544px) {
    .dorano-hero__slide-content {
        align-items: center;
        text-align: center;
    }

    .dorano-trust-bar__item {
        flex-direction: row;
    }

    .dorano-trust-bar__text {
        text-align: right;
    }

    .dorano-newsletter__input {
        border: 1px solid rgba(201, 168, 76, 0.3);
        border-radius: 4px;
    }

    .dorano-newsletter__btn {
        border-radius: 4px;
    }
}
