:root {
    --budli-pink: #bc1c5c;
    --budli-pink-light: #d82d73;
    --budli-blue: #0474b4;
    --budli-blue-light: #058edc;

    /* Gradients */
    --budli-pink-gradient: linear-gradient(135deg, #bc1c5ce6 0%, #d82d73 100%);
    --budli-blue-gradient: linear-gradient(135deg, #0474b4e6 0%, #058edc 100%);
    --budli-dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

    --budli-text: #222222;
    --budli-muted: #666666;
    --budli-border: #e6e6e8;
    --budli-light: #f8f9fa;

    /* Premium Shadows */
    --budli-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --budli-shadow-md: 0 10px 30px rgba(10, 36, 99, 0.08);
    --budli-shadow-lg: 0 20px 60px rgba(14, 30, 84, 0.12);
    --budli-shadow: var(--budli-shadow-md);
}

/* body.home .user-login-panel removed to show icon when logged in */

body.home .header-main,
body.home .footer {
    font-family: "Inter", sans-serif;
}

body.home .main-nav-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
}

body.home .nav-main-item {
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.budli-home {
    color: var(--budli-text);
    font-family: "Inter", sans-serif;
}

.budli-home__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.budli-home__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.budli-home a {
    text-decoration: none;
}

.budli-home a:hover {
    text-decoration: none;
}

.budli-home__widgets-wrap {
    padding-top: 28px;
}

.budli-home__widgets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.budli-home__widget-panel {
    padding: 0 28px 26px;
}

.budli-home__widget-panel--sell {
    border-right: 1px solid var(--budli-border);
}

.budli-home__widget-title {
    margin: 0 0 18px;
    color: var(--budli-text);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.budli-home__widget-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.budli-home__widget-panel--sell .budli-home__widget-title a {
    color: #bc1c5c;
}

.budli-home__widget-panel--buy .budli-home__widget-title a {
    color: #0474b4;
}

.budli-home__widget-title a:hover {
    opacity: 0.8;
}

.budli-home__widget-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.budli-home__widget-card {
    display: flex;
    min-height: 124px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    border-radius: 12px;
    color: #ffffff;
    text-align: center;
    position: relative;
    box-shadow: var(--budli-shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.budli-home__widget-card--sell {
    background-color: #bc1c5c;
}

.budli-home__widget-card--sell:hover {
    background-color: #d82d73;
}

.budli-home__widget-card--buy {
    background-color: #0474b4;
}

.budli-home__widget-card--buy:hover {
    background-color: #058edc;
}

.budli-home__widget-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--budli-shadow-lg);
}

.budli-home__widget-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.budli-home__widget-card:hover::after {
    left: 200%;
}

/* Fixed image container — keeps all cards visually uniform */
.budli-home__widget-card-img {
    width: 92px;
    height: 72px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image fills the fixed container, any aspect ratio works cleanly */
.budli-home__widget-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.budli-home__widget-card:hover .budli-home__widget-card-img img {
    transform: scale(1.05);
}

.budli-home__widget-card small {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
}

.budli-home__banner-section {
    overflow: hidden;
}

.budli-banner {
    position: relative;
}

.budli-banner__slides {
    position: relative;
}

.budli-banner__slide {
    display: none;
}

.budli-banner__slide.is-active {
    display: block;
}

.budli-banner__slide img {
    display: block;
    width: 100%;
    height: auto;
}

.budli-banner__controls {
    pointer-events: none;
}

.budli-banner__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    height: 50px;
    width: 50px;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 2px;
    background: var(--budli-blue);
    color: #ffffff;
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-50%);
}

.budli-banner__arrow--prev {
    left: 15px;
}

.budli-banner__arrow--next {
    right: 15px;
}

.budli-banner__dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    z-index: 2;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.budli-banner__dots button,
.budli-carousel__dots button {
    height: 8px;
    width: 8px;
    border: none;
    border-radius: 999px;
    background: #d9d9d9;
    cursor: pointer;
    padding: 0;
}

.budli-banner__dots button.is-active {
    background: var(--budli-pink);
}

.budli-home__trust {
    border-bottom: 1px solid var(--budli-border);
}

.budli-home__trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.budli-home__trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-right: none;
    padding: 24px 16px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.budli-home__trust-card:hover {
    background: #ffffff;
}

.budli-home__trust-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
}

.budli-home__trust-card:hover img {
    transform: translateY(-3px);
}

.budli-home__section {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--budli-border);
}

@media (max-width: 991px) {
    .budli-home__section {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .budli-home__section {
        padding: 32px 0;
    }
}

.budli-home__section--light {
    background: var(--budli-light);
}

.budli-home__section-head {
    margin-bottom: 20px;
}

.budli-home__section-head h2 {
    margin: 0;
    color: var(--budli-text);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
}

.budli-home__section-head h2 a {
    color: inherit;
}

.budli-home__section-head p {
    margin: 8px 0 0;
    color: var(--budli-muted);
    font-size: 16px;
    line-height: 1.7;
}

.budli-home__section-head strong {
    color: var(--budli-blue);
}

.budli-home__section-head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.budli-home__section-head--center {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.budli-home__section-head--narrow {
    max-width: 860px;
}

.budli-home__section-head--on-dark h2,
.budli-home__section-head--on-dark p {
    color: #ffffff;
}

.budli-carousel {
    position: relative;
}

.budli-carousel__viewport {
    overflow: hidden;
}

.budli-carousel__track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.budli-carousel__slide {
    flex: 0 0 auto;
}

.budli-carousel__controls {
    position: absolute;
    top: -74px;
    right: 0;
    display: flex;
    gap: 10px;
}

.budli-carousel__arrow {
    display: inline-flex;
    height: 50px;
    width: 50px;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 2px;
    background: var(--budli-pink);
    color: #ffffff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.budli-carousel__arrow:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.budli-carousel__arrow.is-hidden {
    display: none;
}

.budli-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.budli-carousel__dots button.is-active {
    background: var(--budli-pink);
}

.budli-carousel--blue .budli-carousel__arrow {
    background: var(--budli-blue);
}

.budli-carousel--blue .budli-carousel__dots button {
    background: rgba(255, 255, 255, 0.75);
}

.budli-carousel--blue .budli-carousel__dots button.is-active {
    background: var(--budli-blue);
}

.budli-carousel--clean .budli-carousel__arrow,
.budli-carousel--blog .budli-carousel__arrow {
    display: none;
}

.budli-review-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.budli-review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
}

.budli-review-card__quote {
    position: absolute;
    color: #ececec;
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: 1;
}

.budli-review-card__quote--start {
    top: 14px;
    left: 18px;
}

.budli-review-card__quote--end {
    right: 16px;
    bottom: 52px;
}

.budli-review-card__text {
    min-height: 150px;
    margin: 0;
    padding-top: 16px;
    color: var(--budli-text);
    font-size: 15px;
    line-height: 1.85;
}

.budli-review-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.budli-review-card__meta img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    flex-shrink: 0;
}

.budli-review-card__meta h3 {
    margin: 0 0 4px;
    color: var(--budli-text);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.budli-review-card__stars {
    color: #ffb200;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1;
}

.budli-video-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #000000;
    aspect-ratio: 16 / 9;
    box-shadow: var(--budli-shadow-md);
}

.budli-video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    height: 64px;
    width: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--budli-pink);
    box-shadow: 0 0 0 0 rgba(188, 28, 92, 0.4);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 2;
}

.budli-video-card:hover .budli-video-card__play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--budli-pink-light);
    animation: pulse-pink 2s infinite;
}

@keyframes pulse-pink {
    0% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 0 0 rgba(188, 28, 92, 0.7);
    }

    70% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 0 15px rgba(188, 28, 92, 0);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 0 0 rgba(188, 28, 92, 0);
    }
}

.budli-video-card__play::before {
    content: "";
    margin-left: 4px;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #ffffff;
}


.budli-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.budli-why-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-radius: 20px;
    background: #ffffff;
    border-top: 4px solid var(--budli-pink);
    box-shadow: var(--budli-shadow-md);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.budli-why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--budli-shadow-lg);
    border-top-color: var(--budli-blue);
}

.budli-why-card img {
    height: 100px;
    width: 100px;
    object-fit: contain;
}

.budli-why-card h3 {
    margin: 0;
    color: var(--budli-pink);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.budli-why-card p {
    margin: 0;
    color: var(--budli-text);
    font-size: 16px;
    line-height: 1.7;
}

.budli-logo-card,
.budli-award-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.budli-logo-card {
    min-height: 90px;
    padding: 8px 12px;
}

.budli-logo-card img {
    width: auto;
    max-width: 100%;
    max-height: 80px;
}

.budli-award-card {
    padding: 10px;
}

.budli-award-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.budli-home__section-head--faq {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.budli-faq__tabs {
    display: flex;
    gap: 16px;
}

.budli-faq__tab {
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--budli-text);
    cursor: pointer;
    padding: 0 0 10px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.budli-faq__tab.is-active {
    border-bottom-color: var(--budli-blue);
    color: var(--budli-blue);
}

.budli-faq__panel {
    display: none;
}

.budli-faq__panel.is-active {
    display: block;
}

.budli-accordion {
    border-top: 1px solid var(--budli-border);
}

.budli-accordion__item {
    border-bottom: 1px solid var(--budli-border);
}

.budli-accordion__button {
    position: relative;
    width: 100%;
    border: none;
    background: transparent;
    color: var(--budli-text);
    cursor: pointer;
    padding: 24px 48px 24px 0;
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.budli-accordion__item.is-open .budli-accordion__button {
    color: var(--budli-blue);
    font-weight: 600;
}

.budli-accordion__icon {
    position: absolute;
    top: 50%;
    right: 0;
    height: 16px;
    width: 16px;
    color: currentColor;
    transform: translateY(-50%);
}

.budli-accordion__icon::before,
.budli-accordion__icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s ease;
}

.budli-accordion__icon::before {
    height: 2px;
    width: 14px;
}

.budli-accordion__icon::after {
    height: 14px;
    width: 2px;
}

.budli-accordion__item.is-open .budli-accordion__icon::after {
    opacity: 0;
}

.budli-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.budli-accordion__content-inner {
    padding: 0 0 20px;
    color: var(--budli-text);
    font-size: 15px;
    line-height: 1.8;
}

.budli-accordion__content-inner p,
.budli-accordion__content-inner ul {
    margin: 0 0 12px;
}

.budli-accordion__content-inner ul {
    padding-left: 20px;
}

.budli-accordion__content-inner a {
    color: var(--budli-blue);
}

.budli-blog-card {
    display: block;
    color: inherit;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--budli-shadow-sm);
    transition: all 0.3s ease;
}

.budli-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--budli-shadow-lg);
}

.budli-blog-card__image {
    overflow: hidden;
    position: relative;
}

.budli-blog-card__image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.budli-blog-card:hover .budli-blog-card__image img {
    transform: scale(1.08);
}

.budli-blog-card h3 {
    margin: 14px 0 0;
    color: var(--budli-text);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.budli-home__section--seo {
    border-top: 1px solid var(--budli-border);
    padding-top: 32px;
}

.budli-accordion--seo .budli-accordion__button {
    font-size: 16px;
}

.budli-accordion--seo .budli-accordion__content-inner {
    font-size: 14px;
}

@media (max-width: 1199px) {
    .budli-home__widget-panel {
        padding-right: 20px;
        padding-left: 20px;
    }

    .budli-carousel__controls {
        top: -68px;
    }
}

@media (max-width: 991px) {
    body.home .top-bar-inner::before {
        font-size: 13px;
    }

    .budli-home__widget-panel {
        padding-bottom: 22px;
    }

    .budli-banner__arrow,
    .budli-carousel__arrow {
        height: 36px;
        width: 36px;
        font-size: 15px;
    }

    .budli-home__section {
        padding: 34px 0;
    }

    .budli-home__section-head h2 {
        font-size: 24px;
    }

    .budli-home__trust-card {
        font-size: 13px;
    }

    .budli-home__trust-card img {
        height: 42px;
        width: 42px;
    }

    .budli-deals-grid {
        grid-template-columns: 1fr 1fr;
    }

    .budli-deals-grid__column--stack {
        grid-column: 1 / span 2;
        flex-direction: row;
    }

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

    .budli-home__section--testimonials .budli-carousel__arrow,
    .budli-home__section--videos .budli-carousel__arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    body.home .top-bar-inner::before {
        font-size: 12px;
    }

    .budli-home__widgets {
        grid-template-columns: 1fr;
    }

    .budli-home__widget-panel--sell {
        border-right: none;
        border-bottom: 1px solid var(--budli-border);
    }

    .budli-home__widget-title {
        font-size: 22px;
    }

    .budli-banner__arrow {
        display: none;
    }

    .budli-home__trust-card {
        padding: 12px 8px;
        font-size: 10px;
    }

    .budli-home__trust-card img {
        height: 30px;
        width: 30px;
    }

    .budli-home__section-head--split,
    .budli-home__section-head--faq {
        flex-direction: column;
        align-items: flex-start;
    }

    .budli-home__section-head {
        margin-bottom: 18px;
    }

    .budli-home__section-head h2 {
        font-size: 22px;
    }

    .budli-home__section-head p,
    .budli-why-card p,
    .budli-accordion__content-inner {
        font-size: 14px;
    }

    .budli-deals-grid {
        grid-template-columns: 1fr;
    }

    .budli-deals-grid__column--stack {
        grid-column: auto;
        flex-direction: column;
    }

    .budli-why-grid {
        grid-template-columns: 1fr;
    }

    .budli-why-card img {
        height: 70px;
        width: 70px;
    }

    .budli-faq__tab,
    .budli-accordion__button {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .budli-home__container {
        padding: 0 14px;
    }

    .budli-home__widgets-wrap {
        padding-top: 10px;
    }

    .budli-home__widget-panel {
        padding-right: 0;
        padding-left: 0;
    }

    .budli-home__widget-grid {
        gap: 6px;
    }

    .budli-home__widget-card {
        min-height: 94px;
        gap: 6px;
    }

    .budli-home__widget-card-img {
        width: 72px;
        height: 56px;
    }

    .budli-review-card {
        padding: 24px 16px 16px;
    }

    .budli-review-card__text {
        min-height: 110px;
        font-size: 14px;
    }

    .budli-video-card__play {
        height: 52px;
        width: 52px;
    }

    .budli-video-card__play::before {
        border-width: 8px 0 8px 14px;
    }

    .budli-home__section--brands .budli-carousel__controls {
        top: -56px;
    }

    .budli-home__section-head h2 {
        font-size: 20px;
    }
}

body.home .budli-home-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #ffffff;
    box-shadow: none;
}

body.home .budli-home-header .main-nav-wrapper {
    min-height: 84px;
    gap: 18px;
}

body.home .budli-home-nav {
    flex: 1 1 auto;
}

body.home .budli-home-nav .nav-list-main {
    gap: 8px !important;
    justify-content: center;
}

body.home .budli-home-nav .has-submenu {
    position: relative;
    list-style: none;
}

body.home .budli-home-nav .nav-main-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    color: #161b2d;
    font-size: 13px;
    line-height: 1.2;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.home .budli-home-nav .nav-main-item:hover,
body.home .budli-home-nav .has-submenu:hover>.nav-main-item {
    background: rgba(4, 116, 180, 0.08);
    color: var(--budli-blue);
    transform: translateY(-1px);
}

body.home .nav-main-icon,
body.home .submenu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

body.home .nav-main-icon img {
    width: clamp(16px, 1.55em, 22px);
    height: clamp(16px, 1.55em, 22px);
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

body.home .submenu-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

body.home .budli-home-nav .menu-arrow {
    display: inline-flex;
    align-items: center;
    color: #1b243f;
}

body.home .budli-home-nav .submnu {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    min-width: 260px;
    margin: 0;
    padding: 12px;
    display: grid;
    gap: 4px;
    background: #ffffff;
    border: 1px solid rgba(4, 116, 180, 0.12);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(14, 30, 84, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 30;
}

body.home .budli-home-nav .has-submenu:hover>.submnu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.home .budli-home-nav .submnu li {
    list-style: none;
}

body.home .budli-home-nav .submnu a,
body.home .budli-home-mobile-nav .mobile-submnu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #222222;
    font-size: 14px;
    line-height: 1.35;
}

body.home .budli-home-nav .submnu a:hover,
body.home .budli-home-mobile-nav .mobile-submnu a:hover {
    background: rgba(188, 28, 92, 0.08);
    color: var(--budli-pink);
}

body.home .nav-actions-right {
    flex: 0 0 auto;
}

body.home .action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(10, 36, 99, 0.12);
}

/* Ensure header CTA backgrounds are not lost to home-only resets */
body.home .header-main .action-btn.blue {
    background: #0b78b6;
}

body.home .header-main .action-btn.pink {
    background: #d41e57;
}

body.home .budli-home-mobile-nav {
    background: #ffffff;
}

body.home .budli-home-mobile-nav .mobile-nav-item-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

body.home .budli-home-mobile-nav .mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    color: #172038;
    font-weight: 600;
}

