/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ МАГАЗИНА НА ЭКСПОБЕЛЕ ===== */

.mvelo-expobel {
    margin: 0;
    padding: 0;
    width: 100%;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.mvelo-container {
    width: 100%;
    max-width: 1200px;
    padding: 24px 32px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ===== ХЕДЕР С ГОДАМИ РАБОТЫ ===== */
.mvelo-header {
    margin-bottom: 32px;
}

.mvelo-years-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #f9fafc 0%, #ffffff 100%);
    border: 1px solid #eaeef2;
    border-radius: 60px;
    padding: 12px 32px;
}

.mvelo-years-number {
    font-size: 28px;
    font-weight: 700;
    color: #1f2a3a;
    line-height: 1.2;
}

.mvelo-years-text {
    font-size: 14px;
    color: #54656f;
}

/* ===== ВСТУПЛЕНИЕ ===== */
.mvelo-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: #1f2a3a;
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 24px;
    padding: 32px;
}

.mvelo-intro p {
    margin: 0;
}

.mvelo-intro strong {
    color: #1f2a3a;
    font-weight: 600;
}

/* ===== СЕТКА ИНФОРМАЦИИ ===== */
.mvelo-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 0 48px 0;
}

.mvelo-info-card {
    background: white;
    border: 1px solid #eaeef2;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: box-shadow 0.2s ease;
}

.mvelo-info-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: #d0d7de;
}

.mvelo-info-icon {
    width: 48px;
    height: 48px;
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1f2a3a;
}

.mvelo-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.mvelo-info-content {
    flex: 1;
}

.mvelo-info-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 12px 0;
}

.mvelo-info-text {
    font-size: 15px;
    line-height: 1.5;
    color: #1f2a3a;
    margin: 0 0 8px 0;
}

.mvelo-info-note {
    font-size: 14px;
    color: #54656f;
    margin: 0;
}

/* ===== РЕЖИМ РАБОТЫ ===== */
.mvelo-schedule {
    margin-bottom: 16px;
}

.mvelo-schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 15px;
    border-bottom: 1px solid #eaeef2;
}

.mvelo-schedule-row:last-child {
    border-bottom: none;
}

.mvelo-schedule-off {
    color: #ea4335;
}

.mvelo-schedule-day {
    color: #54656f;
}

.mvelo-schedule-time {
    font-weight: 500;
    color: #1f2a3a;
}

/* Подсветка текущего дня */
.mvelo-schedule-today .mvelo-schedule-day {
    font-weight: 600;
    color: #1f2a3a;
}

.mvelo-schedule-today .mvelo-schedule-time {
    font-weight: 600;
    color: #1f2a3a;
    background: #fff8e6;
    padding: 2px 8px;
    border-radius: 20px;
}

/* Статус работы с точкой */
.mvelo-working-status {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eaeef2;
}

.mvelo-status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mvelo-status-dot.open {
    background: #34a853;
    box-shadow: 0 0 5px rgba(52, 168, 83, 0.3);
}

.mvelo-status-dot.closed {
    background: #ea4335;
    box-shadow: 0 0 5px rgba(234, 67, 53, 0.3);
}

.mvelo-status-text {
    font-size: 14px;
    font-weight: 500;
    color: #1f2a3a;
}

.mvelo-status-message {
    font-size: 13px;
    color: #5f6368;
    margin-left: 4px;
}

/* ===== КОНТАКТЫ ===== */
.mvelo-phone,
.mvelo-email {
    color: #1f2a3a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.mvelo-phone:hover,
.mvelo-email:hover {
    border-bottom-color: #fff300;
}

/* ===== ЗАГОЛОВКИ СЕКЦИЙ ===== */
.mvelo-section-title {
    font-size: 28px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 48px 0 32px 0;
    letter-spacing: -0.01em;
    text-align: center;
}

.mvelo-section-title:first-of-type {
    margin-top: 32px;
}

/* ===== ФОТОГРАФИИ ===== */
.mvelo-photos {
    margin-bottom: 48px;
}

.mvelo-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.mvelo-photo-item {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #f6f8fa;
    border: 1px solid #eaeef2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mvelo-photo-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #d0d7de;
}

.mvelo-photo-main {
    grid-column: span 2;
    height: 280px;
}

.mvelo-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== СХЕМА ПРОХОДА ===== */
.mvelo-scheme {
    margin-bottom: 48px;
}

.mvelo-scheme-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: white;
    border: 1px solid #eaeef2;
    border-radius: 24px;
    padding: 32px;
}

.mvelo-scheme-image {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #f6f8fa;
    border: 1px solid #eaeef2;
}

.mvelo-scheme-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mvelo-scheme-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mvelo-scheme-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 20px 0;
}

.mvelo-scheme-steps {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mvelo-scheme-steps li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #1f2a3a;
    line-height: 1.5;
    border-bottom: 1px solid #eaeef2;
}

.mvelo-scheme-steps li:last-child {
    border-bottom: none;
}

.mvelo-scheme-steps li:before {
    content: "→";
    color: #fff300;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
}

/* ===== ТРАНСПОРТ ===== */
.mvelo-transport {
    margin-bottom: 48px;
}

.mvelo-transport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.mvelo-transport-card {
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 20px;
    padding: 24px;
}

.mvelo-transport-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 12px 0;
}

.mvelo-transport-intro {
    font-size: 14px;
    color: #54656f;
    margin: 0 0 16px 0;
}

.mvelo-route-group {
    margin-bottom: 20px;
}

.mvelo-route-group h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 10px 0;
}

.mvelo-route-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.mvelo-route-tag {
    display: inline-block;
    padding: 4px 12px;
    background: white;
    border: 1px solid #eaeef2;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #1f2a3a;
}

.mvelo-route-note {
    font-size: 13px;
    color: #54656f;
    margin: 5px 0;
    padding-left: 8px;
    border-left: 2px solid #fff300;
}

.mvelo-transport-map-note {
    background: #fff8e6;
    border: 1px solid #fff300;
    border-radius: 16px;
    padding: 20px;
    margin-top: 16px;
}

.mvelo-transport-map-note p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #1f2a3a;
}

.mvelo-transport-map-note p:last-child {
    margin-bottom: 0;
}

/* ===== КАТЕГОРИИ ТОВАРОВ ===== */
.mvelo-categories {
    margin-bottom: 48px;
}

.mvelo-categories-intro {
    max-width: 800px;
    margin: 0 auto 32px;
    text-align: center;
    font-size: 16px;
    color: #54656f;
    line-height: 1.6;
}

.mvelo-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mvelo-category-card {
    display: block;
    padding: 24px 20px;
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mvelo-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #d0d7de;
    background: white;
}

.mvelo-category-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 10px 0;
}

.mvelo-category-desc {
    font-size: 14px;
    color: #54656f;
    margin: 0;
    line-height: 1.5;
}

/* ===== ПРЕИМУЩЕСТВА ===== */
.mvelo-advantages {
    margin-bottom: 48px;
}

.mvelo-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mvelo-advantage-item {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border: 1px solid #eaeef2;
    border-radius: 20px;
    transition: box-shadow 0.2s ease;
}

.mvelo-advantage-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: #d0d7de;
}

.mvelo-advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2a3a;
}

.mvelo-advantage-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.mvelo-advantage-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 12px 0;
}

.mvelo-advantage-text {
    font-size: 14px;
    color: #54656f;
    margin: 0;
    line-height: 1.6;
}

/* ===== СПОСОБЫ ОПЛАТЫ ===== */
.mvelo-payment {
    margin-bottom: 48px;
}

.mvelo-payment-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 60px;
    padding: 24px 40px;
}

.mvelo-payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #1f2a3a;
}

.mvelo-payment-method svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

/* ===== КНОПКИ КАРТ ===== */
.mvelo-map-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.mvelo-map-button {
    padding: 14px 28px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mvelo-map-yandex {
    background: #ffd700;
    color: #1f2a3a;
}

.mvelo-map-yandex:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}

.mvelo-map-google {
    background: white;
    color: #1f2a3a;
    border: 1px solid #d0d7de;
}

.mvelo-map-google:hover {
    background: #f6f8fa;
    border-color: #9aa9b9;
    transform: translateY(-2px);
}

/* ===== КНОПКА CTA ===== */
.mvelo-cta {
    margin: 48px 0 32px;
    text-align: center;
}

.mvelo-cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #1f2a3a;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 60px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mvelo-cta-button:hover {
    background: #2c3a4f;
    transform: translateY(-2px);
}

/* ===== МОДАЛЬНОЕ ОКНО ===== */
.mvelo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.mvelo-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.mvelo-modal-content img {
    max-width: 100%;
    max-height: 85vh;
    display: block;
    border-radius: 8px;
}

.mvelo-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.mvelo-modal-close:hover {
    opacity: 1;
}

/* ===== FAQ ===== */
.mvelo-faq {
    max-width: 900px;
    margin: 48px auto 32px;
    padding: 32px 0 0;
    border-top: 1px solid #eaeef2;
}

.mvelo-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.mvelo-faq-item {
    border: 1px solid #eaeef2;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    transition: box-shadow 0.2s ease;
}

.mvelo-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: #d0d7de;
}

.mvelo-faq-item.active {
    border-color: #d0d7de;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.mvelo-faq-question {
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #1f2a3a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.2s;
    user-select: none;
}

.mvelo-faq-question:hover {
    background: #f9fafc;
}

.mvelo-faq-icon {
    font-size: 22px;
    color: #7e8c9e;
    font-weight: 400;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.mvelo-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.mvelo-faq-answer p,
.mvelo-faq-answer ul {
    margin: 0;
    padding: 0 24px 24px 24px;
    font-size: 15px;
    color: #54656f;
    line-height: 1.6;
}

.mvelo-faq-answer ul {
    padding-left: 48px;
    margin-top: -12px;
}

.mvelo-faq-answer li {
    margin-bottom: 6px;
}

.mvelo-faq-answer a {
    color: #1f2a3a;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: #eaeef2;
    transition: text-decoration-color 0.2s;
}

.mvelo-faq-answer a:hover {
    text-decoration-color: #fff300;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
    .mvelo-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mvelo-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mvelo-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mvelo-transport-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mvelo-scheme-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mvelo-container {
        padding: 20px;
    }
    
    .mvelo-intro {
        padding: 24px;
        font-size: 16px;
    }
    
    .mvelo-years-number {
        font-size: 24px;
    }
    
    .mvelo-info-grid {
        grid-template-columns: 1fr;
    }
    
    .mvelo-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mvelo-advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .mvelo-transport-grid {
        grid-template-columns: 1fr;
    }
    
    .mvelo-payment-methods {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        border-radius: 24px;
    }
    
    .mvelo-map-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mvelo-map-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .mvelo-photo-main {
        grid-column: span 1;
        height: 200px;
    }
    
    .mvelo-faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .mvelo-faq-answer p,
    .mvelo-faq-answer ul {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
    
    .mvelo-faq-answer ul {
        padding-left: 40px;
    }
}

@media (max-width: 480px) {
    .mvelo-container {
        padding: 16px;
    }
    
    .mvelo-years-badge {
        padding: 10px 20px;
    }
    
    .mvelo-years-number {
        font-size: 22px;
    }
    
    .mvelo-section-title {
        font-size: 24px;
        margin: 32px 0 24px;
    }
    
    .mvelo-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mvelo-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .mvelo-scheme-steps li {
        font-size: 14px;
    }
    
    .mvelo-payment-methods {
        padding: 20px;
    }
    
    .mvelo-cta-button {
        width: 100%;
        text-align: center;
    }
    
    .mvelo-faq-question {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .mvelo-faq-icon {
        font-size: 20px;
    }
}