/* ==========================================================================
   Homepage — Hero Slider, Category Grid, Featured Products
   ========================================================================== */

/* Remove top gap between header and hero slider */
.vc-homepage {
    padding-top: 0;
}

/* Hero section (fallback when no slider) */
.vc-hero__fallback {
    background: linear-gradient(135deg, var(--vc-bg-body) 0%, var(--vc-bg-section) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--vc-white);
}

.vc-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--vc-white);
    margin-bottom: 0.75rem;
}

.vc-hero__subtitle {
    font-size: var(--vc-font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider — full-width, full-resolution */
.vc-slider {
    position: relative;
    overflow: hidden;
    background: #000;
    max-height: 900px;
}

.vc-slider__track {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.vc-slider__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 1;
}

.vc-slider__slide--active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.vc-slider__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.vc-slider__image {
    width: 100%;
    max-height: 900px;
    display: block;
    max-width: none;
    object-fit: cover;
}

.vc-slider__content {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    pointer-events: none;
    background: none;
    color: var(--vc-always-white);
    text-align: left;
}

.vc-slider__heading {
    font-family: 'Audiowide', sans-serif;
    font-size: 100px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 120px;
    white-space: normal;
    max-width: 65%;
    margin-bottom: 0.5rem;
}

.vc-slider__subtitle {
    font-size: var(--vc-font-size-base);
    opacity: 0.9;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Slider arrows */
.vc-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 0;
}
.vc-slider__arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}
.vc-slider__arrow--prev { left: 20px; }
.vc-slider__arrow--next { right: 20px; }

/* Slider dots */
.vc-slider__dots {
    display: none;
}
.vc-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
}
.vc-slider__dot--active,
.vc-slider__dot:hover {
    background: #fff;
}

/* Category Grid */
.vc-categories {
    background: var(--vc-bg-body);
    margin-bottom: 25px;
}

.vc-categories__heading {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    text-align: center;
    line-height: 24px;
    margin-bottom: 40px;
}

.vc-categories__grid {
    display: grid;
    grid-template-columns: repeat(5, 250px);
    column-gap: 20px;
    row-gap: 40px;
    justify-content: center;
}

.vc-category-card {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000;
}

.vc-category-card:hover {
    color: #000;
}

.vc-category-card img {
    display: block;
    width: 250px;
    height: 250px;
    object-fit: fill;
    max-width: 100%;
    margin-bottom: 16px;
}

.vc-category-card__title {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-align: center;
    line-height: 19px;
    padding: 8px 0;
    margin: 0;
}

/* Products Grid (homepage featured) */
.vc-featured__heading {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}

.vc-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.vc-product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
    transition: box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.vc-product-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-color: #ccc;
}

.vc-product-card__link {
    display: block;
    text-decoration: none;
    color: var(--vc-text-primary);
}

.vc-product-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
}

.vc-product-card__image img,
.vc-product-card__image img.wp-post-image {
    width: 100% !important;
    height: 100% !important;
    max-height: none;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.vc-product-card:hover .vc-product-card__image img {
    transform: scale(1.05);
}

.vc-product-card__badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.25rem 0.625rem;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--vc-radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    z-index: 2;
}

.vc-product-card__badge--sale {
    background: var(--vc-accent);
    color: var(--vc-always-white);
}

.vc-product-card__details {
    padding: 0.875rem 1rem;
}