body.home .budli-home-mobile-nav .mobile-submnu {
    padding-bottom: 8px;
}

body.home .budli-home-mobile-nav .mobile-submnu li {
    list-style: none;
}

body.home .budli-home-footer {
    padding-top: 54px;
    background: linear-gradient(180deg, #17325f 0%, #0f2447 100%);
}

body.home .budli-home-footer .footer-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 28px;
}

body.home .budli-home-footer .footer-col h4,
body.home .budli-home-footer .footer-col h4 a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

body.home .budli-home-footer .footer-col p,
body.home .budli-home-footer .footer-col a,
body.home .budli-home-footer .footer-col span,
body.home .budli-home-footer .seo-row,
body.home .budli-home-footer .seo-list {
    color: rgba(255, 255, 255, 0.82);
}

body.home .budli-home-footer .footer-note {
    margin-bottom: 10px;
}

body.home .budli-home-footer .fc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    text-decoration: none;
}

body.home .budli-home-footer .footer-inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-top: 1px;
    color: #9ed9ff;
}

body.home .budli-home-footer .newsletter-form input {
    border: 0;
}

body.home .budli-home-footer .newsletter-form button {
    border: 0;
    background: var(--budli-pink);
}

body.home .budli-home-footer .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.home .budli-home-footer .social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transition: transform 0.2s ease, background 0.2s ease;
}

body.home .budli-home-footer .social-icons a:hover {
    transform: translateY(-2px);
    background: var(--budli-pink);
}

body.home .budli-home-footer .copyright-text,
body.home .budli-home-footer .footer-bottom {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

body.home .budli-home-footer .copyright-text {
    margin-top: 18px;
    margin-bottom: 22px !important;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 1199px) {
    body.home .budli-home-nav {
        display: none !important;
    }
}

@media (max-width: 991px) {
    body.home .budli-home-header .main-nav-wrapper {
        min-height: 72px;
    }


    body.home .budli-home-footer {
        padding-top: 42px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   BUDLI HOME — NEW SECTION ADDITIONS
   Append this block to the bottom of home.css
   Do NOT modify the existing home.css rules above this point.
═══════════════════════════════════════════════════════════════ */


/* ── HOW IT WORKS ────────────────────────────────────────────── */

.budli-home__section--howitworks {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    padding: 80px 0;
}

.budli-hiw-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .budli-hiw-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.budli-hiw-card {
    position: relative;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 440px;
}

@media (max-width: 1199px) {
    .budli-hiw-card {
        padding: 32px;
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .budli-hiw-card {
        flex-direction: column;
        padding: 32px 24px;
        min-height: auto;
    }
}

.budli-hiw-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.budli-hiw-card--sellers {
    background: linear-gradient(135deg, #fff5f8 0%, #fdeff4 100%);
    border: 1px solid #fce4ec;
}

.budli-hiw-card--buyers {
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    border: 1px solid #e1f5fe;
}

.budli-hiw-card__content {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.budli-hiw-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 24px;
    color: #1a1a1a;
}

.budli-hiw-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.budli-hiw-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.budli-hiw-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.budli-hiw-card--sellers .budli-hiw-item__icon {
    color: var(--budli-pink);
}

.budli-hiw-card--buyers .budli-hiw-item__icon {
    color: var(--budli-blue);
}

.budli-hiw-item__text h4 {
    margin: 0 0 2px;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
}

.budli-hiw-item__text p {
    margin: 0;
    font-size: 13px;
    color: #777777;
}

.budli-hiw-ctas {
    margin-top: auto;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.budli-hiw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.budli-hiw-btn--pink {
    background: var(--budli-pink);
    color: #ffffff;
}

.budli-hiw-btn--pink:hover {
    background: #a3154f;
    box-shadow: 0 6px 15px rgba(188, 28, 92, 0.3);
}

.budli-hiw-btn--outline-pink {
    background: #ffffff;
    color: var(--budli-pink);
    border: 1.5px solid var(--budli-pink);
}

.budli-hiw-btn--outline-pink:hover {
    background: #fff8f9;
}

.budli-hiw-btn--blue {
    background: var(--budli-blue);
    color: #ffffff;
}

.budli-hiw-btn--blue:hover {
    background: #035e91;
    box-shadow: 0 6px 15px rgba(4, 116, 180, 0.3);
}

.budli-hiw-btn--outline-blue {
    background: #ffffff;
    color: var(--budli-blue);
    border: 1.5px solid var(--budli-blue);
}

.budli-hiw-btn--outline-blue:hover {
    background: #f5faff;
}

.budli-hiw-card__image {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 767px) {
    .budli-hiw-card__image {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        height: auto;
        margin-top: 32px;
        justify-content: center;
    }
}

.budli-hiw-card__image img {
    max-width: 100%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.budli-hiw-card:hover .budli-hiw-card__image img {
    transform: scale(1.05) translateX(-10px);
}


/* ── BUDLI CERTIFIED ─────────────────────────────────────────── */

.budli-home__section--certified {
    background: linear-gradient(160deg, #fdf4f8 0%, #f8faff 100%);
}

.budli-certified-intro {
    text-align: center;
    margin-bottom: 40px;
}

.budli-quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--budli-pink);
    color: #ffffff;
    border-radius: 16px;
    padding: 14px 24px;
    margin-bottom: 20px;
}

.budli-quality-badge__num {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.budli-quality-badge__text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

.budli-certified-intro h2 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    color: var(--budli-text);
    line-height: 1.3;
}

.budli-certified-intro h2 span {
    color: var(--budli-pink);
}

.budli-certified-intro p {
    margin: 0;
    font-size: 16px;
    color: var(--budli-muted);
    line-height: 1.7;
}

.budli-certified-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.budli-certified-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--budli-shadow-sm);
    border: 1px solid var(--budli-border);
    transition: all 0.3s ease;
}

.budli-certified-card:hover {
    border-color: var(--budli-pink);
    box-shadow: var(--budli-shadow-md);
    transform: translateY(-3px);
}

.budli-certified-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fce7ef, #ffdce9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.budli-certified-card__body h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--budli-text);
    line-height: 1.35;
}

.budli-certified-card__body p {
    margin: 0;
    font-size: 13px;
    color: var(--budli-muted);
    line-height: 1.65;
}

.budli-certified-cta {
    text-align: center;
    margin-top: 32px;
}

.budli-certified-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--budli-pink);
    color: #ffffff;
    border-radius: 8px;
    padding: 13px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.budli-certified-cta a:hover {
    background: var(--budli-pink-light);
    transform: translateY(-1px);
}


/* ── SHOP BY CATEGORY ────────────────────────────────────────── */

.budli-home__section--category {
    background: #f8f9fa;
    padding: 4px 0;
}

/* Unified Slider Navigation Component */
.budli-slider-outer {
    position: relative;
    width: 100%;
}

.budli-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--budli-blue);
    font-size: 24px;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.budli-slider-btn:active {
    background: #ffffff;
    transform: translateY(-50%) scale(0.9);
}

.budli-slider-btn--prev {
    left: -6px;
}

.budli-slider-btn--next {
    right: -6px;
}

/* Desktop hide */
@media (min-width: 992px) {
    .budli-slider-btn {
        display: none !important;
    }

    /* Show slider arrows on desktop for Shop by Category & Buying Guides */
    .budli-home__section--category .budli-slider-btn,
    .budli-home__section--guides .budli-slider-btn {
        display: flex !important;
        width: 42px;
        height: 42px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        color: #0b78b6;
        font-size: 22px;
        transition: all 0.25s ease;
    }
    .budli-home__section--category .budli-slider-btn:hover,
    .budli-home__section--guides .budli-slider-btn:hover {
        background: #0b78b6;
        color: #ffffff;
        border-color: #0b78b6;
        box-shadow: 0 6px 20px rgba(11, 120, 182, 0.25);
    }
    .budli-home__section--category .budli-slider-btn--prev,
    .budli-home__section--guides .budli-slider-btn--prev {
        left: -20px;
    }
    .budli-home__section--category .budli-slider-btn--next,
    .budli-home__section--guides .budli-slider-btn--next {
        right: -20px;
    }
}

.budli-category-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.budli-category-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.budli-category-list {
    display: flex;
    gap: 40px;
    width: max-content;
    margin: 0 auto;
    padding: 0 20px;
}

.budli-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.budli-category-item:hover {
    transform: translateY(-5px);
}

.budli-category-circle {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.budli-category-item:hover .budli-category-circle {
    border-color: #2563eb;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.budli-category-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.budli-category-name {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.budli-category-item:hover .budli-category-name {
    color: #2563eb;
}

@media (max-width: 767px) {
    .budli-category-list {
        gap: 5px;
        padding: 0 1px;
    }

    .budli-category-circle {
        width: 88px;
        height: 88px;
        padding: 18px;
    }

    .budli-category-name {
        font-size: 13px;
    }
}


/* ── BUYING GUIDES ───────────────────────────────────────────── */

.budli-home__section--guides {
    background: var(--budli-light);
}

.budli-guides-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 24px;
    margin-top: 18px;
}

.budli-guides-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.bguide-track {
    display: flex;
    gap: 14px;
    width: max-content;
    padding: 0 10px;
}

.budli-guide-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 16px;
    width: 140px;
    text-decoration: none;
    color: var(--budli-text);
    box-shadow: var(--budli-shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.budli-guide-card:hover {
    border-color: var(--budli-pink);
    transform: translateY(-3px);
    box-shadow: var(--budli-shadow-md);
}

.budli-guide-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fce7ef;
}

.budli-guide-card__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--budli-text);
    text-align: center;
    line-height: 1.3;
}

.budli-guide-card__sub {
    font-size: 10px;
    color: var(--budli-muted);
    text-align: center;
    line-height: 1.35;
}

.budli-guide-card__cta {
    font-size: 11px;
    color: var(--budli-pink);
    font-weight: 600;
    text-align: center;
    margin-top: 2px;
}


/* ── SHOP BY BUDGET + GRADES BAR ────────────────────────────── */

.budli-home__section--budget {
    background: #ffffff;
    padding-bottom: 0;
}

.budli-budget-row {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 30px;
    display: flex;
    gap: 15px;
    width: 100%;
}

.budli-budget-row::-webkit-scrollbar {
    display: none;
}

.budli-budget-row>* {
    flex-shrink: 0;
}

.budli-budget-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--budli-light);
    border: 1px solid var(--budli-border);
    border-radius: 12px;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--budli-text);
    font-size: 13px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 220px;
    scroll-snap-align: start;
}

.budli-budget-card:hover {
    border-color: var(--budli-blue);
    background: #ffffff;
    box-shadow: var(--budli-shadow-sm);
    transform: translateY(-1px);
}

.budli-budget-card__icon {
    width: 34px;
    height: 34px;
    background: #e3f2fd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.budli-budget-card__cat {
    font-size: 11px;
    color: var(--budli-muted);
    display: block;
    line-height: 1.2;
}

.budli-budget-card__price {
    font-size: 13px;
    font-weight: 600;
    color: var(--budli-text);
    display: block;
    line-height: 1.3;
}




/* ── SHOP BY BRAND (BUY) ─────────────────────────────────────── */

.budli-home__section--shopbybrand {
    background: #ffffff;
}

.budli-shopbrand-head {
    text-align: center;
    margin-bottom: 32px;
}

.budli-shopbrand-head h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--budli-pink);
    margin: 0;
}

.sbb-grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 4px 20px;
    display: flex;
    gap: 14px;
    width: 100%;
}

.sbb-grid::-webkit-scrollbar {
    display: none;
}

.sbb-grid>* {
    flex-shrink: 0;
}

.budli-shopbrand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--budli-text);
    padding: 15px 12px;
    border-radius: 16px;
    border: 1px solid var(--budli-border);
    background: #ffffff;
    flex-shrink: 0;
    width: 110px;
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.budli-shopbrand-item:hover {
    border-color: var(--budli-blue);
    box-shadow: var(--budli-shadow-sm);
    transform: translateY(-2px);
}

.budli-shopbrand-item img {
    width: 52px;
    height: 38px;
    object-fit: contain;
}

.budli-shopbrand-item span {
    font-size: 11px;
    font-weight: 500;
    color: var(--budli-muted);
    text-align: center;
    line-height: 1.2;
}


/* ── ENVIRONMENTAL IMPACT ────────────────────────────────────── */

.budli-home__section--impact {
    background: linear-gradient(145deg, #0d4a33 0%, #1a7a52 60%, #0e5e40 100%);
    position: relative;
    overflow: hidden;
}

.budli-home__section--impact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.budli-impact-head {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.budli-impact-head h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.budli-impact-head p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    line-height: 1.6;
}

.budli-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    position: relative;
}

.budli-impact-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.budli-impact-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.budli-impact-card__icon {
    font-size: 40px;
    margin-bottom: 14px;
    line-height: 1;
}

.budli-impact-card__num {
    font-size: 34px;
    font-weight: 800;
    color: #5eead4;
    line-height: 1.1;
    letter-spacing: -1px;
}

.budli-impact-card__label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 8px;
    line-height: 1.5;
}


/* ── WHATSAPP FLOATING WIDGET ────────────────────────────────── */

/* No styles here - using unified global styles in style.css */

/* ═══════════════ RESPONSIVE — NEW SECTIONS ══════════════════ */

@media (max-width: 1024px) {
    .budli-certified-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    /* Category grid now side-scrolls */
}

@media (max-width: 991px) {
    .budli-hiw-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .budli-hiw-card {
        padding: 30px;
        min-height: auto;
    }

    /* Category grid now side-scrolls */
    .budli-budget-card {
        flex: 1 1 calc(33.333% - 8px);
    }
}

