:root {
    --brand-color: #9102C5;
    --brand-purple: #9102C5;
}

.banners p {font-weight: bold;font-size: 17px;}
.banners p span {
    background-color: var(--brand-color);
    padding: 0 8px;
    border-radius: 4px;
    color: white; /* чтобы текст был читаемым на тёмном фоне */
}

.button {border: 1px solid var(--brand-color);border-radius:5px;}
.button--small {font-size: 1.9rem;}
.banners {    padding: 10px !important;}
.banners .banners__consultation {border-radius:  0px 0px 10px 10px !important;}
.banners .banners__consultation p {text-align: center}
.banners #banners {border-radius: 10px 10px 0px 0px !important;}


:root {
    --brand-purple: #9102C5;
}

/* Ряд в одну строку */
.catalog-row {
    display: flex;
    gap: 20px;
    padding: 20px 5px;
    margin: 0 auto;
}

/* Каждая карточка */
.catalog-card {
    position: relative;
    display: flex;
    flex: 1;
    background-color: var(--brand-purple);
    border-radius: 16px;
    padding: 28px 24px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.catalog-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(145, 2, 197, 0.35);
}

/* Полупрозрачная иконка фотоаппарата на фоне */
.card-bg-icon {
    position: absolute;
    right: 0px;
    bottom: 0px;
    opacity: 1;
    pointer-events: none;
    user-select: none;
}

.card-bg-icon img {
    width: 50px;
    height: auto;
    display: block;
}

/* Контент внутри карточки */
.card-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    z-index: 1;
}

/* Текст */
.card-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1.2px;
    line-height: 1.3;
    flex: 1;
}

/* Стрелка в кружке */
.card-arrow {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-arrow svg {
    width: 31px;
    height: 31px;
}

.catalog-card:hover .card-arrow {
    transform: translateX(4px);
}

