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

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

.mv-service-appointment {
    margin-bottom: 24px;
}

.mv-appointment-card {
    background: #f8fafc;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.mv-appointment-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mv-appointment-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mv-appointment-text strong {
    font-size: 15px;
    color: #1f2a3a;
}

.mv-appointment-phone {
    font-size: 28px;
    font-weight: 700;
    color: #1f2a3a;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.mv-appointment-phone:hover {
    color: #f2c94c;
}

.mv-appointment-note {
    font-size: 13px;
    color: #7e8c9e;
}

.mv-appointment-buttons {
    display: flex;
    gap: 12px;
}

.mv-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    background: white;
    border: 1px solid #d0d7de;
    color: #1f2a3a;
}

.mv-btn:hover {
    background: #f6f8fa;
    border-color: #9aa9b9;
}

.mv-btn-telegram {
    background: #f2c94c;
    border-color: #f2c94c;
    color: #1f2a3a;
}

.mv-btn-telegram:hover {
    background: #ebbb2c;
    border-color: #ebbb2c;
}

.mv-btn-shop {
    background: white;
    border: 1px solid #d0d7de;
    color: #1f2a3a;
}

.mv-btn-shop:hover {
    background: #f6f8fa;
}

.mv-actor-banner {
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mv-actor-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mv-discount-banner {
    background: #fef9e7;
    border-left: 4px solid #f2c94c;
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 24px;
}

.mv-discount-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mv-discount-badge {
    background: #f2c94c;
    color: #1f2a3a;
    padding: 4px 12px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
}

.mv-discount-text {
    font-size: 15px;
    color: #1f2a3a;
}

.mv-discount-text a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.mv-discount-text a:hover {
    text-decoration: underline;
}

.mv-service-search {
    position: relative;
    margin-bottom: 24px;
}

.mv-service-search-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #eaeef2;
    border-radius: 60px;
    background: white;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.mv-service-search-input:focus {
    outline: none;
    border-color: #f2c94c;
    box-shadow: 0 0 0 4px rgba(242, 201, 76, 0.1);
}

.mv-service-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 100;
    display: none;
}

.mv-search-result-item {
    padding: 14px 20px;
    border-bottom: 1px solid #eaeef2;
    cursor: pointer;
    transition: background 0.2s;
}

.mv-search-result-item:last-child {
    border-bottom: none;
}

.mv-search-result-item:hover {
    background: #f6f8fa;
}

.mv-search-result-name {
    font-weight: 500;
    color: #1f2a3a;
    margin-bottom: 4px;
}

.mv-search-result-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #7e8c9e;
}

