 .store-block-main {
        background: radial-gradient(circle at top right, rgba(255, 204, 0, 0.18), transparent 30%), radial-gradient(circle at left bottom, rgba(10, 165, 101, 0.12), transparent 35%), #fff;
        border-radius: 6px;
        padding: 20px;
        margin-bottom: 20px;
        margin-top: 40px;
    }

    .store-block-main-title {
        margin: 0 0 10px;
        font-size: 36px;
        line-height: 36px;
        font-weight: 700;
    }

    .store-block-main-subtitle {
        margin: 0 0 20px;
        font-size: 24px;
        line-height: 24px;
        font-weight: 700;
    }

    .store-block-main-address-line {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-height: 24px;
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 18px;
    }

    .store-block-icon {
        position: relative;
        display: inline-flex;
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        align-items: center;
        justify-content: center;
    }

    .store-block-icon::before {
        content: "";
        display: block;
        width: 18px;
        height: 18px;
        border-radius: 50%;
    }

    .icon--pin::before {
        background: linear-gradient(180deg, #ff9f43 0%, #f16822 100%);
        clip-path: polygon(50% 0%, 78% 16%, 88% 40%, 82% 62%, 50% 100%, 18% 62%, 12% 40%, 22% 16%);
    }

    .icon--phone::before {
        background: linear-gradient(180deg, #18b76f 0%, #0a9d60 100%);
        clip-path: polygon(24% 18%, 40% 12%, 52% 22%, 44% 34%, 54% 46%, 66% 38%, 78% 48%, 72% 62%, 58% 74%, 40% 70%, 26% 56%, 16% 38%);
    }

    .icon--clock::before {
        background: transparent;
        border: 3px solid #0aa565;
        box-sizing: border-box;
    }

    .icon--clock::after {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        border-left: 2px solid #0aa565;
        border-bottom: 2px solid #0aa565;
        left: 11px;
        top: 7px;
        transform: rotate(-45deg);
    }

    .icon--box::before {
        background: linear-gradient(180deg, #29b875 0%, #15985d 100%);
        clip-path: polygon(20% 26%, 50% 10%, 80% 26%, 80% 74%, 50% 90%, 20% 74%);
        border-radius: 4px;
    }

    .icon--briefcase::before {
        background: linear-gradient(180deg, #1ab871 0%, #0b9f61 100%);
        border-radius: 4px;
        clip-path: polygon(12% 30%, 32% 30%, 36% 18%, 64% 18%, 68% 30%, 88% 30%, 88% 82%, 12% 82%);
    }

    .icon--metro::before {
        background: linear-gradient(180deg, #14b56f 0%, #0a9d60 100%);
        clip-path: polygon(16% 84%, 34% 16%, 50% 48%, 66% 16%, 84% 84%, 66% 84%, 56% 52%, 50% 64%, 44% 52%, 34% 84%);
        border-radius: 0;
    }

    .icon--car::before {
        background: linear-gradient(180deg, #18b76f 0%, #0a9d60 100%);
        clip-path: polygon(20% 56%, 28% 34%, 72% 34%, 80% 56%, 84% 56%, 84% 72%, 76% 72%, 72% 82%, 62% 82%, 58% 72%, 42% 72%, 38% 82%, 28% 82%, 24% 72%, 16% 72%, 16% 56%);
        border-radius: 4px;
    }

    .btn-icon {
        font-size: 20px;
        line-height: 1;
        margin-right: 5px;
    }

    .store-block-main-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .btn-main.store-block-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px 40px !important;
        height: auto ;
    }

    .store-block-btn-green {
        background: linear-gradient(180deg, #14b56f 0%, #0a9d60 100%);
        color: #fff;
    }

    .store-block-btn-yellow {
        background: linear-gradient(180deg, #ffd73d 0%, #ffcc00 100%);
        color: #1b1f23;
    }

    .store-block-grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .store-block {
        padding: 20px;
        min-height: 180px;
        background: white;
        border-radius: 6px;
    }

    .store-block__title {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        font-weight: 700;
    }

    .store-block__body {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e7ece8;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .store-block__body p {
        margin: 0;
        font-size: 16px;
    }

    .store-block__body a {
        font-size: 16px;
        font-weight: 700;
    }

    .store-department {
        margin-bottom: 40px;
    }

    .store-department__head {
        margin-bottom: 20px;
    }

    .store-department__title {
        margin: 0 0 10px;
        font-size: 32px;
        line-height: 32px;
        font-weight: 700;
    }

    .store-department__desc {
        margin: 0;
        font-size: 16px;
        line-height: 24px;
        color: #989898;
    }

    .store-department__grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;
    }

    .store-block__name {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        font-weight: 700;
    }

    .store-block__link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 700;
        word-break: break-word;
    }

    .store-block__link.link--email {
        font-size: 15px;
        font-weight: 600;
        color: #989898;
    }

    .store-block__meta {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-top: 10px;
        padding: 10px;
        background: #f7faf8;
        border: 1px solid #e3ece6;
        border-radius: 6px;
        width: 100%;
    }

    .store-block__meta-label {
        font-size: 12px;
        font-weight: 700;
        color: #989898;
        text-transform: uppercase;
    }

    .store-block__meta-value {
        font-size: 14px;
        font-weight: 700;
    }


    .store-accordion {
        background: transparent;
        margin-bottom: 20px;
    }

    .store-accordion__head {
        width: 100%;
        background: #fff;
        border: none;
        border-radius: 6px;
        padding: 20px;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        cursor: pointer;
    }

    .accordion__arrow {
        width: 14px;
        height: 14px;
        border-right: 2px solid #4c5650;
        border-bottom: 2px solid #4c5650;
        transform: rotate(45deg);
        transition: transform 0.2s ease;
        flex: 0 0 auto;
        margin-top: -4px;
    }

    .accordion--open .accordion__arrow {
        transform: rotate(-135deg);
        margin-top: 4px;
    }

    .store-accordion__title {
        font-size: 24px;
        font-weight: 700;
    }

    .store-accordion__body {
        margin-top: 20px;
    }

    .store-extra-box {
        padding: 20px;
        background: white;
        border-radius: 6px;
    }

    .store-extra-box__phones {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 10px;
    }

    .store-extra-box__phones a {
        font-weight: 700;
    }

    @media screen and (min-width: 500px) {
        .store-block-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media screen and (min-width: 992px) {
        .store-block-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .store-department__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }