/* ==========================================================================
   Store Types Header
   ========================================================================== */

.m-store-type__header {
    display: flex;
    align-items: center;
    gap: 40px 20px;
    flex-wrap: wrap;
}

.m-store-type__header-logo {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 12px;
    width: 220px;
}

.m-store-type__header-logo img {
    display: block;
    height: auto;
    max-height: 120px;
    width: auto;
    max-width: 100%;
}

.m-store-type__header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.m-store-type__header-content h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #595959;
    text-transform: capitalize;
    margin: 0;
}

.m-store-type__header-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #595959;
    margin: 0;
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
    .m-store-type__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .m-store-type__header-logo {
        flex: none;
        max-width: 100%;
        padding-right: 0;
    }
}

