.store-info {
        max-width: 1900px;
        margin: 0 auto;
        padding: 40px;
    }

    .store-info-header__container {
        display: flex;
        flex-wrap: wrap;
        gap: 60px;
        margin-top: 20px;
    }

    .store-info-header__left {
        flex: 1;
        min-width: 320px;
    }

    .store-info-header__right {
        flex: 1;
        min-width: 320px;
    }

    .store-info-header__right img {
        width: 100%;
        object-fit: cover;
    }

    .store-info-header__left h1 {
        font-size: 40px;
        font-weight: 600;
        letter-spacing: -0.5px;
        margin-bottom: 30px;
    }

    .store-contact-section h2,
    .store-hours-section h2 {
        font-size: 20px;
        font-weight: 600;
        margin-top: 30px;
        margin-bottom: 30px;
        letter-spacing: -0.5px;
    }

    .store-contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .store-contact-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        color: #333;
        margin-bottom: 16px;
    }

    .store-contact-list svg {
        display: inline-block;
        width: 25px;
        height: 25px;
        color: #3643ba;
    }

    .store-hours-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        color: #444;
    }

    .store-hours-table td {
        padding: 6px 0;
    }

    .store-special-link {
        display: inline-block;
        margin-top: 12px;
        font-size: 14px;
        font-weight: 500;
        color: #3b3b3b;
        text-decoration: none;
        border: 1px solid #ccc;
        border-radius: 50px;
        padding: 7px 15px;
    }

    .store-special-link:hover {
        border: 1px solid #3643ba;
        color: #3643ba;
    }

    @media (max-width: 768px) {
        .store-info-header__container {
            flex-direction: column;
        }

        .store-info {
            padding: 20px;
        }
    }

    .store-about-services__container {
        display: flex;
        flex-wrap: wrap;
        gap: 60px;
        margin-top: 50px;
    }

    .store-about-services__left,
    .store-about-services__right {
        flex: 1;
        min-width: 300px;
    }

    .store-about-services__left h2,
    .store-about-services__right h2 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    .store-about-services__left p {
        font-size: 15px;
        line-height: 1.6;
        color: #333;
        margin-bottom: 30px;
    }

    .store-services-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .store-services-list li {
        display: flex;
        gap: 12px;
        margin-bottom: 20px;
    }

    .store-services-list svg {
        flex-shrink: 0;
        width: 35px;
        height: 35px;
    }


    .store-services-list strong {
        font-size: 15px;
        color: #111;
        font-weight: 500 !important;
        letter-spacing: -0.5px;
    }

    .store-services-list p {
        font-size: 14px;
        color: #444;
        margin: 5px 0 0;
    }

    @media (max-width: 768px) {
        .store-about-services__container {
            flex-direction: column;
        }
    }

    .back-link-stores {
        text-decoration: none;
        color: #111;
    }

    .back-link-stores:hover {
        color: #3643ba;
    }

    .store-hours-table .status-dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin-right: 10px;
        vertical-align: middle;
    }

    .store-hours-table .stores-open-day .status-dot {
        background-color: green;
        animation: pulse 2s infinite;
    }

    .store-hours-table .stores-closed-day .status-dot {
        background-color: #e20c18;
    }

    .store-hours-table .stores-open-day td:last-child {
        color: green;
        font-weight: bold;
    }

    .store-hours-table .stores-closed-day td:last-child {
        color: #e20c18;
        font-weight: bold;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
        }

        70% {
            box-shadow: 0 0 0 8px rgba(40, 167, 69, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
        }
    }