/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #edebe6;
    --main-color-darken: #edebe6;
    --text-main-color: #292929;
    --hit-status-color: #9747FF;
    --sale-status-color: #F63123;
    --new-status-color: #9C9278;
    --product-status-color: #1C1C1C;
    --brad-regular: 0.6vw;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main-color);
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 80px;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wrapper2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #f7f7f7;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.fixed {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
    flex-wrap: wrap;
}

.header__logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header__logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header__logo-img {
    height: 70px;
    width: auto;
    max-width: 200px;
}

.header__text {
    font-size: 0.75rem;
    line-height: 1.1rem;
    letter-spacing: 0.03em;
    color: var(--text-main-color);
    white-space: nowrap;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav__social-mobile {
    display: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-main-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--main-color);
}

.header__right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.header__social p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--text-main-color);
    white-space: nowrap;
}

.header__social p b {
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main-color);
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--main-color);
    transform: scale(1.1);
}

.header__contacts {
    display: flex;
    align-items: center;
}

.header__phone {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main-color);
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}

.header__phone:hover {
    color: var(--main-color);
}

.header__btn-wrap {
    display: none;
    align-items: center;
}

.header__btn {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 999;
    background: none;
    border: none;
    padding: 0;
}

.header__btn span {
    width: 100%;
    height: 3px;
    border-radius: var(--brad-regular);
    position: absolute;
    left: 0;
    background-color: var(--text-main-color);
    transition: 0.3s;
}

.header__btn span:first-child {
    top: 0;
}

.header__btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.header__btn span:last-child {
    bottom: 0;
    width: 60%;
}

.header__btn.open span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.header__btn.open span:nth-child(2) {
    opacity: 0;
}

.header__btn.open span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(45deg);
    width: 100%;
}

/* Hero Section */
.first {
    position: relative;
    min-height: 600px;
    padding-top: 4rem;
    margin-top: -80px;
    padding-bottom: 4rem;
}

.first__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.first__bg .main-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.first__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.r888 {
    display: flex;
    flex-direction: row;
    align-content: flex-end;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    z-index: 3;
}

.first__content {
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.first__title {
    width: 70%;
    font-weight: 500;
    font-size: 3.5rem;
    line-height: 4.5rem;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    color: #fff;
}

.first__text {
    margin-bottom: 2rem;
}

.first__text p {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2.3rem;
    letter-spacing: 0.04em;
    color: #fff;
}

.first__buttons-btn {
    padding: 1rem 2rem;
    background-color: var(--main-color);
    color: #fff;
    border: none;
    border-radius: var(--brad-regular);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.first__buttons-text-dark {
    color: var(--text-main-color);
}

.first__buttons-btn:hover {
    background-color: var(--main-color-darken);
    transform: translateY(-2px);
}

.r333 {
    display: flex;
    flex-direction: column;
    padding-left: 2rem;
    align-items: flex-start;
}

.kred {
    font-size: 7vw;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.kred2 {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
    margin: 0.5rem 0;
}

.r333 p {
    color: #fff;
    font-size: 0.7rem;
    margin: 0;
}

/* Catalog Section */
.catalog {
    padding: 5rem 0;
    background: #fff;
}

.catalog__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-main-color);
    padding: 0 20px;
}

.catalog__container {
    padding: 0 20px;
}

.catalog__container .container-flex {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem;
    justify-content: center;
}

.catalog__item {
    width: calc(25% - 2rem);
    min-width: 280px;
    border: 1px solid #F1F1F1;
    border-radius: 1px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin: 1rem;
}

.catalog__item .item-status {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
}

.catalog__item .item-status > div {
    padding: 0 0.625rem;
    height: 1.5rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.625rem;
    line-height: 1.5rem;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    margin-right: 0.5rem;
    display: none;
}

.catalog__item .item-status.md-new .new {
    display: flex;
    align-items: center;
    background-color: var(--new-status-color);
}

.catalog__item .item-slider {
    width: 100%;
    height: 13rem;
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}

.catalog__item .item-slider__image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.catalog__item .item-slider__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.catalog__item .item-price {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    padding: 0 1rem;
    padding-top: 1rem;
}

.catalog__item .item-price .current-price {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.01em;
}

.catalog__item .item-price .current-price span {
    font-size: 2rem;
    color: #292929;
}

.catalog__item .item-name {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.5rem;
    letter-spacing: 0.03em;
    color: #292929;
    text-decoration: none;
    transition: 0.4s;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.catalog__item .item-name:hover {
    color: var(--main-color);
}

.catalog__item .item-text {
    padding: 0.5rem 1rem 1rem 1rem;
    flex-grow: 1;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.4rem;
    letter-spacing: 0.03em;
    color: #292929;
}

.catalog__item .item-order {
    width: calc(100% - 2rem);
    height: 3rem;
    margin: 0 1rem 1rem 1rem;
    text-align: center;
    border-radius: var(--brad-regular);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.5rem;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #242424;
    background-color: #242424;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.catalog__item .item-order:hover {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

/* Section Title */
.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-main-color);
    padding: 0 20px;
}

.md-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-main-color);
}

