/* Общие стили*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
    background-color: #faf5e9; // Цвет фона
    overflow-x: hidden;
    line-height: 1.4;
}

.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Все блоки используют .container */
.header, .banner, .why-choose-us, .popular-items, .footer {
    width: 100%;
}

/* HEADER */
.header {
    height: 180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px #483225; // Основной цвет, коричневый
}

.header-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 18px;
}

.logo {
    width: 96px;
    height: 96px;
    background-image: url('/public/assets/img/logo_mama_carlo_128.png');
    background-size: cover;
    flex-shrink: 0;
}

.header-text {
    display: flex;
    flex-direction: column;
}

.header-text h1 {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: clamp(28px, 5vw, 48px);
    color: #483225;
    line-height: 1.1;
}

.header-text p {
    font-family: Arial, sans-serif;
    font-size: clamp(14px, 2.5vw, 20px);
    color: #483225;
    line-height: 1.2;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    gap: clamp(20px, 4vw, 60px);
    flex: 1;
}

.header-right a {
    font-family: Arial, sans-serif;
    font-size: clamp(16px, 2.5vw, 22px);
    color: #483225;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s;
}

.header-right a:hover {
    color: #8B4513;
}


/* FOOTER */
.footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    overflow: hidden;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 20px;
    background-color: #483225;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.footer-contacts {
    display: flex;
    gap: 24px;
    margin-top: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
    font-size: clamp(18px, 2vw, 22px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.contact-item:hover {
    color: #efd3ad;
}

.contact-icon {
    width: 22px;
    height: 22px;
    stroke: white;
    stroke-width: 2;
}

.footer-social {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.social-icon {
    height: 36px;
    stroke: white;
    stroke-width: 2;
    fill: white;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}



/* Главная страница*/
/* Баннер */
.banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 720px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #8B4513;
    background-image: url('/public/assets/img/main_banner_bg_500.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero {
    height: 100%;
    display: flex;
    align-items: center;
    padding: clamp(30px, 6vw, 80px) 0;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 1000px;
}

.hero h2 {
    font-size: clamp(32px, 7vw, 56px);
    font-weight: bold;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

.hero p {
    font-size: clamp(18px, 3.5vw, 28px);
    color: white;
    line-height: 1.4;
    margin-bottom: 48px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.9);
}

.buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

/* КНОПКИ */
.btn, .product-buy-btn {
    padding: 16px 32px;
    border: 2px solid #efd3ad;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: clamp(14px, 2vw, 18px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}

.btn-primary {
    background-color: #faf5e9;
    color: #483225;
    min-width: 200px;
    height: 48px;
}

.btn-primary:hover {
    background-color: #d9b377;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231,194,140,0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
    min-width: 200px;
    height: 48px;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.2);
    border-color: #efd3ad;
}



/* Блок на главной Почему выбирают нас */
.why-choose-us {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

.why-title {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: clamp(32px, 5vw, 48px);
    color: #483225;
}

.reasons {
    display: flex;
    gap: clamp(60px, 12vw, 220px);
    justify-content: center;
    flex-wrap: wrap;
}

.reason {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 220px;
}

.reason-icon {
    width: clamp(48px, 8vw, 72px);
    height: clamp(48px, 8vw, 72px);
    color: #483225;
}

.reason-text {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: clamp(16px, 2.5vw, 24px);
    color: #483225;
    line-height: 1.3;
}

.reason-description {
    font-family: Arial, sans-serif;
    font-size: clamp(13px, 2vw, 16px);
    color: #666;
    line-height: 1.5;
    max-width: 280px;
    text-align: center;
    padding-bottom: 20px
}

/* Блок на главной Популярные товары */
.popular-items {
    padding: 80px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding-bottom: 180px;
    background-color: #fff;
}

.popular-title {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: clamp(32px, 5vw, 48px);
    color: #483225;
    text-align: center;
    margin-bottom: 48px;
}

.items-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.items-grid > * {
    scroll-snap-align: start;
}

.items-grid::-webkit-scrollbar {
    height: 10px;
}

.items-grid::-webkit-scrollbar-track {
    background: #f8f4ee;
    border-radius: 5px;
}

.items-grid::-webkit-scrollbar-thumb {
    background: #8B4513;
    border-radius: 5px;
}

.items-grid::-webkit-scrollbar-thumb:hover {
    background: #6B3626;
}

.product-item {
    width: calc((100% - 96px) / 4);
    max-width: 360px;
    min-width: 280px;
    height: clamp(400px, 40vw, 500px);
    border: 1px solid #8B4513;
    border-radius: 16px;
    overflow: hidden;
    background-color: white;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(139,69,19,0.15);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(139,69,19,0.25);
}

.product-image {
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #d9b377, #e7c28c);
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.product-title {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: clamp(14px, 2vw, 18px);
    color: #483225;
}

.product-desc {
    font-family: Arial, sans-serif;
    font-size: clamp(11px, 1.5vw, 14px);
    color: #666;
    line-height: 1.4;
}

.product-price {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: clamp(16px, 2.5vw, 22px);
    color: #8B4513;
}

.product-buy-btn {
    width: 100%;
    height: 44px;
    background-color: #483225;
    color: #fff;
    border: 1px solid #efd3ad;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.product-buy-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.product-buy-btn:hover {
    background-color: #d9b377;
    transform: translateY(-2px);
}



/* Страница Контакты */
.contacts-section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.contacts-content {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contacts-info .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Arial, sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    color: #483225;
}

.contacts-info .contact-item svg {
    width: 18px;
    height: 18px;
    stroke: #8B4513;
    flex-shrink: 0;
}

.contacts-info .contact-item a {
    color: #483225;
    text-decoration: none;
    transition: color 0.3s;
}

.contacts-info .contact-item a:hover {
    color: #D9B377;
}

.contacts-social {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.contact-social-link {
    font-family: Arial, sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    color: #483225;
    text-decoration: none;
    border-bottom: 1px dashed #8B4513;
    transition: color 0.3s, border-color 0.3s;
}

.contact-social-link:hover {
    color: #8B4513;
    border-color: #8B4513;
}

.yandex-map {
    width: 100%;
    max-width: 1200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(139,69,19,0.2);
}

.yandex-map iframe {
    border-radius: 10px;
}




/* Страница О нас */
.about-us {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: left;
}

.about-text {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: #483225;
    font-family: Arial, sans-serif;
}

.about-text p {
    font-size: clamp(14px, 2.2vw, 18px);
    line-height: 1.6;
}

/* PHOTOS GALLERY */
.photos-gallery {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 24px;
}

.photo-item {
    width: calc((100% - 48px) / 3);
    max-width: 360px;
    min-width: 260px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(139,69,19,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(139,69,19,0.25);
}

.photo-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.photo-caption {
    padding: 12px 16px;
    background-color: #faf5e9;
    color: #483225;
    font-family: Arial, sans-serif;
    font-size: clamp(12px, 2vw, 16px);
    text-align: center;
}

/* MOBILE: photos gallery */
@media (max-width: 768px) {
    .photos-gallery {
        gap: 20px;
    }

    .photo-item {
        width: 100%;
        max-width: 100%;
    }
}

/* PRODUCTS CATALOG */
.products-catalog {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 24px;
}

.product-catalog-item {
    width: calc((100% - 48px) / 3);
    max-width: 360px;
    min-width: 260px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(139,69,19,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    border: 1px solid #8B4513;
    display: flex;
    flex-direction: column;
}

.product-catalog-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(139,69,19,0.25);
}

.product-catalog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #d9b377, #e7c28c);
    overflow: hidden;
}

.product-catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-catalog-info {
    padding: 16px;
    background-color: #faf5e9;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-catalog-title {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: clamp(14px, 2vw, 18px);
    color: #483225;
}

.product-catalog-desc {
    font-family: Arial, sans-serif;
    font-size: clamp(11px, 1.5vw, 14px);
    color: #666;
    line-height: 1.4;
}

.product-catalog-price {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: clamp(16px, 2vw, 20px);
    color: #8B4513;
}

.product-catalog-buy-btn {
    width: 100%;
    height: 44px;
    background-color: #483225;
    color: #fff;
    border: 1px solid #efd3ad;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: clamp(12px, 1.5vw, 16px);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.product-catalog-buy-btn:hover {
    background-color: #d9b377;
    transform: translateY(-2px);
}

.product-catalog-buy-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* MOBILE: products catalog */
@media (max-width: 768px) {
    .products-catalog {
        gap: 20px;
    }

    .product-catalog-item {
        width: 100%;
        max-width: 100%;
    }
}

/* МОДАЛЬНОЕ ОКНО ДЛЯ ФОТО */
.photo-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.photo-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 95%;
    max-height: 95%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #faf5e9;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #483225;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background-color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #483225;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-nav:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    color: #483225;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 10;
}

/* АНИМАЦИИ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Кликабельность фото */
.photo-item {
    cursor: pointer;
    user-select: none;
}

.photo-item:hover .photo-caption {
    background-color: #e7c28c;
}

/* Мобильные адаптации */
@media (max-width: 768px) {
    .modal-close,
    .modal-nav {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
    }

    .modal-prev {
        left: 15px;
    }

    .modal-next {
        right: 15px;
    }

    .modal-caption {
        font-size: 14px;
        padding: 10px 20px;
        bottom: 15px;
    }
}





/* --------------------------------------------------------- */


/* --- МОБИЛЬНЫЕ ТЕЛЕФОНЫ — маленькие экраны (до 480px) --- */
@media (max-width: 480px) {
    .header {
        flex-direction: column;
        height: auto;
        gap: 16px;
        padding: 16px 0;
    }

    .header-left,
    .header-right {
        width: 100%;
        justify-content: center;
    }

    .header-right {
        flex-wrap: wrap;
        gap: 12px;
    }

    .header-text h1 {
        font-size: clamp(24px, 5vw, 32px);
    }

    .header-text p {
        font-size: clamp(12px, 3vw, 16px);
    }

    .header-right a {
        font-size: clamp(14px, 4vw, 18px);
    }

        .hero {
        padding: 60px 24px 40px;  /* добавили отступ сверху/снизу */
    }

    .hero-text {
        padding-top: 16px;       /* отступ от верха контейнера */
        text-align: center;
    }

    .hero h2 {
        font-size: clamp(24px, 5vw, 36px);
    }

    .hero p {
        font-size: clamp(14px, 3vw, 20px);
    }

    .btn {
        font-size: clamp(12px, 3vw, 16px);
    }

    .reasons {
        flex-direction: column;
        gap: 32px;
    }

    .reason {
        max-width: 100%;
    }

    .footer {
        flex-direction: column;
        gap: 16px;
        padding: 32px 0 !important;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 12px;
        order: 2;
    }

    .footer-social {
        order: 1;
    }

    .footer-contacts .contact-item,
    .footer-social .social-icon {
        font-size: clamp(14px, 3vw, 18px);
    }
}

/* --- МОБИЛЬНЫЕ ТЕЛЕФОНЫ — средние и крупные (до 768px) --- */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        gap: 20px;
        padding: 24px 0;
    }

    .header-left {
        width: 100%;
        justify-content: center;
    }

    .header-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .header-right a {
        font-size: clamp(14px, 3vw, 20px);
    }

    .hero {
        padding: 60px 24px 40px;  /* добавили отступ сверху/снизу */
    }

    .hero-text {
        padding-top: 16px;       /* отступ от верха контейнера */
        text-align: center;
    }

    .hero h2 {
        font-size: clamp(28px, 6vw, 42px);
    }

    .hero p {
        font-size: clamp(16px, 3.5vw, 24px);
    }

    .buttons {
        justify-content: center;
        gap: 16px;
    }

    .btn {
        font-size: clamp(14px, 3vw, 18px);
    }

    .reasons {
        flex-direction: column;
        gap: 48px;
    }

    .reason {
        max-width: 100%;
    }

    .popular-items {
        padding: 60px 0;
        padding-bottom: 140px;
    }

    .popular-title {
        font-size: clamp(28px, 5vw, 40px);
    }

    .items-grid {
        gap: 20px;
    }

    .product-item {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        height: auto;
    }

    .product-image {
        height: 200px;
    }

    .footer {
        flex-direction: column;
        gap: 24px;
        height: auto;
        padding: 48px 0 !important;
        text-align: center;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 20px;
        order: 2;
    }

    .footer-social {
        order: 1;
    }
}

/* --- ПЛАНШЕТЫ И ПРОМЕЖУТОЧНЫЕ ЭКРАНЫ (769–1024px) --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-left {
        width: 45%;
    }

    .header-right {
        gap: clamp(16px, 3vw, 40px);
    }

    .hero {
        padding: clamp(24px, 5vw, 60px) 0;
    }

    .hero h2 {
        font-size: clamp(30px, 6vw, 48px);
    }

    .hero p {
        font-size: clamp(16px, 3vw, 24px);
    }

    .buttons {
        gap: clamp(16px, 3vw, 30px);
    }

    .btn {
        font-size: clamp(14px, 3vw, 18px);
        padding: 14px 28px;
    }

    .popular-items {
        padding: 70px 0;
        padding-bottom: 160px;
    }

    .items-grid {
        gap: 28px;
    }

    .product-item {
        width: calc((100% - 60px) / 3);
        min-width: 240px;
    }

    .product-image {
        height: 180px;
    }

    .footer-contacts .contact-item {
        font-size: clamp(16px, 2.5vw, 20px);
    }

    .footer-social {
        gap: 36px;
    }
}

/* --- ДЕСКТОПНЫЕ ЭКРАНЫ (1025–1919px) --- */
@media (min-width: 1025px) and (max-width: 1919px) {
    .header-right {
        gap: clamp(20px, 4vw, 50px);
    }

    .hero {
        padding: clamp(30px, 6vw, 70px) 0;
    }

    .hero h2 {
        font-size: clamp(32px, 7vw, 52px);
    }

    .hero p {
        font-size: clamp(16px, 3.5vw, 26px);
    }

    .buttons {
        gap: clamp(20px, 4vw, 30px);
    }

    .btn {
        padding: 16px 32px;
        font-size: clamp(14px, 3vw, 18px);
    }

    .reasons {
        gap: clamp(48px, 9vw, 180px);
    }

    .popular-items {
        padding: 80px 0;
        padding-bottom: 180px;
    }

    .items-grid {
        gap: 32px;
    }

    .product-item {
        width: calc((100% - 96px) / 4);
        max-width: 360px;
        min-width: 280px;
    }

    .product-image {
        height: 50%;
    }

    .footer-contacts {
        font-size: clamp(18px, 2vw, 20px);
    }
}

/* --- 4K+ ЭКРАНЫ И ОЧЕНЬ БОЛЬШИЕ МОНИТОРЫ (от 1920px) --- */
@media (min-width: 1920px) {
    .container {
        padding: 0 60px;
    }

    .header {
        height: 200px;
        padding: 0 60px;
    }

    .header-text h1 {
        font-size: 52px;
    }

    .header-text p {
        font-size: 22px;
    }

    .header-right a {
        font-size: 22px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h2 {
        font-size: 58px;
    }

    .hero p {
        font-size: 30px;
    }

    .reasons {
        gap: 220px;
    }

    .reasons .reason {
        max-width: 260px;
    }

    .popular-items {
        padding: 100px 0;
    }

    .popular-title {
        font-size: 52px;
    }

    .items-grid {
        gap: 40px;
    }

    .product-item {
        width: calc((100% - 120px) / 4);
        max-width: 380px;
    }

    .product-image {
        height: 220px;
    }

    .footer-contacts {
        font-size: 20px;
    }

    .footer-social {
        gap: 60px;
    }
}
