.store-content {
    margin: 50px 0px 50px 50px;
}

.store-content .store-profile-section {
    display: flex;
}

.store-content .store-profile-section .store-card {
    min-width: 250px;
    margin-right: 32px;
    border-radius: 4px;
    background-color: var(--alternative-background);
    box-shadow: 0 2px 4px rgba(var(--tertiary-color-rgb), .2);
}

.store-content .store-profile-section .store-card .store-card-img {
    display: block;
    width: 50%;
    margin: 22px auto;
}

.store-content .store-profile-section .store-card .store-card-footer {
    margin: 0;
    width: 100%;
    padding: 18px 0;
    font-size: 24px;
    font-weight: 900;
    font-family: Roboto;
    text-align: center;
    color: var(--secondary-color);
    border-top: solid 1px var(--secondary-color);
}

.store-content .store-title {
    margin-bottom: 12px;
    font-size: 32px;
    font-weight: 700;
    font-family: Roboto;
    color: var(--secondary-color);
}

.store-content .store-text-container {
    max-width: 700px;
}

.store-content .store-text-container .store-text {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    font-family: Roboto;
    color: var(--primary-font-color);
}

.store-content .store-profile-section .store-cta-button {
    margin-top: 22px;
    width: 50%;
    height: 48px;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 40px;
    color: var(--secondary-font-color);
    background-color: var(--secondary-color);
    box-shadow: 0 3px 6px var(--shadow-color);
    cursor: pointer;
}

.store-content .store-profile-section .store-cta-button:hover {
    background-color: var(--hover-color);
}

.store-content .store-category-section {
    margin-top: 82px;
}

.store-content .store-category-section .store-categories-container {
    display: flex;
    flex-wrap: wrap;
}

.store-content .store-category-section .store-categories-container .store-category {
    margin: 32px 22px 0 0;
}

.store-content .store-category-section .store-categories-container .store-category .store-category-name {
    margin: 0;
    font-family: Roboto;
    font-weight: 400;
    font-size: 15px;
    color: var(--primary-font-color);
}

.store-content .store-category-section .store-categories-container .store-category .store-category-value {
    margin: 8px 0 0 0;
    font-family: Roboto;
    font-weight: 700;
    font-size: 22px;
    color: var(--secondary-color);
}

.store-content .store-conditions-section {
    margin-top: 82px;
}

.store-content .store-conditions-section .store-condition-container {
    display: flex;
    align-items: center;
    margin: 22px 0;
}

.store-content .store-conditions-section .store-condition-container .store-condition-marker {
    width: 12px;
    height: 100%;
    margin-right: 22px;
}

.store-content .store-conditions-section .store-condition-container .store-condition-marker::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-color)
}

.store-content .store-conditions-section .store-condition-container .store-condition-description {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    font-family: Roboto;
    color: var(--primary-font-color);
}

.store-content .store-suggestions-section{
    margin-top: 82px;
}

.store-cards-container {
    display: grid;
    max-width: 800px;
    margin-top: 32px;
    grid-column-gap: 16px;
    grid-template-columns: repeat(4, 30%);
    margin-bottom: 40px;
}