@media (max-width: 767px) {
    .budli-certified-grid {
        grid-template-columns: 1fr;
    }

    .budli-certified-intro h2 {
        font-size: 22px;
    }

    .budli-quality-badge {
        gap: 10px;
        padding: 12px 20px;
    }

    .budli-quality-badge__num {
        font-size: 42px;
    }

    .budli-impact-head h2 {
        font-size: 22px;
    }

    .budli-impact-card__num {
        font-size: 28px;
    }

    /* Category and Brand grids now side-scroll */
    .budli-budget-card {
        flex: 1 1 calc(50% - 6px);
        max-width: none;
    }

    .budli-shopbrand-grid {
        gap: 8px;
    }

    .budli-shopbrand-head h2 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .budli-hiw-card {
        padding: 24px;
    }

    .budli-hiw-card h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .budli-hiw-item__icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .budli-hiw-item__text h4 {
        font-size: 14px;
    }

    .budli-hiw-item__text p {
        font-size: 12px;
    }

    .budli-hiw-card__image {
        width: 50%;
        opacity: 0.4;
    }

    .budli-impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .budli-impact-card {
        padding: 22px 14px;
    }

    .budli-impact-card__num {
        font-size: 24px;
    }

    /* Category grid now side-scrolls */
    .budli-category-card {
        padding: 14px 10px;
        min-width: auto;
    }

    .budli-category-card__icon {
        width: 50px;
        height: 50px;
    }

    .budli-budget-card {
        flex: 1 1 100%;
    }



    .budli-certified-grid {
        gap: 12px;
    }

    .budli-certified-card {
        padding: 18px 16px;
    }
}

/* Homepage Section Refresh */

.budli-home__section--howitworks,
.budli-home__section--category,
.budli-home__section--guides,
.budli-home__section--budget,
.budli-home__section--shopbybrand,
.budli-home__section--spotlight,
.budli-home__section--awards,
.budli-home__section--trusted {
    position: relative;
}

.budli-home__section--howitworks .budli-home__section-head,
.budli-home__section--category .budli-home__section-head,
.budli-home__section--guides .budli-home__section-head,
.budli-home__section--budget .budli-home__section-head,
.budli-home__section--shopbybrand .budli-shopbrand-head,
.budli-home__section--spotlight .budli-home__section-head,
.budli-home__section--awards .budli-home__section-head,
.budli-home__section--trusted .budli-home__section-head {
    margin-bottom: 2px;
}

.budli-home__section--howitworks .budli-home__section-head h2,
.budli-home__section--category .budli-home__section-head h2,
.budli-home__section--guides .budli-home__section-head h2,
.budli-home__section--budget .budli-home__section-head h2,
.budli-home__section--shopbybrand .budli-shopbrand-head h2,
.budli-home__section--spotlight .budli-home__section-head h2,
.budli-home__section--awards .budli-home__section-head h2,
.budli-home__section--trusted .budli-home__section-head h2 {
    color: #c10077;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

.budli-home__section--category .budli-home__section-head p,
.budli-home__section--guides .budli-home__section-head p,
.budli-home__section--shopbybrand .budli-shopbrand-head p {
    max-width: 640px;
    margin: 8px auto 0;
    color: #64748b;
    font-size: 11px;
    line-height: 1.65;
}

/* How It Works */

.budli-home__section--howitworks {
    background:
        radial-gradient(circle at top left, rgba(193, 0, 119, 0.06), transparent 36%),
        radial-gradient(circle at top right, rgba(4, 116, 180, 0.07), transparent 34%),
        #f8fafc;
    padding: 42px 0 36px;
}

.budli-hiw-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.budli-hiw-card {
    --hiw-accent: #c10077;
    --hiw-soft: #fff1f8;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
    align-items: end;
    min-height: 100%;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid #eadbe4;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
    background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
    overflow: hidden;
}

.budli-hiw-card--buyer {
    --hiw-accent: #0474b4;
    --hiw-soft: #eef7ff;
    border-color: #dce9f4;
    background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
}

.budli-hiw-card__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.budli-hiw-card__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--hiw-soft);
    color: var(--hiw-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.budli-hiw-card h3 {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #111827;
}

.budli-hiw-card__desc {
    margin: 0 0 18px;
    color: #667085;
    font-size: 14px;
    line-height: 1.65;
    max-width: 480px;
}

.budli-hiw-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

.budli-hiw-item {
    display: grid;
    grid-template-columns: 34px 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.budli-hiw-item__count {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(17, 24, 39, 0.04);
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.budli-hiw-item__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--hiw-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.budli-hiw-item__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.budli-hiw-item__text h4 {
    margin: 0 0 4px;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.budli-hiw-item__text p {
    margin: 0;
    color: #667085;
    font-size: 12.5px;
    line-height: 1.5;
}

.budli-hiw-ctas {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.budli-hiw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.budli-hiw-btn:hover {
    transform: translateY(-1px);
}

.budli-hiw-btn--solid {
    background: var(--hiw-accent);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
}

.budli-hiw-btn--solid:hover {
    color: #ffffff;
}

.budli-hiw-btn--ghost {
    border: 1px solid rgba(17, 24, 39, 0.1);
    background: rgba(255, 255, 255, 0.82);
    color: #111827;
}

.budli-hiw-card__image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 210px;
    display: flex;
    align-items: end;
    justify-content: center;
    right: auto;
    bottom: auto;
}

.budli-hiw-card__image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 55%;
    border-radius: 24px 24px 18px 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(17, 24, 39, 0.03));
}

.budli-hiw-card__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 220px;
    max-height: 250px;
    object-fit: contain;
}

/* Shop By Category — styles consolidated above (see .budli-category-card block) */

/* Buying Guides */

.budli-home__section--guides {
    background: #f8fafc;
}

.budli-home__section--guides .budli-home__section-head {
    text-align: center;
}

.budli-home__section--guides .budli-home__section-head p {
    margin-left: 0;
    margin-right: 0;
}

.budli-guides-scroll-wrap {
    overflow-x: auto;
    margin-top: 10px;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.budli-guides-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.bguide-track {
    display: flex;
    gap: 16px;
    padding: 0 20px;
    width: max-content;
}

.bguide-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 32px 16px 24px 16px;
    width: 180px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.budli-guide-card__top-line {
    position: absolute;
    top: -1px;
    left: 12px;
    right: 12px;
    height: 4px;
    background-color: #c10077;
    border-radius: 0 0 4px 4px;
    transition: all 0.3s ease;
}

.bguide-card:hover .budli-guide-card__top-line {
    left: 0;
    right: 0;
    border-radius: 12px 12px 0 0;
}

.bguide-card-icon {
    position: relative;
    width: 48px;
    height: 48px;
    background-color: #fdf2f8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
    color: #c10077;
    overflow: hidden;
}

.bguide-card:hover .bguide-card-icon {
    transform: scale(1.1);
}

.bguide-card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.bguide-card-icon iconify-icon {
    display: block;
    line-height: 1;
}

.bguide-card-icon svg {
    display: block;
    max-width: 32px;
    max-height: 32px;
}

.bguide-card-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px 0;
    white-space: nowrap;
    width: 100%;
}

.bguide-card-tag {
    display: block;
    font-size: 12px;
    color: #888888;
    margin: 0 0 24px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    line-height: 1.4;
}

.bguide-card-link {
    font-size: 13px;
    font-weight: 700;
    color: #c10077;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.bguide-card:hover .bguide-card-link {
    gap: 8px;
}

.budli-guide-card__sub {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 24px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.budli-guide-card__cta {
    font-size: 13px;
    font-weight: 700;
    color: #c10077;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.budli-guide-card__cta svg {
    transition: transform 0.3s ease;
}

.budli-guide-card:hover .budli-guide-card__cta svg {
    transform: translateX(4px);
}

/* Shop By Budget */

.budli-home__section--budget {
    background: #ffffff;
    padding-top: 44px;
    padding-bottom: 0;
}

.budli-budget-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
}

.budli-budget-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 94px;
    max-width: none;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid #e9eef4;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    text-decoration: none;
    color: #111827;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.budli-budget-card:hover {
    border-color: rgba(4, 116, 180, 0.24);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.07);
    transform: translateY(-2px);
}

.budli-budget-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.budli-budget-card__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.budli-budget-card__cat {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 3px;
}

.budli-budget-card__price {
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}



/* Shop By Brand */

.budli-home__section--shopbybrand {
    background: #ffffff;
}

.budli-shopbrand-head {
    text-align: center;
}

.budli-shopbrand-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    max-width: 1080px;
    margin: 0 auto;
}

.budli-shopbrand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 116px;
    width: auto;
    padding: 18px 14px;
    border-radius: 20px;
    border: 1px solid #e9eef4;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.budli-shopbrand-item:hover {
    border-color: rgba(4, 116, 180, 0.24);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.07);
    transform: translateY(-2px);
}

.budli-shopbrand-item__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
}

.budli-shopbrand-item__logo img {
    width: auto;
    max-width: 100%;
    height: 32px;
    object-fit: contain;
}

.budli-shopbrand-item__name {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

/* Featured / Awards / Trusted */

.budli-home__section--spotlight,
.budli-home__section--awards,
.budli-home__section--trusted {
    background: #ffffff;
    padding-top: 4px;
    padding-bottom: 22px;
}

.budli-home__section--awards,
.budli-home__section--trusted {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.budli-home__section--spotlight .budli-home__section-head h2,
.budli-home__section--awards .budli-home__section-head h2,
.budli-home__section--trusted .budli-home__section-head h2 {
    font-size: 24px;
}

.budli-proof-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
}

.budli-proof-logo {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.budli-proof-logo:hover {
    transform: scale(1.05);
}

.budli-proof-logo img {
    width: auto;
    max-width: 100%;
    height: 36px;
    object-fit: contain;
    display: block;
}

.budli-proof-logo--partner img {
    height: 38px;
}

.budli-proof-award {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 6px 2px;
    text-align: center;
}

.budli-proof-award__image {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.budli-proof-award__image img {
    width: auto;
    max-width: 100%;
    height: 65px;
    object-fit: contain;
}

.budli-proof-award p {
    margin: 0;
    max-width: 130px;
    color: #374151;
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1.3;
}

/* Refresh responsiveness */

@media (max-width: 1199px) {
    .budli-hiw-card {
        grid-template-columns: minmax(0, 1fr) 180px;
    }

    /* Category grid now side-scrolls */

    /* Brand grid now side-scrolls */
}

@media (max-width: 991px) {

    .budli-home__section--howitworks .budli-home__section-head h2,
    .budli-home__section--category .budli-home__section-head h2,
    .budli-home__section--guides .budli-home__section-head h2,
    .budli-home__section--budget .budli-home__section-head h2,
    .budli-home__section--shopbybrand .budli-shopbrand-head h2 {
        font-size: 26px;
    }

    .budli-hiw-grid,
    .budli-budget-grid {
        grid-template-columns: 1fr;
    }

    .budli-hiw-card {
        grid-template-columns: 1fr;
    }

    .budli-hiw-card__image {
        min-height: 180px;
    }

    .budli-proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .budli-home__section--howitworks,
    .budli-home__section--category,
    .budli-home__section--guides,
    .budli-home__section--budget,
    .budli-home__section--shopbybrand {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .budli-home__section--spotlight,
    .budli-home__section--awards,
    .budli-home__section--trusted {
        padding-bottom: 18px;
    }

    .budli-home__section--spotlight .budli-home__section-head h2,
    .budli-home__section--awards .budli-home__section-head h2,
    .budli-home__section--trusted .budli-home__section-head h2 {
        font-size: 18px;
    }

    .budli-home__section--howitworks .budli-home__section-head h2,
    .budli-home__section--category .budli-home__section-head h2,
    .budli-home__section--guides .budli-home__section-head h2,
    .budli-home__section--budget .budli-home__section-head h2,
    .budli-home__section--shopbybrand .budli-shopbrand-head h2 {
        font-size: 15px;
    }

    .budli-hiw-card {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .budli-hiw-card h3 {
        font-size: 22px;
    }

    .budli-hiw-item {
        grid-template-columns: 32px 42px minmax(0, 1fr);
    }

    .budli-hiw-item__count {
        width: 32px;
        height: 32px;
    }

    .budli-hiw-item__icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .budli-hiw-item__icon img {
        width: 20px;
        height: 20px;
    }

    .budli-hiw-ctas {
        flex-direction: column;
    }

    .budli-hiw-btn {
        width: 100%;
    }

    /* Side-scrolling handled via flex track */

    .budli-category-card,
    .budli-shopbrand-item {
        min-height: 126px;
    }

    .budli-guides-track {
        grid-auto-columns: minmax(76vw, 1fr);
    }

    .budli-guide-card {
        min-height: 192px;
    }

    .budli-budget-grid {
        grid-template-columns: 1fr;
    }

    .budli-proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .budli-proof-logo {
        height: 40px;
    }

    .budli-proof-logo img {
        height: 28px;
    }

    .budli-proof-award__image {
        height: 58px;
    }

    .budli-proof-award__image img {
        height: 50px;
    }

    .budli-proof-award p {
        font-size: 9.5px;
    }
}

/* Certified + Impact Refresh */

.budli-home__section--certified,
.budli-home__section--impact {
    padding: 44px 0 34px;
    background:
        radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 20%),
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 22%),
        linear-gradient(180deg, #edf4ff 0%, #dfeafd 100%);
}

.budli-certified-shell,
.budli-impact-shell {
    position: relative;
    overflow: hidden;
    padding: 28px 26px 30px;
    border-radius: 28px;
    border: 1px solid rgba(156, 183, 231, 0.45);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(244, 248, 255, 0.9) 100%);
    box-shadow: 0 20px 48px rgba(41, 78, 146, 0.12);
}

.budli-certified-shell::before,
.budli-impact-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 22%),
        radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 18%),
        radial-gradient(circle at 64% 72%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 25%);
    pointer-events: none;
}

.budli-certified-shell>*,
.budli-impact-shell>* {
    position: relative;
    z-index: 1;
}

.budli-certified-intro,
.budli-impact-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 22px;
}

.budli-certified-intro__badge {
    width: 88px;
    height: 88px;
    display: block;
    margin: 0 auto 8px;
}

.budli-certified-intro h2,
.budli-impact-head h2 {
    margin: 0;
    color: #344274;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.budli-certified-intro p,
.budli-impact-head p {
    margin: 12px auto 0;
    max-width: 620px;
    color: #4d5c8e;
    font-size: 20px;
    line-height: 1.45;
}

.budli-certified-layout,
.budli-impact-layout {
    display: grid;
    gap: 24px;
    align-items: center;
}

.budli-certified-grid,
.budli-impact-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 0;
}

.budli-certified-card,
.budli-impact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(184, 205, 241, 0.72);
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 16px 28px rgba(80, 112, 180, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.budli-certified-card:hover,
.budli-impact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(93, 132, 214, 0.54);
    box-shadow: 0 22px 34px rgba(80, 112, 180, 0.14);
}

.budli-certified-card__icon,
.budli-impact-card__icon {
    width: 66px;
    height: 66px;
    min-width: 66px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.42);
}

