/* Brands page */
.brands-page {
    background: var(--theme-page-background);
}

/* Brands hero */
.brands-hero {
    overflow: hidden;
    background: var(--color-red-soft);
}

.brands-hero__inner {
    width: min(100% - 56px, var(--page-width));
    min-height: 440px;
    margin: 0 auto;
    padding: 30px 0 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    align-items: center;
    gap: 48px;
}

.brands-hero__content {
    max-width: 560px;
}

.brands-hero__eyebrow {
    margin: 0 0 16px;
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brands-hero__title {
    margin: 0;
    color: var(--color-yellow);
    font-family: "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif;
    font-size: clamp(40px, 4.8vw, 58px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.035em;
    text-transform: none;
}

.brands-hero__title-line {
    display: block;
    white-space: nowrap;
}

.brands-hero__title-line:last-child {
    color: var(--color-primary);
}

.brands-hero__description {
    max-width: 470px;
    margin: 22px 0 0;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.brands-hero__actions,
.brands-hero__highlights {
    display: grid;
    grid-template-columns: repeat(2, 190px);
    gap: 12px;
}

.brands-hero__actions {
    margin-top: 28px;
}

.brands-hero__highlights {
    margin-top: 28px;
}

.brands-hero__button {
    width: 100%;
}

.brands-hero__button--primary {
    color: var(--color-primary-deep);
    background: var(--color-yellow);
}

.brands-hero__button--secondary {
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
}

@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .brands-hero__button {
        transition:
            transform 180ms ease,
            box-shadow 180ms ease;
    }

    .brands-hero__button:hover,
    .brands-hero__button:focus-visible {
        transform: translateY(-2px);
        box-shadow:
            0 8px 18px
            color-mix(
                in srgb,
                var(--color-text) 12%,
                transparent
            );
    }

    .brands-hero__button:active {
        transform: translateY(1px) scale(0.98);
        box-shadow:
            0 3px 8px
            color-mix(
                in srgb,
                var(--color-text) 10%,
                transparent
            );
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brands-hero__button {
        transition: none;
    }

    .brands-hero__button:hover,
    .brands-hero__button:focus-visible,
    .brands-hero__button:active {
        transform: none;
        box-shadow: none;
    }
}

.brands-hero__highlight {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    border-radius: 16px;
    background: var(--theme-surface-glass);
}

.brands-hero__highlight--blue {
    border-color: var(--color-primary-soft);
}

.brands-hero__highlight--yellow {
    border-color: var(--color-yellow);
}

.brands-hero__highlight-icon {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-hero__highlight-icon::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: var(--color-primary);
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 94%,
        50% 72%,
        21% 94%,
        32% 57%,
        2% 35%,
        39% 35%
    );
}

.brands-hero__highlight--yellow .brands-hero__highlight-icon::before {
    background: var(--color-yellow);
}

.brands-hero__highlight strong {
    display: block;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.15;
}

.brands-hero__highlight--yellow strong {
    color: var(--color-yellow-deep);
}

.brands-hero__highlight span {
    display: block;
    margin-top: 4px;
    color: var(--theme-text-muted);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.3;
}

@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .brands-hero__highlight {
        transition:
            transform 220ms ease,
            box-shadow 220ms ease;
    }

    .brands-hero__highlight-icon::before {
        transition: transform 220ms ease;
    }

    .brands-hero__highlight:hover {
        transform: translateY(-3px);
        box-shadow:
            0 8px 18px
            color-mix(
                in srgb,
                var(--color-text) 12%,
                transparent
            );
    }

    .brands-hero__highlight:hover
    .brands-hero__highlight-icon::before {
        transform: rotate(5deg) scale(1.06);
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brands-hero__highlight,
    .brands-hero__highlight-icon::before {
        transition: none;
    }

    .brands-hero__highlight:hover,
    .brands-hero__highlight:hover
    .brands-hero__highlight-icon::before {
        transform: none;
        box-shadow: none;
    }
}

.brands-hero__visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    min-width: 0;
    min-height: 380px;
    justify-self: end;
}

.brands-hero__scene {
    position: relative;
    width: 100%;
    min-height: 380px;
}


.brands-hero__asset {
    position: absolute;
    display: block;
    max-width: none;
    height: auto;
    user-select: none;
    pointer-events: none;
}

.brands-hero__backdrop {
    position: absolute;
    z-index: 10;
    width: 410px;
    height: 410px;
    top: -20%;
    left: 50%;
    transform: translate(-50%, 0);
    pointer-events: none;
}

.brands-hero__backdrop-outer,
.brands-hero__backdrop-inner {
    position: absolute;
    border-radius: 50%;
}

.brands-hero__backdrop-outer {
    inset: 0;
    background: var(--color-yellow);
}

.brands-hero__backdrop-inner {
    inset: 30px;
    background: var(--color-surface-warm);
}


.brands-hero__asset--farhuda {
    z-index: 20;
    width: 124px;
    top: 22%;
    left: 41.3%;
    transform: translate(-50%, -50%) rotate(-9deg);
    transform-origin: center bottom;
}

.brands-hero__asset--farhud {
    z-index: 20;
    width: 124px;
    top: 22%;
    left: 59.7%;
    transform: translate(-50%, -50%) rotate(9deg);
    transform-origin: center bottom;
}

.brands-hero__asset--box-blue {
    z-index: 30;
    width: 231px;
    top: 61%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.brands-hero__asset--lid-blue {
    z-index: 40;
    width: 231px;
    top: 26%;
    left: 86.8%;
    transform: translate(-50%, -50%) rotate(110deg);
    transform-origin: center;
}

.brands-hero__asset--box-pink {
    z-index: 50;
    width: 147px;
    top: 76%;
    left: 75.5%;
    transform: translate(-50%, -50%);
}

.brands-hero__asset--lid-pink {
    z-index: 60;
    width: 162px;
    top: 55.5%;
    left: 75.5%;
    transform: translate(-50%, -50%);
}

.brands-hero__asset--train {
    z-index: 65;
    width: 210px;
    top: 90%;
    left: 30%;
    transform: translate(-50%, -50%);
}

.brands-hero__asset--box-red {
    z-index: 70;
    width: 118px;
    top: 82.5%;
    left: 59.5%;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center;
}

.brands-hero__asset--lid-red {
    z-index: 80;
    width: 118px;
    top: 95.5%;
    left: 38.5%;
    transform: translate(-50%, -50%);
    transform-origin: center;
}



/* Desktop Brands hero entrance */
@keyframes brands-hero-enter-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

@keyframes brands-hero-enter-side {
    from {
        opacity: 0;
        transform: translateX(16px) scale(0.985);
    }

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

@media (min-width: 1101px) {
    .brands-hero__eyebrow {
        animation: brands-hero-enter-up 400ms ease both;
    }

    .brands-hero__title-line:first-child {
        animation: brands-hero-enter-up 440ms ease 50ms both;
    }

    .brands-hero__title-line:last-child {
        animation: brands-hero-enter-up 440ms ease 100ms both;
    }

    .brands-hero__description {
        animation: brands-hero-enter-up 440ms ease 160ms both;
    }

    .brands-hero__actions {
        animation: brands-hero-enter-up 420ms ease 220ms both;
    }

    .brands-hero__highlights {
        animation: brands-hero-enter-up 420ms ease 280ms both;
    }

    .brands-hero__visual {
        animation: brands-hero-enter-side 560ms ease 120ms both;
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brands-hero__eyebrow,
    .brands-hero__title-line,
    .brands-hero__description,
    .brands-hero__actions,
    .brands-hero__highlights,
    .brands-hero__visual {
        animation: none;
    }
}

/* Desktop Brands hero artwork interaction */
@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .brands-hero__backdrop-outer,
    .brands-hero__backdrop-inner,
    .brands-hero__asset {
        transition: transform 280ms ease;
    }

    .brands-hero__visual:hover .brands-hero__backdrop-outer {
        transform: translate(4px, -3px) scale(1.01);
    }

    .brands-hero__visual:hover .brands-hero__backdrop-inner {
        transform: translate(-3px, 3px) scale(0.995);
    }

    .brands-hero__visual:hover .brands-hero__asset--farhuda {
        transform:
            translate(-50%, calc(-50% - 6px))
            rotate(-11deg);
    }

    .brands-hero__visual:hover .brands-hero__asset--farhud {
        transform:
            translate(-50%, calc(-50% - 6px))
            rotate(11deg);
    }

    .brands-hero__visual:hover .brands-hero__asset--box-blue {
        transform:
            translate(-50%, calc(-50% - 4px))
            scale(1.015);
    }

    .brands-hero__visual:hover .brands-hero__asset--lid-blue {
        transform:
            translate(-50%, calc(-50% - 5px))
            rotate(106deg);
    }

    .brands-hero__visual:hover .brands-hero__asset--box-pink {
        transform:
            translate(
                calc(-50% + 3px),
                calc(-50% - 3px)
            )
            scale(1.015);
    }

    .brands-hero__visual:hover .brands-hero__asset--lid-pink {
        transform:
            translate(
                calc(-50% + 2px),
                calc(-50% - 5px)
            )
            rotate(-3deg);
    }

    .brands-hero__visual:hover .brands-hero__asset--train {
        transform:
            translate(
                calc(-50% - 8px),
                -50%
            );
    }

    .brands-hero__visual:hover .brands-hero__asset--box-red {
        transform:
            translate(
                calc(-50% - 3px),
                calc(-50% - 3px)
            )
            rotate(-94deg);
    }

    .brands-hero__visual:hover .brands-hero__asset--lid-red {
        transform:
            translate(
                calc(-50% - 4px),
                calc(-50% - 4px)
            )
            rotate(-4deg);
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brands-hero__backdrop-outer,
    .brands-hero__backdrop-inner,
    .brands-hero__asset {
        transition: none;
    }

    .brands-hero__visual:hover .brands-hero__backdrop-outer,
    .brands-hero__visual:hover .brands-hero__backdrop-inner {
        transform: none;
    }

    .brands-hero__visual:hover .brands-hero__asset--farhuda {
        transform:
            translate(-50%, -50%)
            rotate(-9deg);
    }

    .brands-hero__visual:hover .brands-hero__asset--farhud {
        transform:
            translate(-50%, -50%)
            rotate(9deg);
    }

    .brands-hero__visual:hover .brands-hero__asset--box-blue {
        transform: translate(-50%, -50%);
    }

    .brands-hero__visual:hover .brands-hero__asset--lid-blue {
        transform:
            translate(-50%, -50%)
            rotate(110deg);
    }

    .brands-hero__visual:hover .brands-hero__asset--box-pink,
    .brands-hero__visual:hover .brands-hero__asset--lid-pink,
    .brands-hero__visual:hover .brands-hero__asset--train,
    .brands-hero__visual:hover .brands-hero__asset--lid-red {
        transform: translate(-50%, -50%);
    }

    .brands-hero__visual:hover .brands-hero__asset--box-red {
        transform:
            translate(-50%, -50%)
            rotate(-90deg);
    }
}

/* Desktop Brands partnership entrance */
@media (min-width: 1101px) {
    .brands-partner-strip.is-reveal-ready
    .brands-partner-strip__panel {
        opacity: 0;
        transform: translateY(10px);
    }

    .brands-partner-strip.is-reveal-ready::before,
    .brands-partner-strip.is-reveal-ready::after {
        opacity: 0;
    }

    .brands-partner-strip.is-revealed
    .brands-partner-strip__panel {
        opacity: 1;
        transform: translateY(0);
        transition:
            opacity 420ms ease,
            transform 420ms ease;
    }

    .brands-partner-strip.is-revealed::before,
    .brands-partner-strip.is-revealed::after {
        opacity: 1;
        transition: opacity 360ms ease 60ms;
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brands-partner-strip.is-reveal-ready
    .brands-partner-strip__panel,
    .brands-partner-strip.is-revealed
    .brands-partner-strip__panel {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .brands-partner-strip.is-reveal-ready::before,
    .brands-partner-strip.is-reveal-ready::after,
    .brands-partner-strip.is-revealed::before,
    .brands-partner-strip.is-revealed::after {
        opacity: 1;
        transition: none;
    }
}

/* Desktop Brands partnership graphic interaction */
@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .brands-partner-strip__graphic {
        transition:
            transform 220ms ease,
            box-shadow 220ms ease;
    }

    .brands-partner-strip__graphic::before {
        transition: transform 220ms ease;
    }

    .brands-partner-strip__graphic:hover {
        transform: translateY(-3px);
        box-shadow:
            0 8px 18px
            color-mix(
                in srgb,
                var(--color-text) 11%,
                transparent
            );
    }

    .brands-partner-strip__graphic:hover::before {
        transform: rotate(-4deg) scale(1.04);
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brands-partner-strip__graphic,
    .brands-partner-strip__graphic::before {
        transition: none;
    }

    .brands-partner-strip__graphic:hover,
    .brands-partner-strip__graphic:hover::before {
        transform: none;
        box-shadow: none;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .brands-hero__inner {
        position: relative;
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.78fr);
        min-height: 470px;
        padding: 38px 0 34px;
        gap: 20px;
    }

    .brands-hero__content {
        position: relative;
        z-index: 2;
        max-width: 430px;
    }

    .brands-hero__title {
        font-size: clamp(38px, 5.5vw, 50px);
    }

    .brands-hero__description {
        max-width: 410px;
    }

    .brands-hero__visual {
        width: 100%;
        max-width: 360px;
        min-height: 390px;
        justify-self: end;
    }

    .brands-hero__scene {
        position: absolute;
        top: 50%;
        right: 0;
        width: 520px;
        min-height: 380px;
        transform: translateY(-50%) scale(0.68);
        transform-origin: center right;
    }

    .brands-hero__actions,
    .brands-hero__highlights {
        width: 100%;
        max-width: 430px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}

/* Tablet Brands section reveals */
@media (min-width: 601px) and (max-width: 1100px) {
    .brands-collection.is-reveal-ready,
    .brands-promise.is-reveal-ready,
    .brands-partner-strip.is-reveal-ready {
        opacity: 0;
    }

    .brands-collection.is-revealed,
    .brands-promise.is-revealed,
    .brands-partner-strip.is-revealed {
        opacity: 1;
        transition: opacity 420ms ease;
    }
}

@media (
    min-width: 601px
) and (
    max-width: 1100px
) and (
    prefers-reduced-motion: reduce
) {
    .brands-collection.is-reveal-ready,
    .brands-collection.is-revealed,
    .brands-promise.is-reveal-ready,
    .brands-promise.is-revealed,
    .brands-partner-strip.is-reveal-ready,
    .brands-partner-strip.is-revealed {
        opacity: 1;
        transition: none;
    }
}

/* Mobile Brands section reveals */
@media (max-width: 600px) {
    .brands-collection.is-reveal-ready,
    .brands-promise.is-reveal-ready,
    .brands-partner-strip.is-reveal-ready {
        opacity: 0;
    }

    .brands-collection.is-revealed,
    .brands-promise.is-revealed,
    .brands-partner-strip.is-revealed {
        opacity: 1;
        transition: opacity 360ms ease;
    }
}

@media (max-width: 600px) and (prefers-reduced-motion: reduce) {
    .brands-collection.is-reveal-ready,
    .brands-collection.is-revealed,
    .brands-promise.is-reveal-ready,
    .brands-promise.is-revealed,
    .brands-partner-strip.is-reveal-ready,
    .brands-partner-strip.is-revealed {
        opacity: 1;
        transition: none;
    }
}

@media (max-width: 600px) {
    .brands-hero__inner {
        width: min(100% - 32px, var(--page-width));
        min-height: auto;
        padding: 38px 0 24px;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .brands-hero__content {
        max-width: 100%;
    }

    .brands-hero__title {
        font-size: clamp(34px, 11vw, 44px);
    }

    .brands-hero__title-line {
        white-space: normal;
    }

    .brands-hero__description {
        margin-top: 18px;
        font-size: 13px;
    }

    .brands-hero__actions,
    .brands-hero__highlights {
        width: 100%;
        max-width: none;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .brands-hero__highlights {
        margin-top: 20px;
    }

    .brands-hero__button {
        min-height: 46px;
    }

    .brands-hero__visual {
        position: relative;
        width: 100%;
        max-width: none;
        min-height: 350px;
        margin: 4px auto 0;
        justify-self: center;
    }

    .brands-hero__scene {
        position: absolute;
        top: 36px;
        left: 48.5%;
        width: 520px;
        min-height: 380px;
        transform: translateX(-50%) scale(0.68);
        transform-origin: top center;
    }
}

@media (max-width: 420px) {
    .brands-hero__inner {
        padding-top: 34px;
        padding-bottom: 22px;
    }

    .brands-hero__visual {
        min-height: 328px;
    }

    .brands-hero__scene {
        top: 40px;
        left: 48%;
        transform: translateX(-50%) scale(0.62);
    }
}

@media (max-width: 360px) {
    .brands-hero__visual {
        min-height: 304px;
    }

    .brands-hero__scene {
        top: 44px;
        left: 47.5%;
        transform: translateX(-50%) scale(0.55);
    }
}

/* Brand collection */
.brands-collection {
    position: relative;
    padding: 72px 0 80px;
    overflow: hidden;
    background: var(--theme-page-background);
    scroll-margin-top: 0;
}

.brands-collection::before,
.brands-collection::after {
    content: "";
    position: absolute;
    top: 0;
    width: 6px;
    height: 230px;
    border-radius: 999px;
}

.brands-collection::before {
    left: 8px;
    background: var(--color-yellow);
}

.brands-collection::after {
    right: 8px;
    background: var(--color-primary);
}

.brands-collection__inner {
    width: min(100% - 72px, var(--page-width));
    margin: 0 auto;
}

.brands-collection__heading {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.brands-collection__heading > p {
    margin: 0 0 10px;
    color: var(--color-red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brands-collection__heading h2 {
    margin: 0;
    color: var(--color-primary);
    font-size: clamp(34px, 3.8vw, 48px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.brands-collection__heading > span {
    display: block;
    margin-top: 14px;
    color: var(--color-primary);
    font-size: 13px;
    line-height: 1.6;
}

.brands-collection__filters {
    width: min(100%, 760px);
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.brands-filter {
    --filter-color: var(--color-primary);
    --filter-text-color: var(--filter-color);
    --filter-shadow-color: var(--color-pink);

    box-sizing: border-box;
    min-width: 0;
    min-height: 42px;
    padding: 0 16px;
    border: 1.5px solid var(--filter-color);
    border-radius: 999px;
    color: var(--filter-text-color);
    background: var(--theme-surface);
    font: inherit;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
}

.brands-filter:nth-child(1),
.brands-filter:nth-child(8) {
    --filter-color: var(--color-primary);
    --filter-shadow-color: var(--color-pink);
}

.brands-filter:nth-child(2),
.brands-filter:nth-child(7) {
    --filter-color: var(--color-red);
    --filter-shadow-color: var(--color-yellow);
}

.brands-filter:nth-child(3),
.brands-filter:nth-child(6) {
    --filter-color: var(--color-yellow);
    --filter-text-color: var(--color-yellow-deep);
    --filter-shadow-color: var(--color-red);
}

.brands-filter:nth-child(4),
.brands-filter:nth-child(5) {
    --filter-color: var(--color-pink);
    --filter-text-color: var(--color-pink-deep);
    --filter-shadow-color: var(--color-primary);
}

.brands-filter.is-active {
    color: var(--color-white);
    background: var(--filter-color);
}

@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .brands-filter {
        transition:
            transform 180ms ease,
            box-shadow 180ms ease,
            color 180ms ease,
            background-color 180ms ease,
            border-color 180ms ease;
    }

    .brands-filter:hover,
    .brands-filter:focus-visible {
        transform: translateY(-2px);
        box-shadow: 0 7px 0 var(--filter-shadow-color);
    }

    .brands-filter:active {
        transform: translateY(1px) scale(0.98);
        box-shadow: 0 3px 0 var(--filter-shadow-color);
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brands-filter {
        transition: none;
    }

    .brands-filter:hover,
    .brands-filter:focus-visible,
    .brands-filter:active {
        transform: none;
        box-shadow: none;
    }
}

.brands-collection__status {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.brands-collection__grid {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.brand-directory-card {
    --brand-color: var(--color-primary);
    --brand-text-color: var(--brand-color);

    flex: 0 1 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    min-width: 0;
    overflow: hidden;
    border: 2px solid var(--brand-color);
    border-radius: 22px;
    background: var(--theme-surface-raised);
}

.brand-directory-card[hidden] {
    display: none;
}

.brand-directory-card--red {
    --brand-color: var(--color-red);
}

.brand-directory-card--blue {
    --brand-color: var(--color-primary);
}

.brand-directory-card--pink {
    --brand-color: var(--color-pink);
    --brand-text-color: var(--color-pink-deep);
}

.brand-directory-card--yellow {
    --brand-color: var(--color-yellow);
    --brand-text-color: var(--color-yellow-deep);
}

.brand-directory-card__visual {
    height: 204px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--theme-surface-subtle);
}

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

.brand-directory-card[data-brand-slug="smoby"] .brand-directory-card__image,
.brand-directory-card[data-brand-slug="pilsan"] .brand-directory-card__image {
    object-position: center top;
}
.brand-directory-card__visual span {
    padding: 10px 18px;
    border: 1.5px dashed var(--theme-border);
    border-radius: 12px;
    color: var(--theme-text-subtle);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-directory-card__content {
    min-height: 250px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* Keep status pill text consistent on light brand fills */
.brand-directory-card--yellow .brand-directory-card__status,
.brand-directory-card--pink .brand-directory-card__status {
    color: var(--color-white);
}

.brand-directory-card__status {
    min-height: 24px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    border: 1px solid var(--brand-color);
    border-radius: 999px;
    color: var(--color-white);
    background: var(--brand-color);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.035em;
    line-height: 1;
    text-transform: uppercase;
}

.brand-directory-card h3 {
    margin: 16px 0 0;
    color: var(--brand-text-color);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.brand-directory-card p {
    min-height: 66px;
    margin: 12px 0 0;
    color: var(--color-primary);
    font-size: 14px;
    line-height: 1.55;
}

.brand-directory-card__categories {
    margin: auto 0 0;
    padding: 18px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    list-style: none;
}

.brand-directory-card__categories li {
    min-height: 24px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--brand-color);
    border-radius: 999px;
    color: var(--brand-text-color);
    background: var(--theme-surface);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.15;
}

/* Brand Collection filter transition */
.brands-collection.is-filter-fading-out
.brand-directory-card:not([hidden]) {
    opacity: 0;
    transition: opacity 220ms ease !important;
    transition-delay: 0ms !important;
}

.brands-collection.is-filter-preparing
.brand-directory-card:not([hidden]) {
    opacity: 0;
    transition: none !important;
}

.brands-collection.is-filter-fading-in
.brand-directory-card:not([hidden]) {
    opacity: 1;
    transition: opacity 320ms ease !important;
    transition-delay: 0ms !important;
}

@media (prefers-reduced-motion: reduce) {
    .brands-collection.is-filter-fading-out
    .brand-directory-card:not([hidden]),
    .brands-collection.is-filter-preparing
    .brand-directory-card:not([hidden]),
    .brands-collection.is-filter-fading-in
    .brand-directory-card:not([hidden]) {
        opacity: 1;
        transition: none !important;
    }
}

/* Desktop Brand Directory card interactions */
@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .brand-directory-card {
        transition:
            transform 220ms ease,
            box-shadow 220ms ease;
    }

    .brand-directory-card__image {
        transition: transform 280ms ease;
    }

    .brand-directory-card__status {
        transition: transform 220ms ease;
    }

    .brand-directory-card:hover {
        transform: translateY(-4px);
        box-shadow:
            0 10px 22px
            color-mix(
                in srgb,
                var(--color-text) 12%,
                transparent
            );
    }

    .brand-directory-card:hover .brand-directory-card__image {
        transform: scale(1.025);
    }

    .brand-directory-card:hover .brand-directory-card__status {
        transform: translateY(-1px);
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brand-directory-card,
    .brand-directory-card__image,
    .brand-directory-card__status {
        transition: none;
    }

    .brand-directory-card:hover,
    .brand-directory-card:hover .brand-directory-card__image,
    .brand-directory-card:hover .brand-directory-card__status {
        transform: none;
        box-shadow: none;
    }
}

@media (max-width: 900px) {
    .brands-collection__inner {
        width: min(100% - 40px, var(--page-width));
    }

    .brands-collection__filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-directory-card {
        flex-basis: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 600px) {
    .brands-collection {
        padding: 56px 0 64px;
    }

    .brands-collection__inner {
        width: min(100% - 32px, var(--page-width));
    }

    .brands-collection__filters {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    .brands-collection__grid {
        margin-top: 40px;
    }

    .brand-directory-card {
        flex-basis: 100%;
        max-width: 100%;
    }
}


/* Desktop Brand Collection entrance */
@media (min-width: 1101px) {
    .brands-collection.is-reveal-ready
    .brands-collection__heading {
        opacity: 0;
        transform: translateY(10px);
    }

    .brands-collection.is-reveal-ready
    .brands-collection__filters,
    .brands-collection.is-reveal-ready
    .brand-directory-card,
    .brands-collection.is-reveal-ready::before,
    .brands-collection.is-reveal-ready::after {
        opacity: 0;
    }

    .brands-collection.is-revealed
    .brands-collection__heading {
        opacity: 1;
        transform: translateY(0);
        transition:
            opacity 420ms ease,
            transform 420ms ease;
    }

    .brands-collection.is-revealed
    .brands-collection__filters {
        opacity: 1;
        transition: opacity 400ms ease 70ms;
    }

    .brands-collection.is-revealed
    .brand-directory-card {
        opacity: 1;
        transition:
            opacity 420ms ease,
            transform 220ms ease,
            box-shadow 220ms ease;
    }

    .brands-collection.is-revealed
    .brand-directory-card:nth-child(1) {
        transition-delay: 120ms, 0ms, 0ms;
    }

    .brands-collection.is-revealed
    .brand-directory-card:nth-child(2) {
        transition-delay: 160ms, 0ms, 0ms;
    }

    .brands-collection.is-revealed
    .brand-directory-card:nth-child(3) {
        transition-delay: 200ms, 0ms, 0ms;
    }

    .brands-collection.is-revealed
    .brand-directory-card:nth-child(4) {
        transition-delay: 240ms, 0ms, 0ms;
    }

    .brands-collection.is-revealed
    .brand-directory-card:nth-child(5) {
        transition-delay: 280ms, 0ms, 0ms;
    }

    .brands-collection.is-revealed
    .brand-directory-card:nth-child(n + 6) {
        transition-delay: 320ms, 0ms, 0ms;
    }

    .brands-collection.is-revealed::before,
    .brands-collection.is-revealed::after {
        opacity: 1;
        transition: opacity 380ms ease;
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brands-collection__heading,
    .brands-collection__filters,
    .brands-collection .brand-directory-card,
    .brands-collection::before,
    .brands-collection::after {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Brands selection promise */
.brands-promise {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
    background: var(--theme-page-background);
}

.brands-promise::before,
.brands-promise::after {
    content: "";
    position: absolute;
    top: 32px;
    bottom: 32px;
    width: 6px;
    border-radius: 999px;
}

.brands-promise::before {
    left: 8px;
    background: var(--color-yellow);
}

.brands-promise::after {
    right: 8px;
    background: var(--color-primary);
}

.brands-promise__inner {
    width: min(100% - 72px, var(--page-width));
    margin: 0 auto;
}

.brands-promise__panel {
    padding: 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 48px;
    align-items: center;
    border-radius: 34px;
    background: var(--color-red-soft);
}

.brands-promise__graphic-card {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 28px;
    background: var(--theme-surface-subtle);
}

.brands-promise__tiles {
    width: min(100%, 430px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.brands-promise__tile {
    --tile-color: var(--color-primary);
    --tile-text-color: var(--color-white);

    min-height: 116px;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 24px;
    color: var(--tile-text-color);
    background: var(--tile-color);
}

.brands-promise__tile--red {
    --tile-color: var(--color-red);
}

.brands-promise__tile--blue {
    --tile-color: var(--color-primary);
}

.brands-promise__tile--yellow {
    --tile-color: var(--color-yellow);
    --tile-text-color: var(--color-white);
}

.brands-promise__tile--pink {
    --tile-color: var(--color-pink);
}

.brands-promise__tile-icon {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
}

.brands-promise__tile-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: currentColor;
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 94%,
        50% 72%,
        21% 94%,
        32% 57%,
        2% 35%,
        39% 35%
    );
}

.brands-promise__tile-label {
    min-width: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.035em;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Desktop Brands Promise graphic-card interaction */
@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .brands-promise__graphic-card {
        transition:
            transform 280ms ease,
            box-shadow 280ms ease;
    }

    .brands-promise__graphic-card:hover {
        transform: translateY(-2px);
        box-shadow:
            0 10px 22px
            color-mix(
                in srgb,
                var(--color-text) 10%,
                transparent
            );
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brands-promise__graphic-card {
        transition: none;
    }

    .brands-promise__graphic-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Desktop Brands Promise tile interactions */
@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .brands-promise__tile {
        transition:
            transform 220ms ease,
            box-shadow 220ms ease;
    }

    .brands-promise__tile-icon::before {
        transition: transform 220ms ease;
    }

    .brands-promise__tile:hover {
        transform: translateY(-3px);
        box-shadow:
            0 8px 18px
            color-mix(
                in srgb,
                var(--color-text) 12%,
                transparent
            );
    }

    .brands-promise__tile:hover
    .brands-promise__tile-icon::before {
        transform: rotate(6deg) scale(1.06);
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brands-promise__tile,
    .brands-promise__tile-icon::before {
        transition: none;
    }

    .brands-promise__tile:hover,
    .brands-promise__tile:hover
    .brands-promise__tile-icon::before {
        transform: none;
        box-shadow: none;
    }
}

.brands-promise__content {
    max-width: 520px;
}

.brands-promise__eyebrow {
    margin: 0 0 12px;
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brands-promise__content h2 {
    margin: 0;
    font-family: "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif;
    font-size: clamp(34px, 3.8vw, 48px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.brands-promise__content h2 span {
    display: block;
    color: var(--color-yellow);
}

.brands-promise__content h2 span:last-child {
    color: var(--color-primary);
}

.brands-promise__description {
    max-width: 490px;
    margin: 18px 0 0;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
}

.brands-promise__features {
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.brands-promise__feature {
    --feature-color: var(--color-primary);
    --feature-text-color: var(--feature-color);

    position: relative;
    min-height: 46px;
    padding: 12px 16px 12px 44px;
    display: flex;
    align-items: center;
    border: 2px solid var(--feature-color);
    border-radius: 16px;
    color: var(--feature-text-color);
    background: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.brands-promise__feature::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--feature-color);
    transform: translateY(-50%);
}

.brands-promise__feature--red {
    --feature-color: var(--color-red);
    --feature-text-color: var(--color-red);
}

.brands-promise__feature--yellow {
    --feature-color: var(--color-yellow);
    --feature-text-color: var(--color-yellow-deep);
}

.brands-promise__feature--blue {
    --feature-color: var(--color-primary);
    --feature-text-color: var(--color-primary);
}

.brands-promise__feature--pink {
    --feature-color: var(--color-pink);
    --feature-text-color: var(--color-pink-deep);
}

/* Desktop Brands Promise feature interactions */
@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .brands-promise__feature {
        transition:
            transform 200ms ease,
            box-shadow 200ms ease;
    }

    .brands-promise__feature::before {
        transition: transform 200ms ease;
    }

    .brands-promise__feature:hover {
        transform: translateY(-2px);
        box-shadow:
            0 7px 16px
            color-mix(
                in srgb,
                var(--color-text) 9%,
                transparent
            );
    }

    .brands-promise__feature:hover::before {
        transform:
            translateY(-50%)
            scale(1.12);
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brands-promise__feature,
    .brands-promise__feature::before {
        transition: none;
    }

    .brands-promise__feature:hover {
        transform: none;
        box-shadow: none;
    }

    .brands-promise__feature:hover::before {
        transform: translateY(-50%);
    }
}

@media (min-width: 1101px) {
    .brands-promise__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .brands-promise__feature {
        min-height: 58px;
        padding: 10px 14px 10px 40px;
    }

    .brands-promise__feature::before {
        left: 14px;
    }
}

@media (min-width: 1101px) {
    .brands-promise__graphic-card {
        align-self: stretch;
        aspect-ratio: auto;
    }
}

.brands-promise__button {
    min-width: 190px;
    margin-top: 28px;
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
}

@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .brands-promise__button {
        transition:
            transform 180ms ease,
            box-shadow 180ms ease;
    }

    .brands-promise__button:hover,
    .brands-promise__button:focus-visible {
        color: var(--color-white);
        border-color: var(--color-primary);
        background: var(--color-primary);
        transform: translateY(-2px);
        box-shadow: 0 8px 0 var(--color-yellow);
    }

    .brands-promise__button:active {
        transform: translateY(1px) scale(0.98);
        box-shadow: 0 3px 0 var(--color-yellow);
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brands-promise__button {
        transition: none;
    }

    .brands-promise__button:hover,
    .brands-promise__button:focus-visible,
    .brands-promise__button:active {
        transform: none;
        box-shadow: none;
    }
}

/* Large-tablet Brands Promise layout */
@media (min-width: 901px) and (max-width: 1100px) {
    .brands-promise__panel {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .brands-promise__graphic-card {
        max-width: 560px;
        margin: 0 auto;
    }

    .brands-promise__content {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .brands-promise__inner {
        width: min(100% - 40px, var(--page-width));
    }

    .brands-promise__panel {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .brands-promise__graphic-card {
        max-width: 560px;
        margin: 0 auto;
    }

    .brands-promise__content {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .brands-promise {
        padding: 52px 0;
    }

    .brands-promise__panel {
        padding: 24px;
        gap: 28px;
        border-radius: 26px;
    }

    .brands-promise__graphic-card {
        padding: 18px;
        border-radius: 22px;
    }

    .brands-promise__tiles {
        gap: 12px;
    }

    .brands-promise__tile {
        min-height: 96px;
        padding: 16px 14px;
        gap: 12px;
        border-radius: 18px;
    }

    .brands-promise__tile-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .brands-promise__tile-label {
        font-size: 10px;
    }

    .brands-promise__button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .brands-promise__tiles {
        grid-template-columns: minmax(0, 1fr);
    }

    .brands-promise__graphic-card {
        aspect-ratio: auto;
    }

    .brands-promise__tile {
        min-height: 82px;
    }
}


/* Desktop Brands Promise entrance */
@media (min-width: 1101px) {
    .brands-promise.is-reveal-ready .brands-promise__panel,
    .brands-promise.is-reveal-ready::before,
    .brands-promise.is-reveal-ready::after {
        opacity: 0;
    }

    .brands-promise.is-reveal-ready
    .brands-promise__graphic-card,
    .brands-promise.is-reveal-ready
    .brands-promise__tile {
        opacity: 0;
    }

    .brands-promise.is-reveal-ready
    .brands-promise__content {
        opacity: 0;
        transform: translateX(10px);
    }

    .brands-promise.is-revealed .brands-promise__panel {
        opacity: 1;
        transition: opacity 420ms ease;
    }

    .brands-promise.is-revealed
    .brands-promise__graphic-card {
        opacity: 1;
        transition:
            opacity 440ms ease 50ms,
            transform 280ms ease,
            box-shadow 280ms ease;
    }

    .brands-promise.is-revealed
    .brands-promise__tile {
        opacity: 1;
        transition:
            opacity 400ms ease,
            transform 220ms ease,
            box-shadow 220ms ease;
    }

    .brands-promise.is-revealed
    .brands-promise__tile:nth-child(1) {
        transition-delay: 90ms, 0ms, 0ms;
    }

    .brands-promise.is-revealed
    .brands-promise__tile:nth-child(2) {
        transition-delay: 130ms, 0ms, 0ms;
    }

    .brands-promise.is-revealed
    .brands-promise__tile:nth-child(3) {
        transition-delay: 170ms, 0ms, 0ms;
    }

    .brands-promise.is-revealed
    .brands-promise__tile:nth-child(4) {
        transition-delay: 210ms, 0ms, 0ms;
    }

    .brands-promise.is-revealed
    .brands-promise__content {
        opacity: 1;
        transform: translateX(0);
        transition:
            opacity 460ms ease 90ms,
            transform 460ms ease 90ms;
    }

    .brands-promise.is-revealed::before,
    .brands-promise.is-revealed::after {
        opacity: 1;
        transition: opacity 380ms ease;
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brands-promise__panel,
    .brands-promise__graphic-card,
    .brands-promise__tile,
    .brands-promise__content,
    .brands-promise::before,
    .brands-promise::after {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Brands partnership contact strip */
.brands-partner-strip {
    position: relative;
    padding: 48px 0;
    overflow: hidden;
    background: var(--theme-page-background);
}

.brands-partner-strip::before,
.brands-partner-strip::after {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    width: 6px;
    border-radius: 999px;
}

.brands-partner-strip::before {
    left: 8px;
    background: var(--color-yellow);
}

.brands-partner-strip::after {
    right: 8px;
    background: var(--color-primary);
}

.brands-partner-strip__inner {
    width: min(100% - 72px, var(--page-width));
    margin: 0 auto;
}

.brands-partner-strip__panel {
    min-height: 154px;
    padding: 26px 42px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    border-radius: 28px;
    background: var(--color-primary);
}

.brands-partner-strip__graphic {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-yellow);
}

.brands-partner-strip__graphic::before {
    content: "";
    width: 76px;
    height: 76px;
    background: var(--color-primary);
    -webkit-mask:
        url("../../images/icons/handshake-icon.svg")
        center / contain no-repeat;
    mask:
        url("../../images/icons/handshake-icon.svg")
        center / contain no-repeat;
}

.brands-partner-strip__content h2 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.brands-partner-strip__content p {
    margin: 12px 0 0;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

.brands-partner-strip__button {
    min-width: 184px;
    min-height: 46px;
    margin-right: 24px;
    padding: 0 24px;
    color: var(--color-primary-deep);
    border: 1px solid var(--color-yellow);
    background: var(--color-yellow);
    font-weight: 600;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

@media (min-width: 1101px) {
    .brands-partner-strip__button:hover,
    .brands-partner-strip__button:focus-visible {
        color: var(--color-primary-deep);
        border-color: var(--color-yellow);
        background: var(--color-yellow);
        transform: translateY(-2px);
        box-shadow: 0 8px 0 var(--color-red);
    }

    .brands-partner-strip__button:active {
        transform: translateY(1px) scale(0.98);
        box-shadow: 0 3px 0 var(--color-red);
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .brands-partner-strip__button {
        transition: none;
    }

    .brands-partner-strip__button:hover,
    .brands-partner-strip__button:focus-visible,
    .brands-partner-strip__button:active {
        transform: none;
        box-shadow: none;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .brands-partner-strip__inner {
        width: min(100% - 40px, var(--page-width));
    }

    .brands-partner-strip__panel {
        min-height: 132px;
        padding: 24px 28px;
        gap: 22px;
    }

    .brands-partner-strip__graphic {
        width: 72px;
        height: 72px;
    }

    .brands-partner-strip__content h2 {
        font-size: 22px;
    }

    .brands-partner-strip__content p {
        margin-top: 8px;
        font-size: 12px;
    }

    .brands-partner-strip__button {
        min-width: 150px;
        min-height: 42px;
        margin-right: 0;
        padding: 0 18px;
        justify-self: end;
    }
}

@media (max-width: 600px) {
    .brands-partner-strip {
        padding: 42px 0;
    }

    .brands-partner-strip__inner {
        width: min(100% - 32px, var(--page-width));
    }

    .brands-partner-strip__panel {
        padding: 28px 24px;
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
        text-align: center;
    }

    .brands-partner-strip__graphic {
        width: 84px;
        height: 84px;
        justify-self: center;
    }

    .brands-partner-strip__button {
        width: 100%;
        margin-right: 0;
        justify-self: stretch;
    }
}

/* Stage 14 shared Arabic Brands readability */
html[dir="rtl"] .brands-hero__eyebrow,
html[dir="rtl"] .brands-collection__heading > p,
html[dir="rtl"] .brands-promise__eyebrow {
    font-size: var(--arabic-text-eyebrow);
    font-weight: var(--arabic-weight-label);
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: none;
}

html[dir="rtl"] .brands-hero__description,
html[dir="rtl"] .brands-collection__heading > span,
html[dir="rtl"] .brand-directory-card__content > p,
html[dir="rtl"] .brands-promise__description,
html[dir="rtl"] .brands-partner-strip__content p {
    font-size: var(--arabic-text-body);
    font-weight: var(--arabic-weight-body);
    line-height: var(--arabic-line-body);
}

html[dir="rtl"] .brands-hero__highlight span,
html[dir="rtl"] .brands-promise__feature {
    font-size: var(--arabic-text-supporting);
    font-weight: var(--arabic-weight-body);
    line-height: var(--arabic-line-supporting);
    letter-spacing: 0;
    text-transform: none;
}

html[dir="rtl"] .brand-directory-card h3 {
    font-size: var(--arabic-text-card-heading);
    letter-spacing: 0;
    text-transform: none;
}

html[dir="rtl"] .brands-hero__button,
html[dir="rtl"] .brands-filter,
html[dir="rtl"] .brands-promise__button,
html[dir="rtl"] .brands-partner-strip__button {
    font-size: var(--arabic-text-button);
    font-weight: var(--arabic-weight-label);
    letter-spacing: 0;
    text-transform: none;
}

html[dir="rtl"] .brand-directory-card__status,
html[dir="rtl"] .brand-directory-card__categories,
html[dir="rtl"] .brands-collection__status {
    font-size: var(--arabic-text-meta);
    letter-spacing: 0;
    text-transform: none;
}

html[dir="rtl"] .brands-promise__feature {
    padding-right: 28px;
    padding-left: 0;
}

html[dir="rtl"] .brands-promise__feature::before {
    right: 0;
    left: auto;
}

@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    html[dir="rtl"] .brands-promise__feature:hover {
        transform: translateX(-3px);
    }
}

/* Stage 14 Arabic Brands leaf typography corrections */
html[dir="rtl"] .brands-hero__highlight strong,
html[dir="rtl"] .brands-promise__tile-label {
    font-size: var(--arabic-text-supporting);
    font-weight: var(--arabic-weight-label);
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: none;
}

html[dir="rtl"] .brand-directory-card__categories li {
    font-size: var(--arabic-text-meta);
    font-weight: var(--arabic-weight-label);
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: none;
}

html[dir="rtl"] .brand-directory-card__status {
    font-weight: var(--arabic-weight-label);
}

/* Stage 14 Arabic Brands Promise micro-adjustments */
html[dir="rtl"] .brands-promise__tile-label {
    font-size: var(--arabic-text-body);
    font-weight: var(--arabic-weight-label);
    line-height: 1.5;
}

html[dir="rtl"] .brands-promise__feature {
    font-size: calc(var(--arabic-text-supporting) - 1px);
    font-weight: var(--arabic-weight-label);
    padding-right: 36px;
}

html[dir="rtl"] .brands-promise__feature::before {
    right: 10px;
}

/* Stage 14 Arabic Brands Promise star-label emphasis */
html[dir="rtl"] .brands-promise__tile-label {
    font-size: calc(var(--arabic-text-body) + 8px);
    font-weight: 700;
    line-height: 1.4;
}
