* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Inter Placeholder', sans-serif;
}

body {
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; */
    background: white;
    display: flex;
    gap: 80px;
    flex-direction: column;
}

header {
    font-size: 16px;
    margin-top: 5px;
}

.container {
    /* width: 65%; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-container {
    width: 90%;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    width: 200px;
}

.logo-icon {
    width: 100%;
    cursor: pointer;

    img {
        width: 100%;
        height: 100%;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-around;
    background-color: #003AE9;
    width: 475px;
    height: 35px;
    padding: 0 24px;
    border-radius: 24px;

    a {
        text-decoration: none;
        color: #F2F2F2;
    }
}

.phone {
    color: #0C0C0C;
    text-decoration: none;
    font-weight: 600;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #003AE9;
    color: #F2F2F2;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 24px;
}

.btn.basket-header {
    width: 141px;
    height: 35px;
}

.btn.count-basket {
    width: 82px;
    height: 35px;
}

.svg-container {
    color: #F2F2F2;
    width: 18px;
}



/* ------------------------------------ */



.hero {
    /* background: linear-gradient(135deg, #d4d8e8 0%, #b8bdd4 100%); */
    background-image: url("assets/main_image.png");
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 75px;
    height: 600px;
    width: 85%;
    display: flex;
    align-items: flex-end;

    img {
        width: 100%;
        position: absolute;
    }
}

.hero-content {
    h1 {
        font-size: 72px;
        width: 70%;
        line-height: 1;
    }

    .highlight {
        color: #003AE9;
    }

    p {
        color: #666;
        margin: 25px 0;
        font-size: 20px;
    }
}

.btn-catalog {
    background-color: #003AE9;
    border-radius: 9px;
    border: none;
    width: 256px;
    height: 55px;
    font-size: 24px;
    font-weight: 600;
    color: #F2F2F2;
}




/* ----------------- */



.products-section {
    width: 95%;
    margin: 100px 0;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 30px;

    h2 {
        font-size: 48px;
        font-weight: 600;
    }
}

.products-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.product-card {
    background-color: rgba(230, 230, 230, 0.7);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #e8ebf7;
    transition: all 0.3s;
}

.product-card.active {
    box-shadow: rgb(0, 58, 233) 0px 0px 20px 0px;
}

.product-card:hover {
    color: #0039ff;
}

.product-image {
    background: #f5f7fc;
    border-radius: 10px;
    height: 308px;
    width: 256px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;

    img {
        width: 100%;
        height: 100%;
        border-radius: 14px;
    }
}

.btn.basket {
    border-radius: 8px;
    height: 40px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0 5px;
}

.product-name {
    font-size: 16px;
}

.product-size {
    font-size: 10px;
    color: #878787;
}



/* ------------------ */




.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;

    button {
        display: flex;
        justify-content: center;
        align-items: center;
        background: none;
        border: none;
    }
}

.arrow {
    width: 30px;
    margin: 0 5px;
    cursor: pointer;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 1px solid black;
}

.dot.active {
    background: black;
}



/* ------------------ */



.about-section {
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 90px;
    align-items: center;
}

.about-content { 
    width: 673px;

    h2 {
        font-size: 48px;
        margin-bottom: 30px;
        font-weight: 600;
    }
}

.about-content p {
    width: 673px;
    color: black;
    font-size: 24px;
    white-space: pre-wrap;
    line-height: 150%;
}

.btn.about {
    font-size: 24px;
    border-radius: 8px;
    margin-top: 40px;
}

.about-image {
    width: 509px;
    height: 548px;

    img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
}



/* ------------------ */




.faq-section {
    width: 85%;
    margin: 80px auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.faq-intro { 
    h2 {
        font-size: 48px;
        margin-bottom: 10px;
        font-weight: 600;
        line-height: 150%;
    }
}

.faq-intro p {
    color: #666;
    font-size: 20px;
    width: 375px;
    line-height: 150%;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 24px;
    width: 678px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item:hover {
    background: #f8f9fd;
}

.faq-item-header {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E6E6E6B3;
    padding: 10px 48px;
    border-radius: 24px;
}

.faq-item-header.open {
    background-color: #003AE9;

    div {
        transition: all 0.4s, color 0.1s;
        color: white;
    }

    div:last-child {
        rotate: 45deg;
    }
}

.faq-question {
    font-weight: 600;
    font-size: 28px;
    padding-right: 10px;
}

.faq-toggle {
    color: black;
    width: 50px;
    height: 50px;

    svg {
        stroke-width: 2;
    }
}

.faq-open-text {
    color: black;
    background-color: rgb(230, 230, 230, 0.2);
    font-size: 20px;
    display: none;
    width: 95%;
    padding: 20px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.faq-open-text.open {
    display: flex;
}



/* ----------------- */




footer {
    width: 100%;
    display: flex;
}

.footer-content {
    display: flex;
    flex-direction: column;
    height: 508px;
    background-color: rgb(230, 230, 230);
    padding: 50px 100px;
}

.footer-logo {
    width: 300px;

    img {
        width: 100%;
    }
}

.footer-nav {
    display: flex;
    gap: 150px;
}

.footer-section { 
    p {
        color: #666;
        font-size: 16px;
    }

    h3 {
        margin-bottom: 10px;
        font-size: 24px;
        font-weight: 600;
    }
}

.footer-links {
    list-style: none;
    white-space: nowrap;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-links a {
    color: #666;
    font-size: 16px;
    text-decoration: none;

    &:hover {
        color: #003aea;
    }
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #1a4fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;

    img {
        filter: invert(1);
        width: 60%;
    }
}

.contact-form {
    width: 100%;
    /* min-width: 620px; */
    padding: 50px 50px 100px 50px;
    background: #000B2E;
    border-top-right-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;

    h3 {
        width: 425px;
        color: white;
        margin-bottom: 15px;
        font-size: 36px;
    }

    form {
        width: 425px;
    }
}

.form-group {
    margin-bottom: 10px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgb(230, 230, 230);
    background-color: rgb(230, 230, 230);
    border-radius: 8px;
    font-size: 16px;
}

.form-group input:focus {
    border-color: #09f;
}

.form-group.sms input {
    height: 61px;
}

.btn-submit {
    width: 100%;
    background: #0039ff;
    color: white;
    border: none;
    height: 40px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
}