.budli-certified-card__icon img,
.budli-impact-card__icon img {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.budli-certified-card__body h3,
.budli-impact-card__label {
    margin: 0;
    color: #33406f;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.budli-certified-card__body p,
.budli-impact-card__body p {
    margin: 6px 0 0;
    color: #5d6a95;
    font-size: 14px;
    line-height: 1.45;
}

.budli-certified-visual,
.budli-impact-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.budli-certified-visual img,
.budli-impact-visual img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
}

.budli-certified-cta {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.budli-certified-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #557ad4 0%, #375cb8 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(55, 92, 184, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.budli-certified-cta a:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(55, 92, 184, 0.28);
}

.budli-impact-card__body {
    display: flex;
    flex-direction: column;
}

.budli-impact-card__num {
    margin: 0 0 4px;
    color: #344274;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.budli-impact-card__label {
    font-size: 17px;
}

.budli-certified-layout {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.budli-impact-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.budli-certified-visual img {
    max-width: 560px;
}

.budli-impact-visual img {
    max-width: 540px;
}

@media (max-width: 1199px) {

    .budli-certified-intro h2,
    .budli-impact-head h2 {
        font-size: 38px;
    }

    .budli-certified-intro p,
    .budli-impact-head p {
        font-size: 18px;
    }
}

@media (max-width: 991px) {

    .budli-certified-layout,
    .budli-impact-layout {
        grid-template-columns: 1fr;
    }

    .budli-certified-grid {
        order: 2;
    }

    .budli-certified-visual {
        order: 1;
        margin-bottom: 6px;
    }

    .budli-impact-grid {
        order: 1;
    }

    .budli-impact-visual {
        order: 2;
    }
}

@media (max-width: 767px) {

    .budli-home__section--certified,
    .budli-home__section--impact {
        padding: 34px 0 26px;
    }

    .budli-certified-shell,
    .budli-impact-shell {
        padding: 24px 18px 24px;
        border-radius: 24px;
    }

    .budli-certified-intro__badge {
        width: 74px;
        height: 74px;
    }

    .budli-certified-intro h2,
    .budli-impact-head h2 {
        font-size: 31px;
    }

    .budli-certified-intro p,
    .budli-impact-head p {
        font-size: 17px;
    }

    .budli-certified-card,
    .budli-impact-card {
        padding: 16px 14px;
        border-radius: 20px;
        gap: 14px;
    }

    .budli-certified-card__icon,
    .budli-impact-card__icon,
    .budli-certified-card__icon img,
    .budli-impact-card__icon img {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

    .budli-impact-card__num {
        font-size: 28px;
    }
}

@media (max-width: 575px) {

    .budli-certified-intro h2,
    .budli-impact-head h2 {
        font-size: 27px;
    }

    .budli-certified-intro p,
    .budli-impact-head p {
        font-size: 15px;
    }

    .budli-certified-card__body h3,
    .budli-impact-card__label {
        font-size: 16px;
    }

    .budli-impact-card__num {
        font-size: 24px;
    }

    .budli-certified-card__body p,
    .budli-impact-card__body p {
        font-size: 13px;
    }
}

/* Homepage Visibility + Award Polish */

.budli-home__section--digit-award {
    background: var(--budli-light);
    padding: 24px 0;
    border-top: 1px solid var(--budli-border);
    border-bottom: 1px solid var(--budli-border);
}

.budli-home__section--digit-award {
    width: 100%;
    position: relative;
    z-index: 5;
}

.budli-digit-award-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    width: 100%;
    padding: 14px 28px;
    border-radius: 0;
    background: #c10077;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 12px rgba(193, 0, 119, 0.15);
    transition: all 0.2s ease;
}

.budli-digit-award-banner:hover {
    background: #a80068;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(193, 0, 119, 0.25);
    transform: translateY(-1px);
}

.budli-digit-award-banner span {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.budli-award-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.budli-award-modal.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.budli-award-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.budli-award-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    padding: 22px;
    border-radius: 28px;
    border: 1px solid rgba(220, 227, 239, 0.9);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 28px 64px rgba(15, 23, 42, 0.24);
    transform: translateY(10px) scale(0.98);
    transition: transform 0.24s ease;
}

.budli-award-modal.is-visible .budli-award-modal__dialog {
    transform: translateY(0) scale(1);
}

.budli-award-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #1e293b;
    font-size: 28px;
    line-height: 1;
    text-decoration: none;
}

.budli-award-modal__dialog h3 {
    margin: 0 0 18px;
    padding-right: 40px;
    color: #344274;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.budli-award-modal__dialog img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 76vh;
    object-fit: contain;
    border-radius: 20px;
    background: #ffffff;
}

/* Mobile Responsive Modal Overrides (Compact Card Style) */
@media (max-width: 575px) {
    .budli-award-modal {
        padding: 10px;
    }

    .budli-award-modal__dialog {
        width: 94%;
        padding: 12px;
        border-radius: 16px;
    }

    .budli-award-modal__dialog h3 {
        font-size: 15px;
        margin-bottom: 8px;
        padding-right: 32px;
        line-height: 1.2;
    }

    .budli-award-modal__close {
        width: 30px;
        height: 30px;
        top: 8px;
        right: 8px;
        font-size: 20px;
    }

    .budli-award-modal__dialog img {
        border-radius: 8px;
        max-height: 45vh;
    }
}

.budli-home__section--guides {
    background:
        radial-gradient(circle at top left, rgba(193, 0, 119, 0.05), transparent 34%),
        radial-gradient(circle at top right, rgba(4, 116, 180, 0.06), transparent 30%),
        #f8fafc;
}

.budli-home__section--guides .budli-home__section-head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.budli-home__section--guides .budli-home__section-head,
.budli-home__section--shopbybrand .budli-shopbrand-head {
    margin-bottom: 2px;
}

.budli-guides-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
    margin-top: 1px;
    scroll-snap-type: x mandatory;
}

.budli-guides-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 16px;
}

.budli-guide-card {
    min-height: 220px;
    height: 100%;
    padding: 20px 18px 18px;
    border-radius: 24px;
    border-color: #e6edf6;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.budli-guide-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff3f8 0%, #f4f8ff 100%);
}

.budli-guide-card__icon img {
    width: 30px;
    height: 30px;
}

.budli-guide-card__title {
    font-size: 17px;
    color: #1f2e58;
}

.budli-guide-card__sub {
    font-size: 13px;
    color: #64748b;
}

.budli-guide-card__cta {
    margin-top: auto;
    font-size: 12px;
}

.budli-home__section--shopbybrand {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.budli-shopbrand-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding-bottom: 20px;
}

.budli-shopbrand-grid::-webkit-scrollbar {
    display: none;
}

.budli-shopbrand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    padding: 24px 16px 20px;
    gap: 14px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #edf2fb;
    box-shadow: 0 4px 16px rgba(52, 66, 116, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.budli-shopbrand-item:hover {
    transform: translateY(-4px);
    border-color: rgba(4, 116, 180, 0.22);
    box-shadow: 0 12px 28px rgba(4, 116, 180, 0.10);
}

.budli-shopbrand-item__logo img {
    width: auto;
    height: 120px;
    object-fit: contain;
    filter: grayscale(15%);
    transition: filter 0.2s ease, transform 0.2s ease;
}

.budli-shopbrand-item:hover .budli-shopbrand-item__logo img {
    filter: grayscale(0%);
    transform: scale(1.06);
}

.budli-shopbrand-item__name {
    color: #344274;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
}

.budli-home__section--certified,
.budli-home__section--impact {
    padding: 60px 0 48px;
    background:
        radial-gradient(circle at 10% 14%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 22%),
        radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 24%),
        linear-gradient(160deg, #eef4ff 0%, #d8e6fe 100%);
}

.budli-certified-shell,
.budli-impact-shell {
    padding: 40px 36px 36px;
    border-radius: 32px;
    border: 1px solid rgba(162, 185, 231, 0.45);
    box-shadow: 0 28px 64px rgba(52, 66, 116, 0.11), 0 4px 16px rgba(52, 66, 116, 0.06);
}

.budli-certified-shell::after,
.budli-impact-shell::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(4, 116, 180, 0.10), rgba(4, 116, 180, 0) 70%);
    pointer-events: none;
}

.budli-certified-intro,
.budli-impact-head {
    margin-bottom: 32px;
}

.budli-certified-intro__badge {
    width: 80px;
    height: 80px;
    margin-bottom: 14px;
    filter: drop-shadow(0 10px 20px rgba(70, 110, 184, 0.20));
}

.budli-certified-intro h2,
.budli-impact-head h2 {
    color: #1e2d5e;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.budli-certified-intro p,
.budli-impact-head p {
    margin-top: 12px;
    color: #4f5f90;
    font-size: 17px;
    line-height: 1.65;
}

.budli-certified-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.budli-impact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.budli-certified-grid,
.budli-impact-grid {
    gap: 20px;
}

.budli-certified-card,
.budli-impact-card {
    padding: 22px 24px;
    gap: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(184, 205, 241, 0.55);
    box-shadow: 0 8px 24px rgba(80, 112, 180, 0.08);
}

.budli-certified-card__icon,
.budli-impact-card__icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(238, 244, 255, 0.9), rgba(220, 232, 254, 0.7));
    border: 1px solid rgba(184, 205, 241, 0.4);
}

.budli-certified-card__icon img,
.budli-impact-card__icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.budli-certified-card__body h3,
.budli-impact-card__label {
    color: #1e2d5e;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.budli-certified-card__body p,
.budli-impact-card__body p {
    color: #5c6b96;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 5px;
}

.budli-impact-card__num {
    color: #1e2d5e;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 4px;
}

.budli-impact-card__label {
    font-size: 14px;
    font-weight: 600;
    color: #4f5f90;
    line-height: 1.4;
}

.budli-certified-visual img {
    max-width: 520px;
    filter: drop-shadow(0 20px 40px rgba(52, 66, 116, 0.12));
}

.budli-impact-visual img {
    max-width: 500px;
    filter: drop-shadow(0 20px 40px rgba(52, 66, 116, 0.12));
}

@media (max-width: 1199px) {
    /* Side-scrolling handled via flex track */
}

@media (max-width: 991px) {

    /* Side-scrolling handled via flex track */
    .budli-home__section--guides .budli-home__section-head--split {
        display: block;
    }

    .budli-certified-shell,
    .budli-impact-shell {
        padding: 28px 24px 26px;
    }

    .budli-certified-layout,
    .budli-impact-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .budli-certified-intro h2,
    .budli-impact-head h2 {
        font-size: 36px;
    }

    .budli-certified-intro p,
    .budli-impact-head p {
        font-size: 17px;
    }
}

@media (max-width: 767px) {

    /* Side-scrolling handled via flex track */
    .budli-home__section--digit-award {
        padding-bottom: 0px;
    }

    .budli-shopbrand-item__logo {
        min-height: 64px;
        padding: 12px;
        border-radius: 16px;
    }

    .budli-shopbrand-item__logo img {
        height: 36px;
        max-width: min(112px, 100%);
    }

    .budli-home__section--certified,
    .budli-home__section--impact {
        padding: 38px 0 28px;
    }

    .budli-certified-shell,
    .budli-impact-shell {
        padding: 24px 18px 22px;
        border-radius: 24px;
    }

    .budli-certified-intro__badge {
        width: 64px;
        height: 64px;
    }

    .budli-certified-intro h2,
    .budli-impact-head h2 {
        font-size: 30px;
    }

    .budli-certified-intro p,
    .budli-impact-head p {
        font-size: 15px;
    }

    .budli-certified-grid,
    .budli-impact-grid {
        gap: 14px;
        order: 2;
    }

    .budli-certified-visual,
    .budli-impact-visual {
        order: 1;
        margin-bottom: 16px;
    }
}

@media (max-width: 479px) {
    .budli-guides-track {
        grid-template-columns: 1fr;
    }

    .budli-digit-award-banner {
        padding: 16px 20px;
    }

    .budli-digit-award-banner span {
        font-size: 16px;
        line-height: 1.4;
    }
}

@media (max-width: 479px) {
    .budli-guides-track {
        grid-template-columns: 1fr;
    }

    .budli-digit-award-banner {
        padding: 16px 20px;
    }

    .budli-digit-award-banner span {
        font-size: 16px;
        line-height: 1.4;
    }
}

/* --- PREMIUM HERO SECTION STYLES --- */
.export-wrapper {
    --background: #f8f9fc;
    --foreground: #202945;
    --text-muted: #4b5563;
    --primary: #3b71ca;
    --primary-foreground: #ffffff;
    --secondary: #d84c8f;
    --secondary-foreground: #ffffff;
    --card: #ffffff;
    --border: #e5e7eb;
    --radius-md: 6px;
    --radius-lg: 12px;
    --font-family-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";

    width: 100%;
    position: relative;
    background-color: var(--background);
}

.hero-container {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    /* Desktop keeps hidden for glows */
    padding: 10px 40px 10px;
    z-index: 1;
}

.bg-decorator {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 1);
    top: -100px;
    left: -100px;
}

.bg-glow-2 {
    width: 800px;
    height: 800px;
    background: rgba(228, 237, 255, 0.4);
    bottom: 0;
    right: -200px;
}

.content-wrapper {
    width: 100%;
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-grid {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    min-height: 360px;
}

/* Text sits on the left, image is behind on the right */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding-right: 40px;
}

.hero-text .headline {
    font-size: 40px;
    font-weight: 700;
    color: var(--foreground);
    font-family: var(--font-family-body);
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.hero-text .subheadline {
    font-size: 20px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.hero-action-buttons {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    text-decoration: none;
}

.hero-btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 14px rgba(59, 113, 202, 0.25);
}

.hero-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(59, 113, 202, 0.35);
}

.hero-btn-secondary {
    background-color: #bc1c5c;
    color: var(--secondary-foreground);
    box-shadow: 0 4px 14px rgba(216, 76, 143, 0.25);
}

.hero-btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(216, 76, 143, 0.35);
}

.trusted-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 18px;
    color: var(--foreground);
    font-weight: 500;
}

.hero-stats-proof {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin: 40px auto 24px;
    display: none;
    /* Hidden on PC view */
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-image {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 650px;
    height: 90%;
    z-index: 1;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
}

.trust-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1240px;
    overflow: hidden;
    margin: auto;
    position: relative;
    z-index: 10;
}