.vc-product-card__title {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 0.375rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vc-product-card__price {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.vc-product-card__price del {
    color: var(--vc-text-secondary);
    font-weight: 400;
    font-size: var(--vc-font-size-sm);
}

.vc-product-card__price ins {
    text-decoration: none;
    color: var(--vc-accent);
}

.vc-product-card__action {
    padding: 0 1rem 1rem;
    margin-top: auto;
}

.vc-product-card__badge--out {
    background: var(--vc-medium-gray);
    color: var(--vc-always-white);
}

.vc-product-card__action .vc-btn {
    display: inline-block;
    background: transparent;
    color: #000;
    border: 1.5px solid #000;
    border-radius: 30px;
    padding: 8px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    width: auto;
}

.vc-product-card__action .vc-btn:hover {
    background: #000;
    color: #fff;
}

.vc-product-card__action .vc-btn--out-of-stock {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #999;
    color: #999;
}

.vc-product-card__action .vc-btn--out-of-stock:hover {
    background: transparent;
    color: #999;
    border-color: #999;
}

/* Responsive */
@media (min-width: 768px) {
    .vc-categories__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vc-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .vc-hero__title {
        font-size: 3.5rem;
    }

    .vc-categories__grid {
        grid-template-columns: repeat(5, 250px);
    }

    .vc-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .vc-slider { max-height: 550px; }
    .vc-slider__image { max-height: 550px; }
    .vc-slider__heading { font-size: 60px; line-height: 72px; }
}

/* Mobile */
@media (max-width: 767px) {
    /* Slider — constrain height, responsive text */
    .vc-slider { max-height: 349px; }
    .vc-slider__image { max-height: 349px; }

    .vc-slider__content {
        padding: 1rem;
    }

    .vc-slider__heading {
        font-size: 34px;
        line-height: 42px;
        max-width: 300px;
    }

    .vc-slider__subtitle {
        font-size: var(--vc-font-size-sm);
        margin-bottom: 0.5rem;
    }

    /* Category cards — 2 columns, tighter spacing */
    .vc-categories__grid {
        gap: 0.75rem;
    }

    .vc-category-card__info {
        padding: 0.625rem 0.75rem;
    }

    .vc-category-card__name {
        font-size: var(--vc-font-size-xs);
    }

    /* Product cards — tighter spacing */
    .vc-products-grid {
        gap: 0.75rem;
    }

    .vc-product-card__details {
        padding: 0.625rem 0.75rem;
    }

    .vc-product-card__title {
        font-size: var(--vc-font-size-xs);
    }

    .vc-product-card__action {
        padding: 0 0.75rem 0.75rem;
    }

    .vc-product-card__action .vc-btn {
        min-height: 44px;
        font-size: var(--vc-font-size-sm);
    }

    /* Section titles — smaller on mobile */
    .vc-section {
        padding: 2rem 0;
    }

    .vc-section__title {
        font-size: var(--vc-font-size-xl);
        margin-bottom: 1.25rem;
    }

    .vc-hero__title {
        font-size: 2rem;
    }

    .vc-hero__subtitle {
        font-size: var(--vc-font-size-base);
    }
}

@media (max-width: 374px) {
    /* Very small screens — single column for categories */
    .vc-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vc-category-card img {
        width: 100%;
        height: auto;
    }

    .vc-products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   New Homepage Sections
   ========================================================================== */

/* Section heading overrides — uppercase Audiowide */
.vc-section__title {
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
    text-align: center;
}

/* 4-column product grid variant */
.vc-products-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .vc-products-grid--4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Category Showcase */
.vc-category-showcase {
    background: transparent;
    margin-top: -165px;
    position: relative;
    z-index: 6;
    padding: 0;
}

.vc-showcase__grid {
    display: flex;
    max-width: 1360px;
    min-height: 400px;
    height: 423px;
    margin: 0 auto;
}

.vc-showcase__card {
    display: flex;
    width: 50%;
    height: 423px;
    padding: 82px 0;
    align-items: flex-end;
}

.vc-showcase__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 259px;
    background-size: cover;
    background-position: center;
    background-color: #2a1a3e;
    padding: 0 10px;
    text-decoration: none;
    color: #fff;
}

.vc-showcase__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 20px;
    padding: 10px 0;
}

.vc-showcase__title-wrap {
    margin-left: 30px;
}

.vc-showcase__title {
    font-family: 'Audiowide', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 31px;
    margin: 0;
}

.vc-showcase__cta-wrap {
    text-align: right;
}

.vc-showcase__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #000;
    color: #fff;
    height: 57px;
    padding: 5px 20px;
    line-height: 45px;
    border-radius: 30px;
    border: 1px solid #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.vc-showcase__cta svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.vc-showcase__inner:hover .vc-showcase__cta {
    background-color: #FFFFFFE0;
    color: #000;
    border-color: #fff;
}

.vc-showcase__inner:hover .vc-showcase__cta svg {
    fill: #000;
}

@media (max-width: 1024px) {
    .vc-category-showcase {
        margin-top: -120px;
    }

    .vc-showcase__grid {
        height: auto;
        min-height: auto;
    }

    .vc-showcase__card {
        height: auto;
        padding: 50px 0;
    }

    .vc-showcase__inner {
        min-height: 200px;
    }

    .vc-showcase__title {
        font-size: 22px;
        line-height: 28px;
    }

    .vc-showcase__title-wrap {
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    .vc-category-showcase {
        margin-top: -60px;
    }

    .vc-showcase__grid {
        flex-direction: column;
    }

    .vc-showcase__card {
        width: 100%;
        padding: 10px 0;
    }

    .vc-showcase__inner {
        min-height: 180px;
    }

    .vc-showcase__title {
        font-size: 18px;
        line-height: 22px;
    }

    .vc-showcase__title-wrap {
        margin-left: 15px;
    }

    .vc-showcase__cta {
        font-size: 10px;
        height: 44px;
        padding: 4px 16px;
        letter-spacing: 1.5px;
    }
}

/* Product Section (reusable) */
.vc-product-section {
    background: var(--vc-bg-body);
}

/* Flavor Banner */
.vc-flavor-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 218px;
    max-height: 218px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 1360px;
    margin: 0 auto 30px;
}

.vc-flavor-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.vc-flavor-banner__heading {
    font-family: 'Audiowide', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.vc-flavor-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    height: 50px;
    padding: 0 30px;
    border-radius: 30px;
    border: 1px solid #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.vc-flavor-banner__btn:hover {
    background-color: #FFFFFFE0;
    color: #000;
}

@media (max-width: 767px) {
    .vc-flavor-banner {
        min-height: 200px;
    }

    .vc-flavor-banner__heading {
        font-size: 28px;
    }

    .vc-flavor-banner__btn {
        font-size: 12px;
        padding: 0 20px;
        height: 44px;
    }
}


.vc-flavor-card__name {
    color: #fff;
    font-family: 'Audiowide', sans-serif;
    font-weight: 400;
    font-size: var(--vc-font-size-lg);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    padding: 0.5rem;
}

/* Promo Banners (E-LIQUIDS + VAPE MODS side by side) */
.vc-promo-banners {
    margin-bottom: 30px;
    padding: 0;
}

.vc-promo-banners__grid {
    display: flex;
    max-width: 1360px;
    height: 375px;
    margin: 0 auto;
}

.vc-promo-banners__col {
    display: flex;
    width: 50%;
    height: 375px;
    padding: 0 15px;
}

.vc-promo-banner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 375px;
    min-height: 375px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a2e;
    padding-left: 30px;
}

.vc-promo-banner__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    gap: 10px;
}

.vc-promo-banner__heading {
    font-family: 'Audiowide', sans-serif;
    font-size: 45px;
    font-weight: 400;
    color: #fff;
    line-height: 54px;
    margin: 0;
}

.vc-promo-banner__subheading {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 27px;
    margin: 0;
    text-transform: uppercase;
}

.vc-promo-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #000;
    color: #fff;
    height: 47px;
    padding: 0 10px;
    line-height: 45px;
    border-radius: 30px;
    border: 1px solid #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    transition: 0.3s;
}

.vc-promo-banner__btn svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.vc-promo-banner__btn:hover {
    background-color: #FFFFFFE0;
    color: #000;
    border-color: #fff;
}

.vc-promo-banner__btn:hover svg {
    fill: #000;
}