/* Advantages Section */
.advantages {
    padding: 5rem 0;
    background: #fff;
}

.advantages .container {
    padding: 0 20px;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
}

.advantage-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-card__icon svg {
    width: 100%;
    height: 100%;
}

.advantage-card__title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-main-color);
}

.advantage-card__text {
    color: var(--text-main-color);
    line-height: 1.6;
}

/* Payment & Delivery Section */
.payment-delivery {
    padding: 5rem 0;
    background: #f7f7f7;
}

.payment-delivery .container {
    padding: 0 20px;
}

.payment-delivery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-delivery__item {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--brad-regular);
}

.payment-delivery__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-delivery__icon svg {
    width: 100%;
    height: 100%;
}

.payment-delivery__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main-color);
}

.payment-delivery__text {
    color: var(--text-main-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.payment-delivery__list {
    list-style: none;
    padding-left: 0;
}

.payment-delivery__list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-main-color);
}

.payment-delivery__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-weight: 700;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #fff;
}

.faq__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-main-color);
    padding: 0 20px;
}

.faq__list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 20px;
}

.faq__column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq__item {
    margin-bottom: 1rem;
    border: 1px solid #F1F1F1;
    border-radius: var(--brad-regular);
    overflow: hidden;
    background: #f7f7f7;
}

.faq__question {
    width: 100%;
    padding: 1.5rem;
    background: #f7f7f7;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    font-family: inherit;
}

.faq__question:hover {
    background: #ededed;
}

.faq__icon {
    transition: 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-main-color);
    line-height: 1.6;
}

.faq__whatsapp {
    text-align: center;
    margin-top: 2rem;
    padding: 0 20px;
}

.faq__whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #fff;
    border: 1px solid #F1F1F1;
    border-radius: var(--brad-regular);
    text-decoration: none;
    color: var(--text-main-color);
    font-weight: 600;
    transition: 0.3s;
}

.faq__whatsapp-btn:hover {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.faq__whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

/* Contacts Section */
.contacts {
    padding: 5rem 0;
    background: #f7f7f7;
}

.contacts .container {
    padding: 0 20px;
}

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contacts__item {
    margin-bottom: 2rem;
}

.contacts__item-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main-color);
}

.contacts__item-text,
.contacts__item-link {
    color: var(--text-main-color);
    text-decoration: none;
    font-size: 1.1rem;
}

.contacts__item-link:hover {
    color: var(--main-color);
}

.contacts__messengers {
    margin-top: 2rem;
}

.contacts__messengers-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contacts__messenger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    border-radius: var(--brad-regular);
    text-decoration: none;
    color: var(--text-main-color);
    transition: 0.3s;
    border: 1px solid #F1F1F1;
}

.contacts__messenger:hover {
    transform: translateY(-2px);
    border-color: var(--main-color);
}

.contacts__form-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--brad-regular);
    border: 1px solid #F1F1F1;
}

.contacts__form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main-color);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #F1F1F1;
    border-radius: var(--brad-regular);
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--main-color);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background-color: #242424;
    color: #fff;
    border: none;
    border-radius: var(--brad-regular);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.form__submit:hover {
    background-color: var(--main-color);
}