.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.trust-row.top {
    padding: 8px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.trust-row.bottom {
    padding: 6px 24px;
    background: #f4f6fb;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item span {
    white-space: nowrap;
}

.trust-row.bottom .trust-item {
    font-size: 18px;
    color: #1a1b2d;
    font-weight: 600;
}

.divider-v {
    width: 1px;
    height: 32px;
    background-color: var(--border);
}

.trust-row.bottom .divider-v {
    height: 20px;
}

.divider-h {
    width: 100%;
    height: 1px;
    background-color: var(--border);
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ═══════════════════════════════════════════════════
   HERO — PC LAYOUT OVERRIDES (≥ 992px)
   Mobile/tablet rules in home.css are untouched.
════════════════════════════════════════════════════ */
@media (min-width: 992px) {

    .export-wrapper {
        background: #f8f9fc;
    }

    /* Remove excess vertical space from container */
    .hero-container {
        min-height: unset;
        padding: 32px 40px 0;
        align-items: center;
        justify-content: center;
    }

    /* Content wrapper — tighten gap between grid and trust card */
    .content-wrapper {
        max-width: 1280px;
        gap: 20px;
    }

    /* ── 2-column proper grid — image is a real column, not absolute ── */
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 45%;
        align-items: center;
        min-height: unset;
        gap: 0;
        width: 100%;
    }

    /* Left column — text */
    .hero-text {
        max-width: 100%;
        padding-right: 48px;
        gap: 14px;
    }

    .hero-text .headline {
        font-size: 42px;
        line-height: 1.12;
        letter-spacing: -0.5px;
        white-space: normal;
    }

    .hero-text .subheadline {
        font-size: 18px;
        line-height: 1.6;
        color: var(--text-muted);
        max-width: 480px;
    }

    .hero-action-buttons {
        margin-top: 6px;
        gap: 12px;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .trusted-badge {
        margin-top: 10px;
        font-size: 15px;
        opacity: 0.8;
    }

    /* Right column — image now occupies real grid space */
    .hero-image {
        position: relative;
        right: unset;
        top: unset;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: 100%;
        min-height: 340px;
        z-index: 1;
        pointer-events: none;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        max-height: 400px;
        object-fit: contain;
        object-position: center bottom;
        display: block;
    }

    /* Trust card — compact and full-width */
    .trust-card {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    }

    .trust-row.top {
        padding: 10px 28px;
    }

    .trust-row.bottom {
        padding: 8px 28px;
    }

    .trust-item {
        font-size: 15px;
        gap: 10px;
    }

    .trust-row.bottom .trust-item {
        font-size: 15px;
        font-weight: 600;
    }

    .trust-item iconify-icon {
        font-size: 18px;
        flex-shrink: 0;
    }

    .divider-v {
        height: 26px;
    }

    .trust-row.bottom .divider-v {
        height: 18px;
    }
}

@media (min-width: 1200px) {
    .hero-container {
        padding: 36px 48px 0;
    }

    .hero-text .headline {
        font-size: 46px;
    }

    .hero-text .subheadline {
        font-size: 19px;
    }

    .hero-image img {
        max-height: 440px;
    }
}

@media (max-width: 991px) {
    .export-wrapper {
        min-height: auto;
        padding-bottom: 0px;
    }

    .hero-container {
        min-height: auto;
        padding: 0 20px;
    }

    .hero-grid {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        gap: 0px;
    }

    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 320px;
        height: auto;
        order: -1;
        /* Image on top */
        display: none !important;
        margin: 0 auto;
    }

    .hero-text {
        align-items: center;
        max-width: 100%;
        padding-right: 0;
        gap: 8px;
        padding-bottom: 0;
    }

    .hero-text .headline {
        font-size: 26px;
        white-space: normal;
        line-height: 1.1;
        font-weight: 800;
        letter-spacing: -0.5px;
    }

    .hero-text .subheadline {
        font-size: 16px;
        line-height: 1.5;
        color: var(--text-muted);
    }

    .hero-action-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin-top: 12px;
    }

    .hero-btn {
        width: 100%;
        height: 52px;
        padding: 0;
        font-size: 16px;
        font-weight: 600;
        border-radius: var(--radius-md);
    }

    .trusted-badge {
        justify-content: center;
        margin-top: 8px;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .hero-container {
        overflow: hidden;
        /* Restore clipping to stop side-scroll overflow from glows */
        min-height: auto;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .trust-card {
        margin-top: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--border);
        background: #ffffff;
        width: 100%;
        display: block !important;
        position: relative;
        z-index: 50;
        /* Ensure it stays on top */
        overflow: visible;
        border-radius: var(--radius-md);
    }

    .trust-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 20px;
        scrollbar-width: none;
    }

    .trust-row::-webkit-scrollbar {
        display: none;
    }

    .trust-row.top {
        padding: 20px;
    }

    .trust-item {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    @media (max-width: 768px) {
        .trust-row {
            flex-wrap: wrap;
            justify-content: center;
        }

        /* 2x2 Grid for TOP row */
        .trust-row.top {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            text-align: center;
            padding: 20px;
        }

        .trust-row.top .trust-item {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            white-space: normal;
        }

        /* Hide dividers in mobile */
        .divider-v {
            display: none !important;
        }

        .trust-row.bottom .trust-item {
            font-size: 16px;
            font-weight: 600;
            color: #1a1b2d;
        }
    }

    .budli-digit-award-banner {
        padding: 5px 10px;
        min-height: auto;
    }

    .budli-digit-award-banner span {
        font-size: 14px;
    }

    .budli-home__section--category {
        padding-top: 0;
    }
}

@media (max-width: 575px) {
    .hero-text .headline {
        font-size: 24px;
    }

    .hero-text .subheadline {
        font-size: 16px;
    }

    .hero-image {
        display: none !important;
    }
}

/* --- Trusted & Certified Platform Section --- */
.budli-trust-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 20px 32px;
    background: linear-gradient(180deg, #f0f4ff 0%, #e8eeff 100%);
}

.budli-trust-platform__link-wrapper {
    text-decoration: none !important;
    display: block;
    width: 100%;
}

.budli-trust-platform__link-wrapper:hover {
    text-decoration: none !important;
}

.budli-trust-platform__inner {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.budli-trust-platform__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 52px;
    text-align: center;
}

.budli-trust-platform__title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
    width: 100%;
    text-align: center;
}

.budli-trust-platform__shield-wrap {
    width: 40px;
    height: 40px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
}

.budli-trust-platform__shield-wrap svg {
    margin: 0 !important;
    /* Override inline margin:auto */
    display: block !important;
}

.budli-trust-platform__main-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a2035;
    letter-spacing: -0.5px;
    line-height: 1;
    /* Tighter line-height for accurate vertical centering */
    margin: 0;
    text-align: left;
}

.budli-trust-platform__subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 400;
    margin: 0;
}

.budli-trust-platform__cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.budli-trust-platform__card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 32px -6px rgba(59, 130, 246, 0.13),
        0 1px 4px rgba(59, 130, 246, 0.06);
    transition: all 0.3s ease;
}

.budli-trust-platform__icon-bubble {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.budli-trust-platform__sp {
    position: absolute;
    border-radius: 50%;
}

.budli-trust-platform__badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: #22c55e;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.35);
}

.budli-trust-platform__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2035;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.budli-trust-platform__divider {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 10px;
}

.budli-trust-platform__card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    padding: 0 4px;
}

@media (max-width: 900px) {
    .budli-trust-platform__cards-row {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding: 5px 20px 20px;
        margin: 0 -32px;
        padding-left: 32px;
        padding-right: 32px;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 32px;
        /* Matches section padding */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .budli-trust-platform__cards-row::after {
        content: "";
        display: block;
        min-width: 16px;
        flex-shrink: 0;
    }

    .budli-trust-platform__cards-row::-webkit-scrollbar {
        display: none;
    }

    /* Show 2 cards per view on tablet */
    .budli-trust-platform__card {
        flex: 0 0 calc(50% - 24px);
        scroll-snap-align: start;
        min-height: auto;
    }

    .budli-trust-platform__main-title {
        font-size: 28px;
    }
}

@media (max-width: 520px) {
    .budli-trust-platform {
        padding: 24px 16px;
    }

    .budli-trust-platform__header {
        margin-bottom: 2px;
    }

    /* Cards row: full-bleed with internal padding */
    .budli-trust-platform__cards-row {
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 4px;
        padding-bottom: 16px;
        gap: 10px;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 16px;
        /* align snap to padding edge */
        -webkit-overflow-scrolling: touch;
    }

    /* Exactly 2 cards visible, 1 card snap per swipe */
    .budli-trust-platform__card {
        flex: 0 0 calc(50vw - 21px);
        /* Exactly fills screen minus 16px paddings and 10px gap */
        scroll-snap-align: start;
        padding: 14px 8px 12px;
        min-height: auto;
        border-radius: 16px;
    }

    .budli-trust-platform__icon-bubble {
        width: 80px;
        height: 80px;
        margin-bottom: 8px;
    }

    .budli-trust-platform__icon-bubble svg,
    .budli-trust-platform__icon-bubble img {
        width: 65px;
        height: 65px;
    }

    .budli-trust-platform__badge {
        width: 20px;
        height: 20px;
        bottom: 4px;
        right: 4px;
    }

    .budli-trust-platform__card-title {
        font-size: 12px;
        min-height: auto;
        margin-bottom: 8px;
    }

    .budli-trust-platform__card-desc {
        font-size: 11px;
        line-height: 1.5;
    }

    .budli-trust-platform__main-title {
        font-size: 20px;
    }

    /* Slider arrow buttons */
    .budli-trust-platform .budli-slider-btn {
        display: flex !important;
        width: 30px;
        height: 30px;
        font-size: 16px;
        z-index: 10;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .budli-trust-platform .budli-slider-btn--prev {
        left: 2px;
    }

    .budli-trust-platform .budli-slider-btn--next {
        right: 2px;
    }
}

/* ══════════════════════════════════════════════════
   ENVIRONMENTAL IMPACT — DESKTOP REDESIGN (PC View)
   Targets default/desktop styles only
   ══════════════════════════════════════════════════ */

.ei-section {
    background: linear-gradient(160deg, #f0fdf4 0%, #ffffff 60%) !important;
    padding: 36px 0 !important;
    border-bottom: 1px solid #e2e8f0;
}

.ei-container {
    max-width: 960px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* ── Header ── */
.ei-header {
    text-align: center !important;
    margin-bottom: 32px !important;
}

.ei-title {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1a3c2e !important;
    margin: 0 0 8px 0 !important;
    letter-spacing: -0.3px !important;
}

.ei-subtitle {
    font-size: 15px !important;
    color: #64748b !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* ── Grid: stretch both columns to equal height ── */
.ei-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 40px !important;
    align-items: stretch !important;
    /* KEY: both columns same height */
}

/* ── Left: stats fill full height evenly ── */
.ei-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    /* KEY: distribute stats top to bottom */
    gap: 0 !important;
    padding: 4px 0 !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    height: 100% !important;
}

.ei-stat {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    margin-bottom: 0 !important;
    padding: 14px 20px !important;
    border-radius: 14px !important;
    flex: 1 !important;
    /* KEY: each stat takes equal share of height */
    justify-content: center !important;
    transition: background 0.2s ease !important;
}

.ei-stat:hover {
    background: #f8fffe !important;
}

.ei-stat+.ei-stat {
    border-top: 1px solid #e8f5e9 !important;
}

.ei-stat:last-child {
    margin-bottom: 0 !important;
}

/* ── Pill ── */
.ei-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #f0fdf4 !important;
    border: 1.5px solid #bbf7d0 !important;
    border-radius: 999px !important;
    padding: 5px 14px 5px 10px !important;
    margin-bottom: 8px !important;
}

.ei-pill-number {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #14532d !important;
    letter-spacing: -0.5px !important;
    line-height: 1 !important;
}

.ei-pill-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    height: 22px !important;
    background: #dcfce7 !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
}

.ei-pill-icon img,
.ei-pill-icon svg,
.ei-pill-icon iconify-icon {
    width: 13px !important;
    height: 13px !important;
    font-size: 13px !important;
    display: block !important;
    object-fit: contain !important;
}

.ei-stat-title {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

.ei-stat-desc {
    font-size: 13px !important;
    color: #64748b !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* ── Right: visuals card fills full height ── */
.ei-visuals {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    height: 100% !important;
    background: #f0fdf4 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    border: 1px solid #d1fae5 !important;
}

.ei-image-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    line-height: 0 !important;
    flex: 1 !important;
    /* KEY: image area grows to fill remaining space */
    background: #f0fdf4 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.ei-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    /* full image, no crop */
    object-position: center center !important;
    display: block !important;
    background: #f0fdf4 !important;
}

.ei-quote-container {
    padding: 18px 22px !important;
    width: 100% !important;
    background: #ffffff !important;
    border-top: 1px solid #d1fae5 !important;
    flex-shrink: 0 !important;
    /* quote panel stays fixed height */
}

.ei-quote {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #14532d !important;
    margin: 0 0 5px 0 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.2px !important;
}

.ei-tagline {
    font-size: 13px !important;
    color: #64748b !important;
    margin: 0 !important;
    font-weight: 400 !important;
}



/* --- Budli Certified Section V2 --- */
.budli-certified-v2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.budli-certified-v2__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}

.budli-certified-v2__header {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.budli-certified-v2__shield-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #3b82f6;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 3px solid #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-1rem);
}

.budli-certified-v2__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2a3c66;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .budli-certified-v2__title {
        font-size: 32px;
        /* Standardized H2 size */
    }
}

.budli-certified-v2__subtitle {
    color: #5a6c8a;
    max-width: 42rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.625;
    margin: 0;
}

@media (min-width: 768px) {
    .budli-certified-v2__subtitle {
        font-size: 1.125rem;
    }
}

.budli-certified-v2__content {
    position: relative;
    z-index: 10;
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .budli-certified-v2__content {
        padding-left: 4rem;
    }
}

.budli-certified-v2__grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

