﻿.store-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.store-section-card {
    min-height: 222px;
    border-radius: 10px;
    padding: 22px;
    background: #ffffff;
}

.store-section-card--cargo {
    border: 1px solid var(--store-blue-border);
    background: linear-gradient(135deg, var(--store-blue-light), #ffffff);
}

.store-section-card--auto {
    border: 1px solid #bdebd5;
    background: linear-gradient(135deg, #f5fff9, #ffffff);
}

.store-section-card--equipment {
    border: 1px solid #ffdca3;
    background: linear-gradient(135deg, #fffaf0, #ffffff);
}

.store-section-card__top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.store-section-card__icon {
    width: 86px;
    height: 86px;
    border-radius: 16px;
    background: rgba(255,255,255,0.78);
    border: 1px dashed #b7c5e3;
    color: #7b8aa7;
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.store-section-card__icon--cargo {
    border-color: #93c5fd;
}

.store-section-card__icon--auto {
    border-color: #aee7cc;
}

.store-section-card__icon--equipment {
    border-color: #ffd48d;
}

.store-section-card h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
}

.store-section-card p {
    margin: 8px 0 0;
    color: #25304b;
    line-height: 1.4;
}

.store-section-card__buttons {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.store-section-card__add {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: var(--store-blue-dark);
    font-weight: 700;
}

.store-section-card__add--green {
    color: #03945b;
}

.store-section-card__add--orange {
    color: #f39200;
}

.store-section-card__add-choice {
    position: relative;
    margin-top: 20px;
}

    .store-section-card__add-choice .store-section-card__add {
        width: 100%;
        border: 0;
        background: transparent;
        cursor: pointer;
        margin-top: 0;
        padding: 0;
        font-size: 16px;
        font-family: inherit;
    }

.store-section-card__add-menu {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: 210px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid #dbe6f5;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
    z-index: 20;
}

    .store-section-card__add-menu a {
        display: block;
        padding: 10px 12px;
        border-radius: 10px;
        color: #0b1430;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
    }

        .store-section-card__add-menu a:hover {
            background: #eef6ff;
            color: var(--store-blue-dark);
        }

.store-section-card__add-choice--open .store-section-card__add-menu {
    display: block;
}