.mv-service-cart {
    background: #1f2a3a;
    border-radius: 16px;
    padding: 16px 24px;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    position: sticky;
    top: 16px;
    z-index: 50;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.mv-cart-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.mv-cart-label {
    font-size: 15px;
    opacity: 0.9;
}

.mv-cart-count {
    font-size: 20px;
    font-weight: 700;
    background: #f2c94c;
    color: #1f2a3a;
    padding: 4px 12px;
    border-radius: 40px;
    min-width: 30px;
    text-align: center;
}

.mv-cart-total {
    font-size: 18px;
    font-weight: 600;
}

.mv-cart-total span {
    color: #f2c94c;
    font-size: 22px;
}

.mv-cart-actions {
    display: flex;
    gap: 12px;
}

.mv-btn-print {
    background: #f2c94c;
    border-color: #f2c94c;
    color: #1f2a3a;
}

.mv-btn-print:hover {
    background: #ebbb2c;
    border-color: #ebbb2c;
}

.mv-btn-clear {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.mv-btn-clear:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.mv-service-categories {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mv-service-category {
    background: white;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    overflow: hidden;
}

.mv-category-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0;
    padding: 20px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #eaeef2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mv-category-count {
    font-size: 13px;
    font-weight: 400;
    color: #7e8c9e;
    background: #eaeef2;
    padding: 4px 10px;
    border-radius: 40px;
}

.mv-service-table {
    overflow-x: auto;
}

.mv-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.mv-table thead tr {
    background: #ffffff;
    border-bottom: 2px solid #eaeef2;
}

.mv-table th {
    padding: 16px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    color: #7e8c9e;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mv-table td {
    padding: 16px;
    border-bottom: 1px solid #eaeef2;
    vertical-align: middle;
}

.mv-service-row {
    transition: background 0.2s;
}

.mv-service-row:hover {
    background: #fafbfc;
}

.mv-service-row.highlight {
    background: #fef9e7;
    border-left: 3px solid #f2c94c;
}

.mv-col-select {
    width: 40px;
    text-align: center;
}

.mv-service-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #f2c94c;
}

.mv-col-name {
    min-width: 200px;
}

.mv-service-name {
    font-weight: 500;
    color: #1f2a3a;
    display: block;
    margin-bottom: 4px;
}

.mv-badge {
    display: inline-block;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 40px;
    font-weight: 500;
}

.mv-badge-quick {
    background: #e8f5e9;
    color: #2e7d32;
}

.mv-col-desc {
    color: #54656f;
    font-size: 13px;
    line-height: 1.5;
    max-width: 300px;
}

.mv-recommended {
    font-size: 12px;
    color: #f2a900;
    margin-top: 6px;
}

.mv-col-time {
    color: #54656f;
    font-size: 13px;
    white-space: nowrap;
}

.mv-col-price {
    white-space: nowrap;
}

.mv-price {
    font-size: 16px;
    font-weight: 600;
    color: #1f2a3a;
}

.mv-col-action {
    text-align: right;
}

.mv-btn-detail {
    background: transparent;
    border: 1px solid #d0d7de;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: #54656f;
    cursor: pointer;
    transition: all 0.2s;
}

.mv-btn-detail:hover {
    background: #f6f8fa;
    border-color: #9aa9b9;
    color: #1f2a3a;
}

.mv-no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.mv-no-results-content p {
    color: #7e8c9e;
    font-size: 16px;
    margin-bottom: 20px;
}

.mv-btn-phone {
    background: #f2c94c;
    border-color: #f2c94c;
    color: #1f2a3a;
    display: inline-flex;
}

.mv-alert {
    padding: 60px 20px;
    text-align: center;
    background: #f6f8fa;
    border-radius: 16px;
    color: #54656f;
    font-size: 16px;
}

.mv-shops-section {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 2px solid #eaeef2;
}

.mv-shops-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 8px 0;
}

.mv-shops-subtitle {
    font-size: 15px;
    color: #7e8c9e;
    margin: 0 0 24px 0;
}

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

.mv-shop-card-mini {
    background: white;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.mv-shop-card-mini:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: #d0d7de;
}

.mv-shop-card-content {
    padding: 20px;
}

.mv-shop-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 12px 0;
}

.mv-shop-address {
    font-size: 14px;
    color: #54656f;
    margin-bottom: 8px;
}

.mv-shop-metro {
    font-size: 13px;
    color: #f2a900;
    margin-bottom: 12px;
}

.mv-shop-phone {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #1f2a3a;
    text-decoration: none;
    margin-bottom: 16px;
}

.mv-shop-phone:hover {
    color: #f2c94c;
}

.mv-btn-select-shop {
    width: 100%;
    padding: 10px 16px;
    background: white;
    border: 1px solid #d0d7de;
}

.mv-btn-select-shop:hover {
    background: #f6f8fa;
}

.mv-faq-section {
    max-width: 900px;
    margin: 48px auto 0;
    padding: 32px 0 0;
    border-top: 1px solid #eaeef2;
}

.mv-faq-main-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 24px 0;
    text-align: center;
}

.mv-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mv-faq-item {
    border: 1px solid #eaeef2;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.mv-faq-question {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2a3a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.2s;
}

.mv-faq-question:hover {
    background: #f6f8fa;
}

.mv-faq-icon {
    font-size: 20px;
    color: #7e8c9e;
    font-weight: 400;
}

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

.mv-faq-answer-content {
    padding: 0 20px 20px 20px;
    font-size: 14px;
    color: #54656f;
    line-height: 1.6;
}

.mv-faq-answer p {
    margin: 0 0 10px 0;
}

.mv-faq-answer ul {
    margin: 10px 0;
    padding-left: 20px;
}

.mv-faq-answer a {
    color: #1a73e8;
    text-decoration: none;
}

.mv-faq-answer a:hover {
    text-decoration: underline;
}

.mv-seo-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #eaeef2;
}

.mv-seo-container {
    max-width: 900px;
    margin: 0 auto;
}

.mv-seo-intro-block {
    margin-bottom: 32px;
}