@media (min-width: 991px) {
    .budli-certified-v2__grid {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .budli-certified-v2__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .budli-certified-v2__card {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .budli-certified-v2__icon-box {
        margin-right: 0;
        margin-bottom: 8px;
    }
}

.budli-certified-v2__card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px -10px rgba(43, 76, 126, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    transition: transform 300ms;
}

.budli-certified-v2__card:hover {
    transform: translateY(-0.25rem);
}

.budli-certified-v2__icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    position: relative;
}

.budli-certified-v2__badge {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    background-color: #fff;
    border-radius: 9999px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.budli-certified-v2__text-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.125rem 0;
}

.budli-certified-v2__text-box p {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   MODERN HOMEPAGE SECTIONS V3 (Integrated from Design Snippet)
   ───────────────────────────────────────────────────────────────────────────── */
.budli-modern-v3 {
    width: 100%;
    position: relative;
    font-family: 'Inter', sans-serif;
    background: #eff5fc;
    color: #1e293b;
    padding-top: 10px;
}

.budli-modern-v3 * {
    box-sizing: border-box;
}

.budli-modern-v3 .page-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Reduced from 32px */
}

.budli-modern-v3 .section-title {
    text-align: center;
    font-size: 32px;
    /* Standardized H2 size */
    font-weight: 700;
    color: #1e293b;
}

@media (max-width: 768px) {
    .budli-modern-v3 .section-title {
        font-size: 26px;
        /* Standardized mobile H2 */
    }
}

/* How It Works Wrapper */
.budli-modern-v3 .how-it-works-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    /* Increased back slightly for balance, but total section gap is lower */
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

.budli-modern-v3 .how-it-works-title {
    text-align: center;
    font-size: 32px;
    /* Standardized H2 size */
    font-weight: 700;
    color: #1e293b;
}

@media (max-width: 768px) {
    .budli-modern-v3 .how-it-works-title {
        font-size: 26px;
    }
}

.budli-modern-v3 .panels-container {
    display: flex;
    gap: 24px;
}

.budli-modern-v3 .panel {
    flex: 1;
    border-radius: 20px;
    padding: 20px 24px 24px;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.budli-modern-v3 .panel-sellers {
    background: linear-gradient(135deg, #fcebfa 0%, #f4dced 100%);
}

.budli-modern-v3 .panel-buyers {
    background: linear-gradient(135deg, #e4f0fd 0%, #d4e8fa 100%);
}

.budli-modern-v3 .panel-header {
    text-align: center;
    font-size: 16px;
    /* Slightly smaller eyebrow */
    font-weight: 600;
    margin-bottom: 20px;
    /* Reduced gap */
    color: #1e293b;
    z-index: 2;
}

.budli-modern-v3 .panel-body {
    display: flex;
    flex: 1;
    position: relative;
    z-index: 2;
}

.budli-modern-v3 .panel-left {
    flex: 0 0 70%;
    /* Give more space to text */
    position: relative;
    z-index: 2;
}

.budli-modern-v3 .panel-title {
    margin-top: 0;
    margin-bottom: 8px;
    color: #1e293b;
}

.budli-modern-v3 .panel-description {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
    /* Reduced margin */
}

.budli-modern-v3 .panel-right {
    position: absolute;
    right: -20px;
    bottom: -32px;
    width: 55%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.budli-modern-v3 .panel-right img {
    width: 100%;
    max-height: 120%;
    object-fit: contain;
}

.budli-modern-v3 .steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Reduced from 20px */
    margin-bottom: 24px;
    /* Reduced from 36px */
}

.budli-modern-v3 .step-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.budli-modern-v3 .step-icon-wrapper {
    width: 28px;
    /* Slightly smaller icons */
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.budli-modern-v3 .step-number {
    font-size: 11px;
    font-weight: 700;
}

.budli-modern-v3 .panel-sellers .step-icon-wrapper {
    background: #ffffff;
    color: #a43585;
    box-shadow: 0 2px 8px rgba(164, 53, 133, 0.12);
}

.budli-modern-v3 .panel-buyers .step-icon-wrapper {
    background: #ffffff;
    color: #1863a6;
    box-shadow: 0 2px 8px rgba(24, 99, 166, 0.12);
}

.budli-modern-v3 .step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.budli-modern-v3 .step-text-title {
    font-size: 16px;
    /* Professional item title size */
    font-weight: 600;
    color: #1e293b;
}

.budli-modern-v3 .step-text-sub {
    font-size: 14px;
    /* Increased from 11px for accessibility */
    color: #64748b;
    line-height: 1.5;
}

.budli-modern-v3 .panel-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.budli-modern-v3 .btn {
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.budli-modern-v3 .btn-primary-seller {
    background: #a43585;
    color: white;
}

.budli-modern-v3 .btn-secondary-seller {
    background: white;
    color: #d13c5a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.budli-modern-v3 .btn-primary-buyer {
    background: #1863a6;
    color: white;
}

.budli-modern-v3 .btn-secondary-buyer {
    background: white;
    color: #1863a6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.budli-modern-v3 .section-head {
    margin-bottom: 0px;
}

/* Featured Deals */
.budli-modern-v3 .deals-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.budli-modern-v3 .deal-card {
    background: white;
    border-radius: 12px;
    padding: 20px 16px;
    /* Slightly more padding for balance */
    flex: 1;
    min-width: 200px;
    /* Ensure cards don't get too thin on smaller desktops */
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.budli-modern-v3 .deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.budli-modern-v3 .deal-image-wrapper {
    width: 100%;
    height: 100px;
    /* Reduced from 120px */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.budli-modern-v3 .deal-image-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    /* Professional image display */
    transition: transform 0.3s ease;
}

.budli-modern-v3 .deal-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #1e293b;
}

.budli-modern-v3 .deal-sub {
    font-size: 11px;
    color: #64748b;
    margin: 0 0 20px 0;
    line-height: 1.4;
    min-height: 30px;
}

/* Responsive Improvements (Updated for Horizontal Sliders) */
@media (max-width: 1024px) {
    .budli-modern-v3 .page-container {
        gap: 8px;
    }

    .budli-modern-v3 .panels-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 16px;
        padding-bottom: 8px;
        margin: 0 -24px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    .budli-modern-v3 .panels-container::-webkit-scrollbar {
        display: none;
    }

    .budli-modern-v3 .panel {
        flex: 0 0 88% !important;
        /* Forces side-peeking */
        width: auto !important;
        scroll-snap-align: start;
        margin-bottom: 0 !important;
    }

    /* Mobile Horizontal Slider */
    .budli-modern-v3 .deals-grid,
    .budli-modern-v3 .trust-grid {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 5px 0 20px;
        margin: 0 -20px;
        padding-left: 20px;
        /* Reverted from 150px */
        padding-right: 20px;
        gap: 12px;
        justify-content: flex-start !important;
        /* CRITICAL: Fixed bug where centering hid the first cards */
        scroll-snap-type: x mandatory;
        scroll-padding: 0 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    /* Spacer elements to ensure first and last items clear page margins */
    .budli-modern-v3 .deals-grid::before,
    .budli-modern-v3 .trust-grid::before {
        content: "";
        display: block;
        min-width: 0px;
        flex-shrink: 0;
    }

    .budli-modern-v3 .deals-grid::after,
    .budli-modern-v3 .trust-grid::after {
        content: "";
        display: block;
        min-width: 12px;
        flex-shrink: 0;
    }

    .budli-modern-v3 .deals-grid::-webkit-scrollbar,
    .budli-modern-v3 .trust-grid::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .budli-modern-v3 .deal-card,
    .budli-modern-v3 .trust-card {
        flex: 0 0 200px;
        scroll-snap-align: start;
        /* Changed from center for better margin alignment */
        padding: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        flex-shrink: 0;
    }

    .budli-modern-v3 .trust-card {
        flex: 0 0 240px;
        /* Trust cards need slightly more width for text */
    }

    .budli-modern-v3 .deal-image-wrapper {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .budli-modern-v3 {
        padding: 2px 0;
    }

    .budli-modern-v3 .section-title,
    .budli-modern-v3 .how-it-works-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .budli-modern-v3 .panel-body {
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .budli-modern-v3 .hero-container {
        padding: 0 16px;
        /* Reduced from 40px to stop side-scroll overflow */
    }

    .budli-modern-v3 .page-container {
        gap: 4px;
    }

    .budli-modern-v3 .deal-card {
        flex: 0 0 160px;
        /* Smaller deals on mobile */
    }

    .budli-modern-v3 .trust-card {
        flex: 0 0 220px;
    }

    .budli-modern-v3 .deal-image-wrapper {
        height: 70px;
    }

    .budli-modern-v3 .panel-header {
        font-size: 15px;
        padding: 10px 16px;
        margin-bottom: 16px;
    }

    .budli-modern-v3 .panel-left {
        flex: 0 0 100%;
    }

    .budli-modern-v3 .panels-container {
        margin: 0 -20px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .budli-modern-v3 .panel {
        flex: 0 0 88% !important;
    }

    .budli-modern-v3 .panel-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .budli-modern-v3 .btn {
        justify-content: center;
    }
}

.budli-modern-v3 .deal-price {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.budli-modern-v3 .deal-price-amount {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.budli-modern-v3 .deal-price-blue {
    color: #1863a6;
}

.budli-modern-v3 .deal-price-pink {
    color: #d13c5a;
}

/* Deals & Trust Slider Layouts */
.budli-modern-v3 .deals-grid,
.budli-modern-v3 .trust-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 16px !important;
    padding: 10px 5px 30px !important;
    margin: 0 !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    -webkit-overflow-scrolling: touch !important;
}

.budli-modern-v3 .deals-grid::-webkit-scrollbar,
.budli-modern-v3 .trust-grid::-webkit-scrollbar {
    display: none !important;
}

.budli-modern-v3 .trust-grid {
    max-width: 1320px;
    margin: 0 auto !important;
}

/* ── PC-ONLY: Why Trust Budli — equal width/height cards in a single row, centered heading ── */
@media (min-width: 992px) {
    .budli-modern-v3 .trust-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: visible !important;
        overflow: visible !important;
        scroll-snap-type: none !important;
        scrollbar-width: auto !important;
        align-items: stretch !important;
        gap: 20px !important;
        padding: 10px 0 20px !important;
        justify-content: center !important;
    }

    /* Equal-width, equal-height cards */
    .budli-modern-v3 .trust-grid .trust-card {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        max-width: none !important;
        flex-shrink: 1 !important;
        scroll-snap-align: none !important;
        align-self: stretch !important;
        height: auto !important;
        min-height: 120px !important;
        box-sizing: border-box !important;
    }

    /* Center the section heading on PC */
    .budli-modern-v3 .section-head--center,
    .budli-modern-v3 .section-head.section-head--center {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 20px !important;
    }

    .budli-modern-v3 .section-head--center .section-title,
    .budli-modern-v3 .section-head.section-head--center .section-title {
        text-align: center !important;
        margin: 0 auto 8px !important;
    }

    .budli-modern-v3 .section-head--center p,
    .budli-modern-v3 .section-head.section-head--center p {
        text-align: center !important;
        color: #64748b;
        font-size: 16px;
        margin: 0;
    }
}

.budli-modern-v3 .trust-card {
    background: white;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: inherit !important;
}

.budli-modern-v3 .trust-card.is-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    background: #f8fbff;
    border: 1px solid #e0e8ff;
}

.budli-modern-v3 .trust-card.is-link:active {
    transform: translateY(-2px);
}

.budli-modern-v3 .trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.budli-modern-v3 .trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.budli-modern-v3 .trust-icon img,
.budli-modern-v3 .trust-icon iconify-icon,
.budli-modern-v3 .trust-icon svg {
    width: 64px;
    height: 64px;
    font-size: 64px;
    object-fit: contain;
}

.budli-modern-v3 .trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.budli-modern-v3 .trust-title {
    font-size: 16px;
    /* Consistent item title */
    font-weight: 600;
    margin: 0;
    color: #1e293b;
    line-height: 1.3;
}

.budli-modern-v3 .trust-sub {
    font-size: 14px;
    /* Increased from 11px for accessibility */
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}


/* Export Wrapper utility */
.export-wrapper {
    width: 100%;
    max-width: 100%;
}



.budli-modern-v3 .deal-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    background: #fff;
    border-radius: 12px;
    flex-shrink: 0;
}

.budli-modern-v3 .trust-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    padding: 24px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    background: #fff;
    border-radius: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}







/* ═══════════════════════════════════════════════════
   NEW SHOP BY BUDGET & GRADES UI
════════════════════════════════════════════════════ */
.shop-by-budget-section {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    background-color: #ffffff;
    font-family: var(--font-family-body, system-ui, -apple-system, sans-serif);
    width: 100%;
    margin-bottom: 0px;
}

.shop-by-budget-section .section-title {
    text-align: center;
    color: #b50079;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.budli-budget-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px 20px 20px;
    margin: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.budli-budget-row::-webkit-scrollbar {
    display: none;
}

.budli-budget-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #eaeaea;
    border-radius: 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.budli-budget-row::after {
    content: "";
    display: block;
    min-width: 4px;
    flex-shrink: 0;
}

.budli-budget-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.budli-device-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #0d71ab;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.budli-budget-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.budli-budget-text span {
    font-size: 12px;
    color: #6a7280;
    line-height: 1.2;
}

.budli-budget-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-top: 2px;
}

.budli-rupee {
    margin-right: 2px;
}



/* ═══════════════════════════════════════════════════
   NEW SHOP BY BRAND UI
════════════════════════════════════════════════════ */
.sbb-wrapper {
    width: 100%;
    margin-top: 10px;
    padding: 10px 24px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sbb-heading {
    font-size: 26px;
    font-weight: 700;
    color: #c21878;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.2;
}

.sbb-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    padding: 4px 4px 16px 4px;
    scroll-snap-type: x mandatory;
    justify-content: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.sbb-grid::-webkit-scrollbar {
    display: none;
}

.sbb-grid::after {
    content: "";
    display: block;
    min-width: 4px;
    flex-shrink: 0;
}

.sbb-card {
    flex: 0 0 96px;
    scroll-snap-align: start;
    width: 96px;
    border: 1px solid var(--border, #eaeaea);
    border-radius: var(--radius-lg, 8px);
    background-color: var(--background, #ffffff);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sbb-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sbb-logo-box {
    width: 100%;
    height: 72px;
    border: 1px solid var(--border, #eaeaea);
    border-radius: var(--radius-md, 6px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background, #ffffff);
    overflow: hidden;
}

.sbb-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: calc(var(--radius-md, 6px) - 2px);
}

.sbb-text-container {
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.sbb-text {
    font-size: 12px;
    color: var(--foreground, #111827);
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════
   COMPACT UI OVERRIDES — Mobile-first, space-efficient layout
   Matches reference: buy.budli.in
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero: tighten desktop ── */
.export-wrapper {
    background-color: #f8f9fc;
}

.hero-container {
    padding: 2px 0px 0;
    min-height: auto;
}

.content-wrapper {
    gap: 1px;
}

.hero-grid {
    /* min-height: 300px; */
    gap: 0;
}

.hero-text {
    gap: 10px;
}

.hero-text .headline {
    font-size: 36px;
    line-height: 1.15;
}

.hero-text .subheadline {
    font-size: 17px;
    line-height: 1.5;
}

.hero-action-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.hero-btn {
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 140px;
    max-width: 280px;
}

.trusted-badge {
    margin-top: 10px;
    font-size: 14px;
    gap: 7px;
}

/* ── Trust Card: compact grid ── */
.trust-card {
    margin-top: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.trust-row {
    gap: 0;
}

.trust-row.top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 10px 12px;
    background: #ffffff;
    gap: 0;
}

.trust-row.bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 8px 12px;
    background: #f4f6fb;
    gap: 0;
}

/* hide structural dividers — grid handles layout */
.trust-card .divider-h,
.trust-card .divider-v {
    display: none !important;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 4px;
    font-size: 14px;
    font-weight: 600;
    color: #202945;
    text-align: center;
    border-right: 1px solid rgba(229, 231, 235, 0.8);
    min-width: 0;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item span {
    white-space: normal;
    line-height: 1.3;
    word-break: break-word;
}

.trust-item iconify-icon {
    font-size: 24px !important;
    flex-shrink: 0;
}

.trust-row.bottom .trust-item {
    font-size: 20px;
    font-weight: 500;
    color: #555;
    gap: 4px;
    padding: 5px 4px;
}

.trust-row.bottom .trust-item iconify-icon {
    font-size: 20px !important;
}

/* ── Widget Panels: compact ── */
.budli-home__widgets-wrap {
    padding-top: 12px;
}

.budli-home__widget-title {
    font-size: 20px;
    margin: 0 0 12px;
}

.budli-home__widget-panel {
    padding: 0 20px 18px;
}

/* ── Digit Award: compact strip ── */
.budli-home__section--digit-award {
    background: #ffffff;
    padding: 0;
    margin: 0;
}

.budli-digit-award-banner {
    min-height: 42px;
    padding: 10px 24px;
}

.budli-digit-award-banner span {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ══ TABLET (max 991px) ══ */
@media (max-width: 991px) {

    .hero-container {
        padding: 16px 16px 0;
    }

    .content-wrapper {
        gap: 16px;
    }

    .hero-grid {
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .hero-image {
        display: block !important;
        position: relative !important;
        width: 45% !important;
        max-width: 250px !important;
        height: auto !important;
        transform: none !important;
        right: auto !important;
        top: auto !important;
        margin: 0;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .hero-text {
        align-items: flex-start;
        max-width: 55%;
        padding-right: 0;
        gap: 8px;
    }

    .hero-text .headline {
        font-size: 26px;
        white-space: normal;
        font-weight: 800;
        text-align: left;
    }

    .hero-text .subheadline {
        font-size: 14px;
        text-align: left;
    }

    .hero-action-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin-top: 12px;
        justify-content: flex-start;
    }

    .hero-btn {
        flex: 1 1 100%;
        width: 100%;
        max-width: none;
        height: 44px;
        padding: 0 16px;
        font-size: 14px;
        font-weight: 600;
        justify-content: center;
    }

    .trusted-badge {
        justify-content: center;
        margin-top: 10px;
        margin-bottom: 12px;
        font-size: 13px;
    }


    .hero-stats-proof {
        display: flex;
        /* Visible on Tablet/Mobile */
        font-size: 16px;
        margin: 0px auto 16px;
    }

    /* Trust card tablet */
    .trust-card {
        margin-top: 12px;
        border-radius: 8px;
        overflow: visible;
        width: 100%;
    }

    .trust-row.top {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 8px 8px;
        overflow: visible;
        flex-wrap: unset;
    }

    .trust-row.bottom {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 6px 8px;
        overflow: visible;
        flex-direction: unset;
        flex-wrap: unset;
    }

    .trust-item {
        flex: unset;
        width: auto;
        white-space: normal;
        font-size: 11px;
        padding: 5px 3px;
        gap: 4px;
    }

    .trust-item iconify-icon {
        font-size: 15px !important;
    }

    .trust-item img,
    .trust-item iconify-icon {
        background: transparent;
        border-radius: 0;
        width: auto;
        height: auto;
        padding: 0;
    }

    .trust-row .divider-v {
        display: none !important;
    }

    .divider-h {
        display: none !important;
    }

    .trust-row.bottom .trust-item {
        font-size: 18px;
    }

    /* Widget panels tablet */
    .budli-home__widgets-wrap {
        padding-top: 10px;
    }

    .budli-home__widget-panel {
        padding: 0 14px 16px;
    }

    .budli-home__widget-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    /* Digit award tablet */
    .budli-digit-award-banner {
        min-height: 40px;
        padding: 8px 20px;
    }

    .budli-digit-award-banner span {
        font-size: 15px;
    }
}

/* ══ MOBILE (max 767px) ══ */
@media (max-width: 767px) {

    .export-wrapper {
        padding-bottom: 0;
    }

    .hero-container {
        padding: 10px 10px 0;
        min-height: auto;
        height: auto;
        overflow: hidden;
    }

    .content-wrapper {
        gap: 0;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 55% 42%;
        justify-content: space-between;
        align-items: center;
        gap: 0px 0px;
        text-align: left;
    }

    .hero-text {
        display: contents;
    }

    .hero-text .headline {
        grid-column: 1;
        grid-row: 1;
        font-size: 18px;
        line-height: 1.1;
        font-weight: 800;
        margin: 0;
        align-self: end;
    }

    .hero-text .subheadline {
        grid-column: 1;
        grid-row: 2;
        font-size: 12px;
        line-height: 1.3;
        margin: 0;
        align-self: start;
    }

    .hero-image {
        grid-column: 2;
        grid-row: 1 / span 2;
        display: block !important;
        position: relative !important;
        width: 100% !important;
        max-width: 150px;
        height: auto !important;
        transform: none !important;
        right: auto !important;
        top: auto !important;
        margin: 0;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .hero-action-buttons {
        grid-column: 1 / span 2;
        grid-row: 3;
        display: flex;
        flex-direction: row;
        gap: 8px;
        margin-top: 5px;
        width: 100%;
        justify-content: space-between;
    }

    .hero-btn {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        height: auto;
        min-height: 38px;
        padding: 6px 8px;
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .trusted-badge {
        grid-column: 1 / span 2;
        grid-row: 4;
        font-size: 11px;
        margin-top: 2px;
        margin-bottom: 5px;
        gap: 4px;
        justify-content: center;
    }

    /* Trust card mobile */
    .trust-card {
        margin-top: 10px;
        border-radius: 8px;
        overflow: hidden;
    }

    .trust-row.top {
        grid-template-columns: repeat(4, 1fr);
        padding: 7px 6px;
        gap: 0;
        overflow: hidden;
    }

    .trust-row.bottom {
        grid-template-columns: repeat(3, 1fr);
        padding: 5px 6px;
        gap: 0;
        overflow: hidden;
    }

    .trust-item {
        font-size: 10.5px;
        padding: 4px 2px;
        gap: 3px;
        border-right: 1px solid rgba(229, 231, 235, 0.7);
        flex: unset;
        width: auto;
    }

    .trust-item iconify-icon {
        font-size: 14px !important;
    }

    .trust-row.bottom .trust-item {
        font-size: 14.5px;
    }

    .trust-row.bottom .trust-item iconify-icon {
        font-size: 14px !important;
    }

    /* Widget panels mobile */
    .budli-home__widgets-wrap {
        padding-top: 8px;
    }

    .budli-home__widgets {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .budli-home__widget-panel--sell {
        border-right: none;
        border-bottom: 1px solid var(--budli-border);
    }

    .budli-home__widget-panel {
        padding: 0 0 14px;
    }

    .budli-home__widget-title {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .budli-home__widget-grid {
        gap: 6px;
        grid-template-columns: repeat(4, 1fr);
    }

    .budli-home__widget-card {
        min-height: 80px;
        gap: 5px;
        border-radius: 10px;
    }

    .budli-home__widget-card-img {
        width: 56px;
        height: 44px;
    }

    .budli-home__widget-card small {
        font-size: 11px;
    }

    /* Digit award mobile */
    .budli-home__section--digit-award {
        padding: 0;
        margin: 0;
    }

    .budli-digit-award-banner {
        min-height: 38px;
        padding: 8px 14px;
    }

    .budli-digit-award-banner span {
        font-size: 13px;
        font-weight: 700;
        line-height: 1.4;
    }
}

/* ══ SMALL MOBILE (max 480px) ══ */
@media (max-width: 480px) {

    .hero-container {
        padding: 10px 10px 0;
    }

    .hero-text .headline {
        font-size: 16px;
    }

    .hero-text .subheadline {
        font-size: 11px;
    }

    .trust-row.top {
        grid-template-columns: repeat(4, 1fr);
        padding: 6px 4px;
    }

    .trust-row.bottom {
        grid-template-columns: repeat(3, 1fr);
        padding: 4px 4px;
    }

    .trust-item {
        font-size: 9.5px;
        padding: 3px 1px;
    }

    .trust-item iconify-icon {
        font-size: 13px !important;
    }

    .trust-row.bottom .trust-item {
        font-size: 13.5px;
    }

    .budli-home__widget-card {
        min-height: 70px;
    }

    .budli-home__widget-card-img {
        width: 46px;
        height: 36px;
    }

    .budli-home__widget-card small {
        font-size: 10px;
    }

    .budli-digit-award-banner span {
        font-size: 12px;
    }
}

/* ── End Compact UI Overrides ── */

/* ═══════════════════════════════════════════════════════════════
   WIDGET DENSITY + ABOVE-THE-FOLD OPTIMISATION (Phase 2)
   Goal: More content visible on screen, no wasted vertical space
   Focus: Section 3 (Sell & Buy Widgets) + overall compactness
   ═══════════════════════════════════════════════════════════════ */

/* ── GLOBAL: kill excessive section gaps on all screen sizes ── */
.budli-home>section,
.budli-home>div {
    /* prevent any section from creating surprise top/bottom gaps */
}

/* Tighten .budli-home__section vertical rhythm globally */
.budli-home__section {
    padding-top: 32px;
    padding-bottom: 32px;
}

.budli-home__section-head {
    margin-bottom: 16px;
}

.budli-home__section-head h2 {
    font-size: 22px;
    line-height: 1.3;
}

.budli-home__section-head p {
    font-size: 14px;
    margin-top: 4px;
    line-height: 1.5;
}

/* ── Section 3: Widget Panels — tighten title & spacing ── */
.budli-home__widgets-wrap {
    padding-top: 10px;
    padding-bottom: 0;
}

.budli-home__widgets {
    gap: 0;
}

.budli-home__widget-panel {
    padding: 0 16px 16px;
}

.budli-home__widget-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.3;
}

/* Widget cards: tighter, denser */
.budli-home__widget-grid {
    gap: 8px;
    grid-template-columns: repeat(4, 1fr);
}

.budli-home__widget-card {
    min-height: 100px;
    gap: 7px;
    border-radius: 10px;
    padding: 8px 4px;
}

.budli-home__widget-card-img {
    width: 72px;
    height: 56px;
}

.budli-home__widget-card small {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
}

/* ═══════════════════════════════
   TABLET: ≤ 991px
   ═══════════════════════════════ */
@media (max-width: 991px) {

    /* Global section rhythm tighter on tablet */
    .budli-home__section {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .budli-home__section-head h2 {
        font-size: 20px;
    }

    /* Widgets: keep side-by-side, just tighter */
    .budli-home__widgets-wrap {
        padding-top: 8px;
    }

    .budli-home__widget-panel {
        padding: 0 14px 14px;
    }

    .budli-home__widget-title {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .budli-home__widget-grid {
        gap: 6px;
    }

    .budli-home__widget-card {
        min-height: 86px;
        gap: 5px;
    }

    .budli-home__widget-card-img {
        width: 58px;
        height: 45px;
    }

    .budli-home__widget-card small {
        font-size: 11px;
    }
}

/* ═══════════════════════════════
   MOBILE: ≤ 767px
   KEY CHANGE: Sell + Buy side-by-side
   Each panel has 2×2 card grid
   ═══════════════════════════════ */
@media (max-width: 767px) {

    /* Global section rhythm */
    .budli-home__section {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .budli-home__section-head {
        margin-bottom: 12px;
    }

    .budli-home__section-head h2 {
        font-size: 16px;
    }

    .budli-home__section-head p {
        font-size: 12px;
    }

    /* ── Widget section: KEEP BOTH PANELS SIDE-BY-SIDE ── */
    .budli-home__widgets-wrap {
        padding-top: 6px;
        padding-bottom: 0;
        /* Balanced container width */
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Override the 1-column stack — both panels visible side by side */
    .budli-home__widgets {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 !important;
    }

    /* Remove the stacking border; add a vertical divider between panels */
    .budli-home__widget-panel--sell {
        border-right: 1px solid var(--budli-border) !important;
        border-bottom: none !important;
    }

    .budli-home__widget-panel {
        padding: 0 4px 6px !important;
        /* tighter inner padding */
    }

    /* Titles: smaller to fit both side by side */
    .budli-home__widget-title {
        font-size: 14px !important;
        margin: 0 0 7px !important;
        text-align: center !important;
        letter-spacing: -0.01em;
    }

    /* Each panel: 2-column card grid (2 cards wide × 2 rows = 4 cards) */
    .budli-home__widget-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 1fr !important;
        /* UNIFORM BOX SIZING */
        gap: 5px !important;
    }

    .budli-home__widget-card {
        height: 100% !important;
        /* EQUAL HEIGHT */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        /* CENTER ALIGNMENT */
        gap: 4px !important;
        border-radius: 8px !important;
        padding: 6px 4px !important;
    }

    .budli-home__widget-card-img {
        width: 56px !important;
        height: 44px !important;
        margin: 0 auto !important;
    }

    .budli-home__widget-card small {
        font-size: 10px !important;
        line-height: 1.2;
        font-weight: 500;
        text-align: center !important;
    }

    /* Above-the-fold: hero section even more compact */
    .hero-container {
        padding: 10px 12px 0 !important;
    }

    .hero-text .headline {
        font-size: 21px !important;
    }

    .hero-text .subheadline {
        font-size: 12.5px !important;
    }

    .hero-btn {
        height: 38px !important;
        font-size: 12.5px !important;
    }

    .trusted-badge {
        margin-top: 6px !important;
        margin-bottom: 8px !important;
        font-size: 11.5px !important;
    }

    /* Trust card: very tight */
    .trust-card {
        margin-top: 8px !important;
    }

    .trust-row.top {
        padding: 6px 5px !important;
    }

    .trust-row.bottom {
        padding: 4px 5px !important;
    }
}

/* ═══════════════════════════════
   SMALL MOBILE: ≤ 480px
   ═══════════════════════════════ */
@media (max-width: 480px) {

    /* Global section rhythm */
    .budli-home__section {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .budli-home__section-head h2 {
        font-size: 15px;
    }

    .budli-home__section-head p {
        font-size: 11px;
    }

    /* Widget panels: keep side-by-side, ultra-compact */
    .budli-home__widgets-wrap {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .budli-home__widgets {
        grid-template-columns: 1fr 1fr !important;
    }

    .budli-home__widget-panel {
        padding: 0 2px 6px !important;
    }

    .budli-home__widget-title {
        font-size: 12.5px !important;
        margin-bottom: 5px !important;
        text-align: center !important;
    }

    .budli-home__widget-grid {
        gap: 4px !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 1fr !important;
    }

    .budli-home__widget-card {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        padding: 4px 2px !important;
        border-radius: 6px !important;
    }

    .budli-home__widget-card-img {
        width: 48px !important;
        height: 38px !important;
    }

    .budli-home__widget-card small {
        font-size: 9px !important;
        text-align: center !important;
    }

    /* Hero: absolute minimum footprint */
    .hero-container {
        padding: 8px 10px 0 !important;
    }

    .hero-text .headline {
        font-size: 18px !important;
        line-height: 1.2 !important;
    }

    .hero-text .subheadline {
        font-size: 11.5px !important;
    }

    .hero-action-buttons {
        gap: 6px !important;
        margin-top: 8px !important;
    }

    .hero-btn {
        height: 35px !important;
        font-size: 11.5px !important;
        padding: 0 8px !important;
    }

    .trusted-badge {
        font-size: 10.5px !important;
        margin-top: 5px !important;
        margin-bottom: 6px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PHASE 3: COMPREHENSIVE SECTION DENSITY (Mobile-First)
   Goal: Compact all remaining sections to match buy.budli.in
   Focus: Deals, Categories, Guides, Shop by Budget/Brand, Impact, etc.
   ═══════════════════════════════════════════════════════════════ */

/* ── Global Section Adjustments ── */
@media (max-width: 767px) {

    /* Target all possible section wrappers to ensure consistent tight spacing */
    .budli-home__section,
    .budli-modern-v3>.page-container>section,
    .budli-trust-platform,
    .shop-by-budget-section,
    .sbb-wrapper {
        padding-top: 1px !important;
        padding-bottom: 1px !important;
    }

    .budli-modern-v3 .section-title,
    .budli-trust-platform__main-title,
    .shop-by-budget-section .section-title,
    .sbb-heading {
        font-size: 18px !important;
        margin-bottom: 5px !important;
        line-height: 1.2 !important;
    }

    .budli-modern-v3 .section-head p,
    .budli-trust-platform__subtitle {
        font-size: 11px !important;
        margin-top: 2px !important;
        margin-bottom: 0px !important;
        text-align: center;
    }

    /* ── Section 5: Categories ── */
    .budli-category-circle {
        width: 60px !important;
        height: 60px !important;
        padding: 6px !important;
    }

    .budli-category-circle img {
        max-width: 50px !important;
        height: auto !important;
    }

    .budli-category-name {
        font-size: 11px !important;
        margin-top: 6px !important;
    }

    /* ── Section 5b: Buying Guides ── */
    .bguide-card {
        padding: 12px 10px !important;
        min-width: 140px !important;
    }

    .bguide-card-icon {
        width: 32px !important;
        height: 32px !important;
        margin-bottom: 8px !important;
    }

    .bguide-card-title {
        font-size: 13px !important;
    }

    .bguide-card-tag {
        font-size: 11px !important;
    }

    /* ── Section 6: How It Works ── */
    .budli-modern-v3 .how-it-works-wrapper {
        padding: 0 8px 10px !important;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    }

    .budli-modern-v3 .how-it-works-title {
        text-align: center !important;
        font-size: 22px !important;
        font-weight: 700 !important;
        color: #0f203c !important;
        margin-top: 0 !important;
        margin-bottom: 0px !important;
    }

    .budli-modern-v3 .panels-container {
        gap: 10px !important;
        flex-direction: column !important;
    }

    .budli-modern-v3 .panel {
        padding: 8px !important;
        border-radius: 16px !important;
        position: relative !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .budli-modern-v3 .panel-header {
        text-align: center !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        color: #0f203c !important;
        margin-bottom: 0px !important;
        flex-shrink: 0 !important;
        z-index: 2 !important;
        display: block !important;
    }

    .budli-modern-v3 .panel-body {
        display: flex !important;
        flex: 1 !important;
        position: relative !important;
    }

    .budli-modern-v3 .panel-left {
        width: 100% !important;
        z-index: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 1px !important;
    }

    .budli-modern-v3 .panel-title {
        font-size: 16px !important;
        font-weight: 700 !important;
        margin-bottom: 4px !important;
        color: #0f203c !important;
    }

    .budli-modern-v3 .panel-description {
        font-size: 11px !important;
        color: #4a5568 !important;
        line-height: 1.4 !important;
        display: block !important;
    }

    .budli-modern-v3 .steps-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .budli-modern-v3 .step-item {
        display: flex !important;
        gap: 10px !important;
        align-items: flex-start !important;
    }

    .budli-modern-v3 .step-icon-wrapper {
        width: 20px !important;
        height: 20px !important;
        border-radius: 50% !important;
        background-color: #ffffff !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    }

    .budli-modern-v3 .panel-sellers .step-icon-wrapper {
        color: #a21caf !important;
    }

    .budli-modern-v3 .panel-buyers .step-icon-wrapper {
        color: #2563eb !important;
    }

    .budli-modern-v3 .step-text {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
    }

    .budli-modern-v3 .step-text-title {
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #0f203c !important;
    }

    .budli-modern-v3 .step-text-sub {
        font-size: 10px !important;
        color: #4a5568 !important;
        line-height: 1.3 !important;
    }

    .budli-modern-v3 .panel-actions {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        margin-top: 4px !important;
    }

    .budli-modern-v3 .panel-actions .btn {
        padding: 8px 14px !important;
        border-radius: 999px !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        border: none !important;
        cursor: pointer !important;
        white-space: nowrap !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: auto !important;
        flex: 0 !important;
    }

    .budli-modern-v3 .panel-actions .btn-primary-seller {
        background-color: #a21caf !important;
        color: white !important;
    }

    .budli-modern-v3 .panel-actions .btn-secondary-seller {
        display: none !important;
    }

    .budli-modern-v3 .panel-actions .btn-primary-buyer {
        background-color: #2563eb !important;
        color: white !important;
    }

    .budli-modern-v3 .panel-actions .btn-secondary-buyer {
        display: none !important;
    }

    /* ── Featured Deals (Scrollable) ── */
    .budli-modern-v3 .deals-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 8px !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px !important;
        justify-content: flex-start !important;
        grid-template-columns: none !important;
    }

    .budli-modern-v3 .deal-card {
        padding: 8px !important;
        flex: 0 0 calc(45vw - 12px) !important;
        min-width: 150px !important;
        scroll-snap-align: start;
    }

    .budli-modern-v3 .deal-image-wrapper {
        height: 100px !important;
        margin-bottom: 8px !important;
    }

    .budli-modern-v3 .deal-title {
        font-size: 12px !important;
    }

    .budli-modern-v3 .deal-sub {
        font-size: 10px !important;
        color: #64748b;
        margin: 0px 0 0px 0;
        line-height: 1.4;
        min-height: 2px;
    }

    .budli-modern-v3 .deal-price {
        font-size: 11px !important;
    }

    /* ── Why Trust Budli (Responsive 3-Box Slider for Mobile) ── */
    .budli-modern-v3 .trust-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 8px !important;
        padding-bottom: 12px !important;
        /* Leave room for scrollbar */
        justify-content: flex-start !important;
        align-items: stretch !important;
        /* Forces all cards to stretch to tallest card */
        grid-template-columns: none !important;
        grid-auto-rows: auto !important;
    }

    .budli-modern-v3 .trust-card {
        padding: 12px 6px !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        height: auto !important;
        width: auto !important;
        flex: 0 0 calc(31vw - 8px) !important;
        min-width: 160px !important;
        scroll-snap-align: start;
        z-index: 0;
    }

    .budli-modern-v3 .trust-icon {
        margin-bottom: 8px !important;
        margin-right: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 60px !important;
        height: 60px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        border-radius: 50% !important;
    }

    .budli-modern-v3 .trust-icon img,
    .budli-modern-v3 .trust-icon iconify-icon,
    .budli-modern-v3 .trust-icon svg {
        width: 60px !important;
        height: 60px !important;
        object-fit: contain !important;
        font-size: 60px !important;
        display: block !important;
    }

    .budli-modern-v3 .trust-title {
        font-size: 11px !important;
        margin-bottom: 4px !important;
        line-height: 1.2 !important;
    }

    .budli-modern-v3 .trust-sub {
        font-size: 9px !important;
        line-height: 1.3 !important;
    }

    /* ── Section 7: Certified Platform (Tighter scroll/grid) ── */
    .budli-trust-platform__cards-row {
        gap: 8px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .budli-trust-platform__card {
        padding: 10px 0px !important;
        flex: 0 0 calc(45vw - 12px) !important;
        min-width: 140px !important;
        max-width: 165px !important;
    }

    .budli-trust-platform__icon-bubble {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 8px !important;
    }

    .budli-trust-platform__icon-bubble img {
        width: 80px !important;
        height: 80px !important;
    }

    .budli-trust-platform__card-title {
        font-size: 11px !important;
        margin-bottom: 4px !important;
        min-height: 32px !important;
        line-height: 1.2 !important;
    }

    .budli-trust-platform__card-desc {
        font-size: 9px !important;
        line-height: 1.25 !important;
    }


    /* ── Section 9: Shop by Budget (Scrollable) ── */
    .budli-budget-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 8px !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px !important;
        justify-content: flex-start !important;
        grid-template-columns: none !important;
    }

    .budli-budget-pill {
        padding: 10px 8px !important;
        flex: 0 0 calc(45vw - 12px) !important;
        min-width: 140px !important;
        scroll-snap-align: start;
    }

    .budli-device-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .budli-budget-text span {
        font-size: 11px !important;
    }

    .budli-budget-text strong {
        font-size: 12px !important;
    }



    /* ── Section 11: Shop by Brand (Scrollable) ── */
    .sbb-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 12px !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px !important;
        justify-content: flex-start !important;
    }

    .sbb-card {
        flex: 0 0 auto !important;
        /* Fixed width box */
        width: 80px !important;
        scroll-snap-align: start;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .sbb-text-container {
        display: none !important;
        /* Hide extra brand text */
    }

    .sbb-logo-box {
        height: 80px !important;
        width: 80px !important;
        padding: 0px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        border-radius: 8px !important;
        background: #ffffff !important;
    }

    .sbb-logo-box img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        /* Strict bounds */
    }



    /* ── FAQ & Accordions ── */
    .budli-accordion__button {
        padding: 12px 10px !important;
        font-size: 13px !important;
    }

    .budli-accordion__content-inner {
        padding: 0 10px 12px !important;
        font-size: 12px !important;
    }

    .budli-faq__tab {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
}

/* ═══════════════════════════════
   SMALL MOBILE: ≤ 480px (Extra Compact)
   ═══════════════════════════════ */
/* ═══════════════════════════════════════════════════
   MOBILE REFACTOR (max-width: 768px)
   ULTIMATE COMPACT & ALIGNED UI
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Global Section Tightening */
    .budli-home__section,
    .budli-trust-platform,
    .shop-by-budget-section,
    .sbb-wrapper,
    .budli-home__section--faq,
    .budli-home__section--seo {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Standardized Typography */
    h2.budli-trust-platform__main-title,
    h2.section-title,
    h2.sbb-heading,
    .budli-home__section-head h2 {
        font-size: 15px !important;
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
        text-align: center !important;
    }

    .budli-trust-platform__subtitle,
    .budli-home__section-head p {
        font-size: 11px !important;
        line-height: 1.5 !important;
        margin-bottom: 2px !important;
        text-align: center !important;
    }

    /* ── Section 8: Certified Platform (Slider Restored) ── */
    .budli-trust-platform__inner {
        padding: 0 1px !important;
    }

    .budli-trust-platform__shield-wrap {
        width: 23px !important;
        height: 23px !important;
        margin-bottom: 8px !important;
    }

    .budli-trust-platform__shield-wrap img,
    .budli-trust-platform__shield-wrap iconify-icon {
        width: 22px !important;
        height: 22px !important;
        font-size: 22px !important;
    }

    .budli-trust-platform__cards-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 8px !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        padding-bottom: 12px !important;
        margin: 0 0px !important;
        padding-left: 1px !important;
        padding-right: 1px !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .budli-trust-platform__cards-row::-webkit-scrollbar {
        display: none !important;
    }

    .budli-trust-platform__card {
        flex: 0 0 280px !important;
        scroll-snap-align: start !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .budli-trust-platform__icon-bubble {
        width: 140px !important;
        margin-bottom: 15px !important;
    }

    .budli-trust-platform__card-title {
        font-size: 16px !important;
        min-height: auto !important;
        text-align: center !important;
    }

    .budli-trust-platform__card-desc {
        font-size: 13px !important;
        text-align: center !important;
    }


    /* ── Section 14: Stats Banner - Inherits from above ── */

    /* ── Section 12/13: FAQ & SEO ── */
    .budli-faq__tabs {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .budli-faq__tab {
        width: 100% !important;
        padding: 12px !important;
        font-size: 15px !important;
    }

    .budli-accordion__button {
        padding: 16px 12px !important;
        font-size: 14px !important;
    }

    .budli-accordion__content-inner {
        font-size: 13px !important;
        padding: 15px !important;
    }

    /* ── Budget & Brand Titles ── */
    .shop-by-budget-section .section-title,
    .sbb-heading {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .budli-slider-outer {
        margin-bottom: 10px !important;
    }
}

/* ══════════════════════════════════════════
   ENVIRONMENTAL IMPACT SECTION — MOBILE FIX v2
   (Replace ALL previous .ei-* mobile overrides)
   ══════════════════════════════════════════ */

@media (max-width: 991px) {
    .ei-container {
        padding: 0 16px;
    }

    .ei-content {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

@media (max-width: 768px) {

    .ei-section {
        padding: 16px 0 !important;
    }

    .ei-container {
        padding: 0 14px !important;
    }

    /* ── Header ── */
    .ei-header {
        text-align: center !important;
        margin-bottom: 12px !important;
    }

    .ei-title {
        font-size: 16px !important;
        justify-content: center !important;
        gap: 6px !important;
        margin-bottom: 4px !important;
    }

    .ei-subtitle {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    /* ── Content wrapper: stack vertically ── */
    .ei-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    /* ── Stats card: 2-col grid ── */
    .ei-card {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px 8px !important;
        padding: 8px 4px !important;
        order: 1 !important;
    }

    /* First 2 stats: normal 2-col cells */
    .ei-stat {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 5px !important;
        margin: 0 !important;
    }

    .ei-stat:nth-child(2) {
        margin-top: 0 !important;
    }

    /* ── 3rd stat: full-width horizontal row ── */
    .ei-stat:nth-child(3) {
        grid-column: 1 / -1 !important;
        /* span both columns */
        flex-direction: row !important;
        /* horizontal layout */
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        text-align: left !important;
        background: #f8fafc !important;
        border-radius: 12px !important;
        padding: 10px 14px !important;
        margin-top: 0 !important;
    }

    .ei-stat:nth-child(3) .ei-pill {
        flex-shrink: 0 !important;
        margin-bottom: 0 !important;
    }

    .ei-stat:nth-child(3) .ei-stat-title,
    .ei-stat:nth-child(3) .ei-stat-desc {
        text-align: left !important;
    }

    /* ── Pill styling ── */
    .ei-pill {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        padding: 5px 10px !important;
        border-radius: 30px !important;
        border: 1px solid #e2e8f0 !important;
        background: #ffffff !important;
        margin-bottom: 0 !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
    }

    .ei-pill-number {
        font-size: 13px !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }

    .ei-pill-icon {
        width: 20px !important;
        height: 20px !important;
        border-radius: 50% !important;
        background-color: #f0fdf4 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    .ei-pill-icon img,
    .ei-pill-icon svg,
    .ei-pill-icon iconify-icon {
        width: 13px !important;
        height: 13px !important;
        font-size: 13px !important;
        object-fit: contain !important;
        display: block !important;
    }

    .ei-stat-title {
        font-size: 12px !important;
        font-weight: 700 !important;
        color: #1e293b !important;
        text-align: center !important;
        padding-left: 0 !important;
        margin: 0 !important;
        line-height: 1.2 !important;
    }

    .ei-stat-desc {
        font-size: 10px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        color: #64748b !important;
        margin: 0 !important;
    }

    /* ── Visuals: image + quote SIDE BY SIDE ── */
    .ei-visuals {
        order: 2 !important;
        display: flex !important;
        flex-direction: row !important;
        /* side-by-side */
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        text-align: left !important;
    }

    .ei-image-container {
        flex: 0 0 auto !important;
        width: 130px !important;
        max-width: 130px !important;
        margin: 0 !important;
    }

    .ei-image {
        width: 100% !important;
        height: auto !important;
        border-radius: 10px !important;
        display: block !important;
    }

    .ei-quote-container {
        flex: 1 !important;
        text-align: left !important;
    }

    .ei-quote {
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;
        color: #1a4d2e !important;
        margin-bottom: 5px !important;
    }

    .ei-tagline {
        font-size: 11px !important;
        color: #475569 !important;
        line-height: 1.4 !important;
        margin: 0 !important;
    }
}

/* ── Very small screens (≤ 390px) ── */
@media (max-width: 390px) {
    .ei-image-container {
        width: 110px !important;
        max-width: 110px !important;
    }

    .ei-quote {
        font-size: 13px !important;
    }

    .ei-pill-number {
        font-size: 12px !important;
    }

    .ei-stat-title {
        font-size: 11px !important;
    }
}

/* ---------------------------------------------------------------
   GRADES CONDITION BAND � home.css
   Append this block to the bottom of home.css
   ---------------------------------------------------------------- */

/* -- Band wrapper ----------------------------------------------- */
.budli-cond-band {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 8px 20px;
    margin: 0;
}

.budli-cond-inner {
    max-width: 1320px;
    /* matches .budli-home__container */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

/* -- Label ------------------------------------------------------ */
.budli-cond-label {
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.01em;
    flex-shrink: 0;
}

.budli-cond-scale {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.75;
    margin-left: 5px;
    letter-spacing: 0;
}

/* -- Pills row -------------------------------------------------- */
.budli-cond-pills {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* -- Individual pill -------------------------------------------- */
.budli-cond-pill {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px 12px 3px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none !important;
    transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    line-height: 1.2;
    overflow: visible;
}

.budli-cond-pill:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Desktop: show only pill name, desc is hidden in tooltip */
.budli-cond-pill__name {
    display: block;
}

.budli-cond-pill__desc {
    /* Desktop: shown as tooltip on hover */
    display: none;
    position: absolute;
    bottom: calc(100% + 9px);
    left: 50%;
    transform: translateX(-50%);
    background: #0a2540;
    color: #f1f5f9;
    font-size: 11px;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    pointer-events: none;
    line-height: 1.4;
}

/* Tooltip arrow */
.budli-cond-pill__desc::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #0a2540;
}

.budli-cond-pill:hover .budli-cond-pill__desc {
    display: block;
    animation: budli-tip-in 0.15s ease forwards;
}

@keyframes budli-tip-in {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}


/* ---------------------------------------------------------------
   MOBILE � Card Grid Layout  (matches Image 2 reference)
   ---------------------------------------------------------------- */
@media (max-width: 749px) {

    .budli-cond-band {
        padding: 14px 14px 16px;
    }

    .budli-cond-inner {
        flex-direction: column;
        gap: 0px;
        align-items: center;
    }

    /* Mobile label row */
    .budli-cond-label {
        font-size: 13px;
        text-align: center;
        display: block;
        margin-bottom: 2px;
    }

    .budli-cond-scale {
        font-size: 11px;
        margin-left: 6px;
    }

    /* Pills become a flex-wrap grid � 3 on row 1, 2 on row 2 */
    .budli-cond-pills {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    /* Each pill becomes a card */
    .budli-cond-pill {
        flex: 1 1 calc(33.333% - 8px);
        min-width: 90px;
        max-width: 130px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2px 4px 3px;
        border-radius: 81px;
        border-width: 2px;
        white-space: normal;
        line-height: 1.25;
        transform: none !important;
    }

    .budli-cond-pill:hover {
        transform: none;
        box-shadow: none;
        opacity: 1;
    }

    /* On mobile, always show the description below the name */
    .budli-cond-pill__name {
        font-size: 12.5px;
        font-weight: 700;
        display: block;
    }

    .budli-cond-pill__desc {
        /* Reset tooltip positioning � become inline text */
        display: block !important;
        position: static !important;
        transform: none !important;
        background: transparent !important;
        color: rgba(255, 255, 255, 0.78) !important;
        font-size: 8.5px !important;
        font-weight: 400 !important;
        padding: 2px 0 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        white-space: normal;
        line-height: 1.3;
        pointer-events: none;
        margin-top: 2px;
        animation: none !important;
    }

    .budli-cond-pill__desc::after {
        display: none !important;
    }

    /* Last lone card (5th pill) � stretch to match 2-column row */
    .budli-cond-pill:last-child:nth-child(3n + 1) {
        /* When there's 1 card alone in the last row */
        flex: 0 1 calc(66.666% - 4px);
        max-width: 270px;
    }
}