* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #eadac4;
    color: #2c3e50;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 30px 0;
}
.main-wrapper {
    max-width: 1510px;
    width: 100%;
    background-color: #fefefe;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}
.container {
    max-width: 100%;
    padding: 0 50px;
}
header,
nav {
    display: none;
}
.custom-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    background: #fefefe;
    position: relative;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-link:hover {
    opacity: 0.9;
}
.logo-link:hover .logo-text span {
    color: #5f412d;
}
.logo-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.logo-text {
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.logo-text .top-word,
.logo-text .bottom-word {
    font-size: 15px;
    letter-spacing: 1px;
    color: #5f412d;
}
.logo-text .bottom-word {
    margin-top: -2px;
}
.header-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 30px;
    margin-right: 30px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s, transform 0.2s;
}
.social-link:hover {
    opacity: 0.8;
    transform: scale(1.05);
}
.social-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}
.burger-line {
    width: 100%;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.mobile-menu-toggle.active .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.mobile-menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}
.nav-menu {
    display: flex;
    gap: 4px;
    margin-left: auto;
    margin-right: 20px;
}
.nav-item {
    padding: 8px 14px;
    font-weight: 600;
    font-size: 15px;
    color: #5f412d;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.nav-item:hover {
    background-color: #cab47b;
    color: #1a252f;
}
.mobile-social {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}
.mobile-social-link {
    display: block;
    padding: 12px 20px;
}
.contact-header {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    margin-left: 20px;
}
.phone {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}
.address {
    font-size: 13px;
    color: #7f8c8d;
}
.status-button {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}
.status-button.status-open {
    background: #27ae60;
}
.status-button.status-closed {
    background: #e74c3c;
}
.status-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}
.status-button:active {
    transform: scale(0.98);
}
.hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 0 40px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-title {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 66.666%;
    display: inline-block;
    padding: 12px 24px;
    background: rgba(59, 40, 25, 0.75);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.hero-subtitle {
    font-size: clamp(14px, 2vw, 22px);
    color: #ffffff;
    margin-bottom: 25px;
    max-width: 700px;
    font-style: italic;
    line-height: 1.5;
    display: inline-block;
    padding: 12px 24px;
    background: rgba(59, 40, 25, 0.65);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.hero-button {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 18px);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    background-color: #5f412d;
    transition: background-color 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.hero-button:hover {
    background-color: #cab47b;
    color: #1a252f;
}
.hero-button:active {
    background-color: #cab47b;
    color: #1a252f;
    transform: scale(0.98);
}
.hero-wrapper::after {
    display: none;
}
.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    color: #5f412d;
}
.section-title:after {
    display: none;
}
.about-content {
    max-width: 100%;
    width: 100%;
}
.about-text-large {
    font-size: 18px;
    margin-bottom: 20px;
}
.about-text-medium {
    font-size: 16px;
    margin-bottom: 20px;
}
.about-text-medium:last-child {
    margin-bottom: 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #fafbfc;
    border-radius: 12px;
    border: 1px solid #f1f2f6;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
}
.feature-item span:last-child {
    line-height: 1.3;
}
.feature-item:hover {
    background: #fff;
    border-color: #e0e4e8;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}
.feature-item.highlight {
    background: linear-gradient(135deg, #f5f7fa, #e9ecef);
    border-left: 4px solid #5f412d;
    font-weight: 600;
}
.feature-icon {
    font-size: 26px;
    line-height: 1;
    min-width: 32px;
    text-align: center;
}
#news {
    display: none;
}
.brands-subsection {
    margin-bottom: 40px;
}
.brands-subsection:last-child {
    margin-bottom: 0;
}
.brands-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #5f412d;
    margin-bottom: 25px;
    margin-left: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}
.brand-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f2f6;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-left 0.2s;
    border-left: 4px solid transparent;
}
.brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #fef9e7, #fff);
    border-left: 4px solid #5f412d;
}
.brand-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #5f412d;
    margin-bottom: 5px;
}
.brand-country {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.brand-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #2c3e50;
    margin-bottom: 10px;
}
.brand-card p:last-child {
    margin-bottom: 0;
}
.brand-sublist {
    margin-top: 10px;
    padding-left: 20px;
    list-style-type: disc;
}
.brand-sublist li {
    font-size: 14px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 5px;
}
.brand-card--wide {
    grid-column: span 2;
}
.brand-sublist--columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px 15px;
    padding-left: 20px;
}
.brand-sublist--columns li {
    margin-bottom: 3px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.review-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.reviewer-name {
    font-weight: 700;
}
.reviewer-stats {
    font-size: 13px;
    color: #7f8c8d;
}
.stars {
    font-size: 14px;
    color: #f1c40f;
    margin-bottom: 10px;
}
.review-text {
    margin-bottom: 15px;
    font-style: italic;
}
.response {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    border-left: 3px solid #3498db;
    margin-top: 10px;
}
.response-author {
    font-weight: 700;
    color: #3498db;
    margin-bottom: 5px;
}
.reviews-link {
    margin-top: 20px;
    text-align: right;
}
.reviews-link a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.reviews-link a:hover {
    color: #2980b9;
    text-decoration: underline;
}
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}
.contacts-info h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}
.contacts-address {
    font-size: 18px;
    margin-bottom: 20px;
}
.contacts-phone-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.contacts-phone {
    font-size: 20px;
    margin-bottom: 0;
}
.contacts-phone a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 700;
}
.contacts-social {
    display: flex;
    align-items: center;
    gap: 12px;
}
.social-icon-contacts {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: opacity 0.2s, transform 0.2s;
}
.social-link:hover .social-icon-contacts {
    opacity: 0.8;
    transform: scale(1.05);
}
.contacts-payment {
    margin-top: 20px;
    background: #f1f2f6;
    padding: 15px;
    border-radius: 8px;
}
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #e9ecef;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
#yandexMap {
    width: 100%;
    flex: 1;
    border-radius: 12px 12px 0 0;
    min-height: 300px;
}
.map-caption {
    padding: 10px;
    background: white;
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
    flex-shrink: 0;
}
footer {
    background: #1a252f;
    color: #bdc3c7;
    padding: 40px 0;
    margin-top: 50px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-info h3,
.footer-contacts h3,
.footer-schedule h3 {
    color: white;
    margin-bottom: 15px;
}
.mission {
    max-width: 400px;
    font-style: italic;
    color: #ecf0f1;
}
.footer-legal {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #8a9aa8;
    opacity: 0.8;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}
.social-icon-footer {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: opacity 0.2s, transform 0.2s;
    opacity: 0.9;
}
.social-link:hover .social-icon-footer {
    opacity: 1;
    transform: scale(1.05);
}
.footer-copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: calc((100% - 1510px) / 2 + 30px);
    width: 50px;
    height: 50px;
    background: rgba(95, 65, 45, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background 0.2s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 997;
}
.scroll-to-top:hover {
    background: rgba(95, 65, 45, 0.9);
    transform: translateY(-3px);
}
.scroll-to-top:active {
    transform: translateY(0);
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-arrow {
    color: white;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}
@media (min-width: 1200px) {
    .hero-content {
        padding: 0 60px;
    }
    .hero-title {
        font-size: 52px;
        padding: 16px 32px;
    }
    .hero-subtitle {
        font-size: 24px;
        max-width: 800px;
        padding: 16px 32px;
    }
    .hero-button {
        padding: 16px 40px;
        font-size: 20px;
    }
}
@media (min-width: 1101px) and (max-width: 1300px) {
    .contact-header {
        margin-left: 10px;
    }
    .phone {
        font-size: 15px;
    }
    .address {
        font-size: 11px;
    }
    .status-button {
        font-size: 11px;
        padding: 3px 8px;
    }
}
@media (min-width: 769px) {
    .custom-header {
        padding: 20px 30px;
    }
    .logo-icon {
        width: 100px;
        height: 100px;
    }
    .logo-text .top-word,
    .logo-text .bottom-word {
        font-size: 24px;
        letter-spacing: 2px;
    }
    .logo-area {
        gap: 15px;
    }
    .header-social {
        margin-left: 40px;
        margin-right: 40px;
        gap: 16px;
    }
    .social-icon {
        width: 36px;
        height: 36px;
    }
    .social-icon-contacts {
        width: 32px;
        height: 32px;
    }
    .social-icon-footer {
        width: 28px;
        height: 28px;
    }
    .mobile-social {
        display: none;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    .logo-text .top-word,
    .logo-text .bottom-word {
        font-size: 18px;
    }
    .nav-item {
        padding: 6px 10px;
        font-size: 14px;
    }
    .contact-header .phone {
        font-size: 18px;
    }
}
@media (min-width: 769px) and (max-width: 1510px) {
    .scroll-to-top {
        right: 20px;
    }
}
@media (min-width: 1511px) {
    .scroll-to-top {
        right: calc((100% - 1510px) / 2 + 30px);
    }
}
@media (max-width: 768px) {
    body {
        padding: 5px 0 20px 0;
    }
    .container {
        padding: 0 16px;
    }
    .custom-header {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .header-social {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #fefefe;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-item {
        padding: 16px 20px;
        font-size: 18px;
        border-bottom: 1px solid #ecf0f1;
        border-radius: 0;
        white-space: normal;
    }
    .nav-item:last-child {
        border-bottom: none;
    }
    .logo-area {
        order: 1;
    }
    .contact-header {
        order: 3;
        width: 100%;
        margin-top: 15px;
        margin-left: 0;
        align-items: flex-start;
    }
    .status-button {
        font-size: 12px;
        padding: 4px 10px;
    }
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .hero-content {
        padding: 0 16px;
        top: 50%;
        transform: translateY(-50%);
        align-items: flex-start;
        justify-content: center;
        height: 100%;
    }
    .hero-title {
        font-size: clamp(18px, 5vw, 28px);
        max-width: 100%;
        margin-bottom: 10px;
        padding: 10px 16px;
        margin-top: auto;
    }
    .hero-subtitle {
        font-size: clamp(12px, 3.5vw, 16px);
        margin-bottom: 10px;
        max-width: 100%;
        padding: 10px 16px;
    }
    .hero-button {
        padding: 12px 24px;
        font-size: 14px;
        margin-top: auto;
        margin-bottom: auto;
    }
    section {
        padding: 12px 0;
    }
    #about {
        padding-top: 25px;
    }
    .section-title {
        font-size: 24px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 18px;
    }
    .feature-item {
        padding: 14px 12px;
        font-size: 13px;
        gap: 10px;
    }
    .feature-item:not(.highlight) {
        display: none;
    }
    .feature-icon {
        font-size: 24px;
        min-width: 28px;
    }
    .brands-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
        margin-left: 15px;
    }
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .brand-card {
        padding: 20px;
    }
    .brand-card h4 {
        font-size: 18px;
    }
    .brand-card--wide {
        grid-column: span 1;
    }
    .brand-sublist--columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px 10px;
    }
    .contacts-grid {
        grid-template-columns: 1fr !important;
    }
    .map-container {
        max-height: 250px;
    }
    .map-container img {
        height: 100%;
        object-fit: cover;
    }
    .map-zoom-icon {
        font-size: 36px;
    }
    .map-zoom-text {
        font-size: 14px;
        padding: 6px 12px;
    }
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .scroll-arrow {
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .hero-content {
        top: 50%;
        justify-content: center;
    }
    .hero-title {
        font-size: 16px;
        padding: 8px 12px;
    }
    .hero-subtitle {
        font-size: 11px;
        line-height: 1.4;
        padding: 8px 12px;
    }
    .hero-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-item {
        padding: 12px 14px;
    }
    .brand-sublist--columns {
        grid-template-columns: 1fr;
    }
}
section {
    padding: 15px 0;
}
#about {
    padding-top: 30px;
}
@media (max-width: 768px) {
    section {
        padding: 12px 0;
    }
    #about {
        padding-top: 25px;
    }
}