.info-page {
    padding: 40px 0 64px;
}

.info-main {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 44px;
    align-items: start;
    margin-bottom: 32px;
}

.info-text-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-img-col {
    top: 28px;
}

.info-page-title {
    font-size: 28px;
    font-weight: 300;
    color: var(--blue-dark);
    letter-spacing: 0.02em;
    margin-bottom: 22px;
}

.info-text {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 12px;
}

.info-text:last-of-type {
    margin-bottom: 0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-list li {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-main);
    padding-left: 18px;
    position: relative;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue-mid);
}

.info-shop-img {
    width: 100%;
    aspect-ratio: 697 / 494;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 4px 20px rgba(93, 104, 140, 0.13);
}

.info-divider {
    border: none;
    border-top: 1.5px solid var(--border);
    margin: 28px 0 24px;
}

.info-addresses {
    background: var(--beige);
    border-radius: var(--radius-lg);
    padding: 24px 28px 22px;
    margin-bottom: 28px;
}

.info-addresses-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.info-address-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-address-list li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-main);
    padding-left: 18px;
    position: relative;
}

.info-address-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue-mid);
}

.info-addresses-note {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 10px;
}

@media (max-width: 860px) {
    .info-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .info-img-col {
        position: static;
        max-width: 320px;
    }

    .info-shop-img {
        aspect-ratio: 4 / 3;
    }
}

.delivery-page {
    max-width: 780px;
    padding: 40px 0 64px;
}

.delivery-page .info-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.delivery-page .info-block {
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.info-block {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1.5px solid var(--beige);
}

.info-block:last-child { border-bottom: none; margin-bottom: 0; }

.info-heading {
    font-size: 20px;
    font-weight: 400;
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.delivery-link {
    color: var(--blue-dark);
    border-bottom: 1px solid var(--blue-dark);
    padding-bottom: 1px;
    transition: opacity var(--transition);
}

.delivery-link:hover { opacity: 0.65; }

.profile-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 32px 0 52px;
}

.profile-left {
    padding-right: 48px;
    border-right: 1.5px solid var(--beige);
}

.profile-title {
    font-size: 32px;
    font-weight: 300;
    color: var(--blue-dark);
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.profile-logout {
    font-size: 14px;
    color: var(--blue-mid);
    margin-bottom: 36px;
    display: inline-block;
    cursor: pointer;
    transition: color var(--transition);
}

.profile-logout:hover { color: var(--blue-dark); opacity: 1; }

.profile-section-title {
    font-size: 22px;
    font-weight: 300;
    color: var(--blue-dark);
    margin-bottom: 28px;
}

.profile-fields { display: flex; flex-direction: column; gap: 18px; }

.profile-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.profile-fields-row.three { grid-template-columns: 1fr 1fr 1fr; }

.btn-save {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--blue-dark);
    background: var(--white);
    color: var(--blue-dark);
    padding: 14px 48px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    font-family: var(--font-main);
    transition: background var(--transition), color var(--transition);
}

.btn-save:hover { background: var(--blue-dark); color: var(--white); }

.contacts-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    padding: 28px 0 48px;
    align-items: start;
}

.contacts-group { margin-bottom: 28px; }

.contacts-group-label {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
}

.contacts-value {
    font-size: 16px;
    color: var(--blue-dark);
    border-bottom: 1.5px solid var(--blue-dark);
    display: inline-block;
    padding-bottom: 2px;
}

.contacts-messengers-label { font-size: 15px; color: var(--text-main); margin-bottom: 14px; }

.contacts-messengers { display: flex; gap: 22px; }

.messenger-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.35;
    color: var(--text-main);
    transition: color var(--transition);
}

.messenger-link:hover { color: var(--blue-dark); opacity: 1; }
.messenger-link img { width: 32px; height: 32px; }

.contacts-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
}

.contacts-map iframe { width: 100%; height: 100%; border: none; display: block; }
