*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#frontendManager.fm-panel {
    top: auto !important;
    bottom: 0 !important;
}

body {
    margin: 0;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-dark);
    background: var(--color-white);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: 100%;
    max-width: calc(var(--container) + 40px);
    margin: 0 auto;
    padding: 0 20px;
}

.site-main {
    min-height: 100vh;
}

.section {
    padding: 30px 0;
}

.section-title {
    margin-bottom: 40px;
    font-size: 37px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-dark);
}



.btn,
.services-all-btn,
.projects-all-btn,
.faq-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 56px;
    padding: 0 30px;

    border-radius: 18px;

    background: var(--color-primary);
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    transition: 0.3s ease;
}

.btn:hover,
.services-all-btn:hover,
.projects-all-btn:hover,
.faq-all-btn:hover {
    background: #052130;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn--accent {
    background: var(--color-accent);
}

.btn--accent:hover {
    background: var(--color-dark);
}



.swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    color: var(--color-dark);
    font-weight: 700;
}





.top-sales__slider {
    overflow: hidden;
}
.top-sales__slider .swiper-slide {
    height: auto;
}
.top-sales__slider .swiper-slide .product-card {
    height: 100%;
}
.top-sales-pagination {
    position: relative !important;
    margin-top: 42px;
    text-align: center;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
}

.top-sales-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d6d6d6;
    opacity: 1;
    transition: 0.25s ease;
}

.top-sales-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    transform: scale(1.15);
}

.top-sales-mobile-btn {
    display: none;
    margin-top: 24px;
    text-align: center;
}
.top-sales-mobile-btn .services-all-btn {
    width: 100%;
}
@media (max-width: 768px) {
    .section-head .services-all-btn {
        display: none;
    }
    .top-sales-mobile-btn {
        display: block;
    }
}