* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    background-color: #FFD3D3;
}


.hero {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 40px 30px;
    position: relative;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08)
}

.logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.6;
}

.btn-header {
    text-decoration: none;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto 0;
}


.oval-card {
    background-color: #ffffff;
    padding: 45px 170px;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    position: relative;
    margin-bottom: 25px;
}

.oval-card .tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    display: block;
    margin-bottom: 8px;
}

.oval-card h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    line-height: 1.1;
    color: #111;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.15rem;
    color: #444;
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 15px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-main {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-main:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.features-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;

    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08)
}

.feature-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-us {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto 0;
    text-align: left;
    padding: 0 20px;
}


.why-us-title {
    font-size: 2rem;
    font-weight: 300;
    color: #333333;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 30px;
}


.benefits-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08)
}


.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

.circle-number {
    width: 90px;
    height: 90px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    font-weight: 300;
    color: #444444;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.circle-number:hover {
    transform: translateY(-5px);
}


.benefit-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: #444444;
    line-height: 1.4;
}


.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;

}

.catalog-grid.expanded {
    max-height: 5000px;
}


.toggle-btn {
    display: block;
    margin: 20px 1000 0;
    padding: 12px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.line-title {
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    margin: 30px 0;
    width: 100%;
    padding: 0 20px;

    box-sizing: border-box;

}



.line-title::before,
.line-title::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

}

.line-title::before {
    margin-right: 20px;
}

.line-title::after {
    margin-left: 20px;
}



.toggle-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08)
}


.product-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 15px;
}


.product-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}


.product-card p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 15px;
}


.product-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-top: auto;
}



.reviews-media-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 40px 0;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-top: 100px;
}



.media-reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 30px 20px 30px;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;

}

.media-reviews-carousel::-webkit-scrollbar {
    display: none;
}


.media-card {
    flex: 0 0 280px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 24px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;

}

.media-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.85;
}

.media-content p {
    font-size: 15px;
    line-height: 1.5;
    margin: 15px 0;
    color: #ffffff;
}

.media-footer {
    font-size: 12px;
    color: #e1306c;
    font-weight: 600;
}



.contacts-section {
    padding: 80px 20px;
}

.contacts-container {
    max-width: 900px;

    margin: 0 auto;
}


.contacts-header {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 40px auto;
}

.contacts-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e1306c;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.contacts-title {
    font-size: 32px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}

.contacts-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}


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



.contact-card {
    background: #111111;
    border-radius: 24px;
    padding: 35px 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    color: #ffffff;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}




.card-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-card p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 25px;
}

.contact-btn {
    display: inline-block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tg-btn {
    background: #24a1de;
    color: #ffffff;
}

.insta-btn {
    background: #e1306c;
    color: #ffffff;
}

.viber-btn {
    background: rgb(115, 96, 242);
    color: #ffffff;
}

.phone-btn {
    background: #c6c1c1;
    color: #ffffff;
}

.contact-btn:hover {
    opacity: 0.9;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 27, 38, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #FAF8F5;
    color: #222226;
    padding: 40px 30px;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #222226;
    line-height: 1;
}

.modal-content h2 {
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.modal-divider {
    width: 50px;
    height: 2px;
    background-color: #E3ADA9;

    margin: 0 auto 20px auto;
}

.modal-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.modal-features {
    display: flex;
    gap: 15px;
    text-align: left;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e0d8;
}

.modal-feature-item strong {
    display: block;
    font-size: 14px;
    color: #222226;
    margin-bottom: 4px;
}

.modal-feature-item p {
    font-size: 13px;
    margin: 0;
    color: #666;
}



@media (max-width: 768px) {
    .contacts-section {
        padding: 50px 30px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;

    }

    .contacts-title {
        font-size: 26px;
    }
}



@media (max-width: 768px) {
    .reviews-media-section {

        width: calc(100% - 60px);

        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 768px) {
    .why-us-title {
        text-align: center;
    }

    .benefits-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .benefit-card {
        min-width: 120px;
    }

    .circle-number {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;

    }

    .hero {
        padding: 15px 15px 25px;
    }

    .oval-card {
        padding: 55px 70px;
    }

    .oval-card h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .features-bar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}