.mv-seo-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #1f2a3a;
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #eaeef2;
}

.mv-seo-intro a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.mv-seo-intro a:hover {
    text-decoration: underline;
}

.mv-seo-advantages {
    margin: 40px 0;
}

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

.mv-seo-advantage-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eaeef2;
}

.mv-seo-advantage-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 10px 0;
}

.mv-seo-advantage-item p {
    font-size: 14px;
    color: #54656f;
    line-height: 1.5;
    margin: 0;
}

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

.mv-seo-bikes ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mv-seo-bikes li {
    font-size: 14px;
    color: #54656f;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.mv-seo-bikes li:before {
    content: "•";
    color: #f2c94c;
    font-weight: bold;
    position: absolute;
    left: 4px;
}

.mv-seo-bikes a {
    color: #1a73e8;
    text-decoration: none;
}

.mv-seo-bikes a:hover {
    text-decoration: underline;
}

.mv-seo-popular {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.mv-seo-popular-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eaeef2;
    position: relative;
}

.mv-seo-popular-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 10px 0;
}

.mv-seo-popular-item p {
    font-size: 14px;
    color: #54656f;
    line-height: 1.5;
    margin: 0 0 40px 0;
}

.mv-seo-popular-item a {
    color: #1a73e8;
    text-decoration: none;
}

.mv-seo-popular-item a:hover {
    text-decoration: underline;
}

.mv-seo-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #1f2a3a;
    background: #f2c94c;
    padding: 6px 16px;
    border-radius: 40px;
}

.mv-seo-brands {
    margin: 40px 0;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
}

.mv-seo-brands p {
    font-size: 15px;
    color: #54656f;
    line-height: 1.6;
    margin: 0;
}

.mv-seo-discount-block {
    margin: 40px 0;
}

.mv-seo-discount-content {
    background: #fef9e7;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #f2c94c;
    text-align: center;
}

.mv-seo-discount-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2a3a;
    margin: 0 0 16px 0;
}

.mv-seo-discount-content p {
    font-size: 16px;
    color: #1f2a3a;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.mv-seo-discount-content a {
    color: #1a73e8;
    text-decoration: none;
}

.mv-seo-discount-content a:hover {
    text-decoration: underline;
}

.mv-seo-btn {
    display: inline-block;
    background: #f2c94c;
    color: #1f2a3a;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.mv-seo-btn:hover {
    background: #ebbb2c;
    text-decoration: none;
    color: #1f2a3a;
}

.mv-seo-cta {
    background: #1f2a3a;
    padding: 32px;
    border-radius: 16px;
    margin: 40px 0;
    text-align: center;
}

.mv-seo-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
}

.mv-seo-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.mv-seo-cta a {
    color: #f2c94c;
    text-decoration: none;
    font-weight: 600;
}

.mv-seo-cta a:hover {
    text-decoration: underline;
}

.mv-seo-links {
    margin: 24px 0;
}

.mv-seo-links h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 16px 0;
}

.mv-seo-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.mv-seo-links li {
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

.mv-seo-links li:before {
    content: "→";
    color: #f2c94c;
    position: absolute;
    left: 0;
    top: 0;
}

.mv-seo-links a {
    color: #1a73e8;
    text-decoration: none;
}

.mv-seo-links a:hover {
    text-decoration: underline;
}

.mv-seo-problems {
    margin: 48px 0;
}

.mv-seo-problems-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mv-problem-card {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    padding: 0;
    transition: all 0.2s ease;
    overflow: hidden;
    width: 100%;
}

.mv-problem-card:hover {
    border-color: #f2c94c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.mv-problem-header {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fafbfc;
    border-bottom: 1px solid transparent;
    transition: background 0.2s;
}

.mv-problem-card.active .mv-problem-header {
    background: #fef9e7;
    border-bottom-color: #f2c94c;
}

.mv-problem-icon {
    width: 36px;
    height: 36px;
    background: #f2c94c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #1f2a3a;
    flex-shrink: 0;
}

.mv-problem-title {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: #1f2a3a;
}

.mv-problem-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7e8c9e;
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.mv-problem-card.active .mv-problem-toggle {
    transform: rotate(45deg);
}

.mv-problem-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.mv-problem-card.active .mv-problem-content {
    max-height: 400px;
}

.mv-problem-body {
    padding: 24px;
    border-top: 1px solid #eaeef2;
}

.mv-problem-cause {
    margin-bottom: 20px;
}

.mv-problem-cause-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7e8c9e;
    margin-bottom: 8px;
    font-weight: 500;
}