@media (max-width: 1024px) {
    .vc-promo-banners__grid {
        height: auto;
    }

    .vc-promo-banners__col {
        height: auto;
    }

    .vc-promo-banner {
        height: 300px;
        min-height: 300px;
    }

    .vc-promo-banner__heading {
        font-size: 32px;
        line-height: 40px;
    }

    .vc-promo-banner__subheading {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .vc-promo-banners__grid {
        flex-direction: column;
    }

    .vc-promo-banners__col {
        width: 100%;
        padding: 0;
    }

    .vc-promo-banner {
        height: 280px;
        min-height: 280px;
        padding-left: 20px;
    }

    .vc-promo-banner__heading {
        font-size: 28px;
        line-height: 34px;
    }

    .vc-promo-banner__subheading {
        font-size: 12px;
    }
}

/* Brand Grid (Chemist + ELFLIQ + Colors) */
.vc-brand-grid {
    padding: 0;
    margin-bottom: 55px;
}

.vc-brand-grid__container {
    display: flex;
    max-width: 1360px;
    margin: 0 auto;
}

/* Left column */
.vc-brand-grid__card--tall {
    display: flex;
    flex-direction: column;
    width: 50%;
    min-height: 548px;
    padding: 0 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a2a3a;
    text-decoration: none;
    color: #fff;
}

/* Right column wrapper */
.vc-brand-grid__right {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-left: 20px;
}

.vc-brand-grid__card {
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
}

.vc-brand-grid__card--elfliq {
    min-height: 262px;
    background-color: #f5f5f5;
    padding: 0 10px;
}

.vc-brand-grid__card--colors {
    min-height: 262px;
    background-color: #1a1a2e;
    margin-top: 25px;
    padding: 0 0 0 40px;
}

.vc-brand-grid__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    flex: 1;
    gap: 12px;
    padding: 30px 0;
}

.vc-brand-grid__content--chemist {
    justify-content: center;
    align-items: flex-start;
}

.vc-brand-grid__content--colors {
    justify-content: center;
}

.vc-brand-grid__heading {
    font-family: 'Audiowide', sans-serif;
    font-size: 45px;
    font-weight: 400;
    color: #fff;
    line-height: 54px;
    margin: 0;
}

.vc-brand-grid__heading--colors {
    font-family: 'Audiowide', sans-serif;
    font-size: 45px;
    font-weight: 400;
}

.vc-brand-grid__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #000;
    color: #fff;
    height: 47px;
    padding: 0 10px;
    line-height: 45px;
    border-radius: 30px;
    border: 1px solid #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    transition: 0.3s;
}

.vc-brand-grid__btn svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.vc-brand-grid__btn:hover {
    background-color: #FFFFFFE0;
    color: #000;
}

.vc-brand-grid__btn:hover svg {
    fill: #000;
}

@media (max-width: 767px) {
    .vc-brand-grid__container {
        flex-direction: column;
    }

    .vc-brand-grid__card--tall {
        width: 100%;
        min-height: 350px;
        padding: 0 20px;
    }

    .vc-brand-grid__right {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }

    .vc-brand-grid__card--elfliq,
    .vc-brand-grid__card--colors {
        min-height: 200px;
    }

    .vc-brand-grid__heading {
        font-size: 30px;
        line-height: 36px;
    }
}

/* Flavour Selector */
.vc-flavour-selector {
    background: var(--vc-bg-body);
}

.vc-section__footer {
    text-align: center;
    margin-top: 2rem;
}

.vc-flavour-selector__banner {
    margin-top: 2.5rem;
    text-align: center;
}

.vc-flavour-selector__banner img {
    max-width: 1080px;
    width: 100%;
    height: auto;
    aspect-ratio: 1080 / 608;
    object-fit: cover;
    border-radius: var(--vc-radius);
}

/* Top Rating */
.vc-top-rating {
    background: var(--vc-bg-body);
}

.vc-product-card__rating {
    margin-bottom: 0.25rem;
}

.vc-product-card__rating .star-rating {
    font-size: 0.875rem;
    color: #f0ad4e;
}

/* Brand Carousel */
.vc-brand-carousel {
    background: var(--vc-bg-body);
    padding: 3rem 0;
}

.vc-brand-carousel .vc-section__title {
    margin-bottom: 2rem;
}

.vc-brand-carousel__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.vc-brand-carousel__item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: var(--vc-radius);
    padding: 1.5rem 1rem;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vc-brand-carousel__item:hover {
    border-color: #bbb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.vc-brand-carousel__item img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}

.vc-brand-carousel__item:hover img {
    filter: none;
}

.vc-brand-carousel__name {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #222;
    text-transform: none;
    letter-spacing: 0;
}

/* Mobile adjustments for new sections */
@media (max-width: 767px) {
    .vc-flavor-card__name {
        font-size: var(--vc-font-size-sm);
    }


    .vc-brand-carousel__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .vc-brand-carousel__item img {
        max-height: 30px;
    }

    .vc-brand-carousel__name {
        font-size: 1rem;
    }
}
