.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 32px 0;
}
.info-panel {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}
.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.info-item i {
    font-size: 28px;
    color: var(--ozon-blue);
}
.info-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.info-item p {
    color: var(--text-muted);
    font-size: 14px;
}
.map-placeholder {
    background-color: #cbd5e1;
    border-radius: var(--radius-md);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.map-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, #94a3b8 100%);
    opacity: 0.3;
}
.map-pin-icon {
    font-size: 48px;
    color: var(--ozon-red);
    animation: bounce 2s infinite;
    z-index: 2;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