.mv-problem-cause-text {
    font-size: 15px;
    color: #54656f;
    line-height: 1.5;
}

.mv-problem-cause-text a {
    color: #1a73e8;
    text-decoration: none;
}

.mv-problem-cause-text a:hover {
    text-decoration: underline;
}

.mv-problem-solution {
    background: #f0f7e8;
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid #4caf50;
}

.mv-problem-solution-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2e7d32;
    margin-bottom: 8px;
    font-weight: 600;
}

.mv-problem-solution-text {
    font-size: 15px;
    color: #1f2a3a;
    line-height: 1.5;
}

.mv-problem-solution-text a {
    color: #1a73e8;
    text-decoration: none;
}

.mv-problem-solution-text a:hover {
    text-decoration: underline;
}

.mv-problem-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.mv-problem-link {
    font-size: 14px;
    color: #1a73e8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
}

.mv-problem-link:hover {
    text-decoration: underline;
}

.mv-problem-link:after {
    content: "→";
    font-size: 14px;
}

.mv-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.mv-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mv-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eaeef2;
}

.mv-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0;
}

.mv-modal-close {
    font-size: 28px;
    color: #7e8c9e;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.mv-modal-close:hover {
    background: #f6f8fa;
    color: #1f2a3a;
}

.mv-modal-body {
    padding: 24px;
    overflow-y: auto;
    line-height: 1.6;
    color: #54656f;
}

.mv-modal-body p {
    margin: 0 0 12px 0;
}

.mv-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #eaeef2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mv-modal-price {
    font-size: 22px;
    font-weight: 700;
    color: #1f2a3a;
}

.mv-btn-add-cart {
    background: #f2c94c;
    border-color: #f2c94c;
    color: #1f2a3a;
    padding: 12px 32px;
}

.mv-btn-add-cart:hover {
    background: #ebbb2c;
    border-color: #ebbb2c;
}

@media (max-width: 992px) {
    .mv-seo-advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-seo-bikes ul {
        grid-template-columns: 1fr;
    }
    
    .mv-seo-popular {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mv-container-full {
        padding: 16px 20px;
    }
    
    .mv-appointment-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mv-appointment-phone {
        font-size: 22px;
    }
    
    .mv-appointment-buttons {
        width: 100%;
    }
    
    .mv-appointment-buttons .mv-btn {
        flex: 1;
    }
    
    .mv-service-cart {
        flex-direction: column;
        align-items: stretch;
    }
    
    .mv-cart-info {
        justify-content: space-between;
    }
    
    .mv-cart-actions {
        justify-content: stretch;
    }
    
    .mv-cart-actions .mv-btn {
        flex: 1;
    }
    
    .mv-table {
        min-width: 600px;
    }
    
    .mv-col-desc {
        display: none;
    }
    
    .mv-shops-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-seo-intro {
        font-size: 16px;
        padding: 20px;
    }
    
    .mv-seo-discount-content h3 {
        font-size: 20px;
    }
    
    .mv-seo-cta h3 {
        font-size: 20px;
    }
    
    .mv-seo-cta p {
        font-size: 16px;
    }
    
    .mv-problem-header {
        padding: 16px 20px;
    }
    
    .mv-problem-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .mv-problem-title {
        font-size: 16px;
    }
    
    .mv-problem-body {
        padding: 20px;
    }
    
    .mv-problem-cause-text,
    .mv-problem-solution-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .mv-appointment-phone {
        font-size: 18px;
    }
    
    .mv-category-title {
        padding: 16px;
        font-size: 18px;
    }
    
    .mv-table td,
    .mv-table th {
        padding: 12px 8px;
    }
    
    .mv-col-time {
        display: none;
    }
    
    .mv-price {
        font-size: 14px;
    }
    
    .mv-btn-detail {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .mv-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .mv-discount-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .mv-seo-links ul {
        flex-direction: column;
        gap: 12px;
    }
    
    .mv-problem-header {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .mv-problem-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    
    .mv-problem-title {
        font-size: 15px;
    }
    
    .mv-problem-body {
        padding: 16px;
    }
}