/* Footer */
.footer {
    background: var(--text-main-color);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer__logo a {
    display: inline-block;
    text-decoration: none;
}

.footer__logo-img {
    height: 60px;
    width: auto;
    max-width: 180px;
    filter: brightness(0) invert(1);
}

.footer__text {
    margin-top: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    body {
        padding-top: 70px;
    }
    
    .first {
        min-height: 500px;
        margin-top: -70px;
    }
    
    .first__title {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    .catalog__item {
        width: calc(33.333% - 2rem);
        min-width: 250px;
    }
    
    .faq__list {
        grid-template-columns: 1fr;
    }
    
    .payment-delivery__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    .header {
        padding: 0;
    }
    
    .header__inner {
        padding: 0.75rem 20px;
        gap: 1rem;
    }
    
    .header__logo-section {
        flex: 1;
        min-width: 0;
    }
    
    .header__logo-img {
        height: 60px;
        max-width: 150px;
    }
    
    .header__text {
        font-size: 0.65rem;
        line-height: 1rem;
        display: none;
    }
    
    .header__right {
        gap: 1rem;
    }
    
    .header__social {
        display: none;
    }
    
    .header__btn-wrap {
        display: flex;
        align-items: center;
    }
    
    .header__btn {
        display: block;
    }
    
    .header__nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        transition: 0.3s;
        z-index: 998;
        padding: 2rem 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .header__nav.active {
        left: 0;
    }
    
    .nav {
        flex-direction: column;
        padding: 0 2rem;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 0;
        display: block;
    }
    
    .nav__social-mobile {
        display: block;
        padding: 1.5rem 2rem;
        border-top: 1px solid #F1F1F1;
        margin-top: 1rem;
    }
    
    .nav__social-mobile p {
        font-size: 0.875rem;
        margin: 0 0 1rem 0;
        color: var(--text-main-color);
        font-weight: 600;
    }
    
    .nav__social-mobile .social-links {
        display: flex;
        gap: 1rem;
    }
    
    .nav__social-mobile .social-links a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f7f7f7;
        border-radius: 50%;
        color: var(--text-main-color);
        transition: 0.3s;
    }
    
    .nav__social-mobile .social-links a:hover {
        background: var(--main-color);
        color: #fff;
        transform: scale(1.1);
    }
    
    .header__phone {
        font-size: 0.875rem;
    }
    
    .first {
        min-height: 400px;
        margin-top: -70px;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .first__title {
        font-size: 1.75rem;
        line-height: 2.25rem;
        width: 100%;
    }
    
    .first__text p {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }
    
    .r888 {
        flex-direction: column;
    }
    
    .r333 {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .kred {
        font-size: 3rem;
    }
    
    .kred2 {
        font-size: 1.2rem;
    }
    
    .catalog__title {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .catalog__container {
        padding: 0 20px;
    }
    
    .catalog__item {
        width: calc(50% - 2rem);
        min-width: 200px;
    }
    
    .contacts__grid {
        grid-template-columns: 1fr;
    }
    
    .advantages__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }
    
    .header__inner {
        padding: 0.5rem 15px;
    }
    
    .header__logo a {
        font-size: 1.3rem;
    }
    
    .header__phone {
        font-size: 0.75rem;
    }
    
    .header__nav {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .wrapper,
    .wrapper2,
    .container {
        padding: 0 15px;
    }
    
    .first__title {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .first__text p {
        font-size: 1rem;
    }
    
    .kred {
        font-size: 2.5rem;
    }
    
    .catalog__title {
        font-size: 1.75rem;
        padding: 0 15px;
    }
    
    .catalog__container {
        padding: 0 15px;
    }
    
    .catalog__container .container-flex {
        margin: -0.75rem;
    }
    
    .catalog__item {
        width: 100%;
        margin: 0.75rem;
        min-width: auto;
    }
    
    .faq__title {
        font-size: 1.75rem;
        padding: 0 15px;
    }
    
    .faq__list {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .section__title,
    .md-main-title {
        font-size: 1.75rem;
        padding: 0 15px;
    }
    
    .advantages,
    .payment-delivery,
    .contacts {
        padding: 3rem 0;
    }
}
