.hero-section {
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.hero-picture {
    position: relative;
    display: block;
    width: 100%;
    height: 700px;
    z-index: 0;
}

.hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    z-index: 1;
    pointer-events: none;
}


.hero-container {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1261px;
    padding: 20px;
    z-index: 2;
}

.hero-text-content {
    max-width: 600px;
}

.hero-text-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #e4dfdf;
}

@media (max-width: 768px) {
    .hero-picture {
        height: 400px;
    }

    .hero-text-content h1 {
        font-size: 32px;
    }

    .hero-text-content p {
        font-size: 16px;
    }

    .hero-text-content {
        text-align: left;
    }

    .hero-container {
        width: 100%;
    }
}

.appliances-block {
    padding: 80px 0;
    background-color: #ffffff;
    width: 100%;
}

.appliances-inner {
    width: 100%;
    max-width: 1261px;
    margin: 0 auto;
    padding: 0 20px;

}

.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #000;
}

.section-desc {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.appliances-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.appliances-track::-webkit-scrollbar {
    display: none;
}

.appliance-card {
    min-width: 80%;
    scroll-snap-align: start;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.app-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f5f5f5;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-img {
    width: 60%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.appliance-card:hover .app-img {
    transform: scale(1.05);
}

.app-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10px;
    gap: 10px;
}

.app-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #111;
    transition: color 0.3s ease;
}

.app-arrow {
    font-size: 24px;
    line-height: 1;
    color: #111;
    transform: translateX(0);
    transition: transform 0.3s ease, color 0.3s ease;
    font-weight: 400;
    margin-top: -4px;
}

.appliance-card:hover .app-arrow {
    transform: translateX(5px);
    color: var(--hover-line-color);
}

.appliance-card:hover .app-title {
    color: #000;
}

@media (min-width: 768px) {
    .appliance-card {
        min-width: 40%;
    }
}

@media (min-width: 1024px) {
    .appliances-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
        gap: 40px;
        width: 100%;
    }

    .appliance-card {
        min-width: auto;
    }

    .section-title {
        font-size: 36px;
    }
}

.split-section {
    display: flex;
    max-width: 1261px;
    margin: auto;
    flex-direction: column;
    padding: 0 20px;
}

.split-image, .split-content {
    width: 100%;
}

.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.split-content {
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.split-text-wrap {
    max-width: 450px;
}

.split-text-wrap h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 300;
}

.split-text-wrap p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.btn-outline-black {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #000;
    border-radius: 5px;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-outline-black:hover {
    background-color: #000;
    color: #fff;
}



@media (min-width: 1024px) {

    .hero-text-content h1 {
        font-size: 48px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .category-img-wrap {
        height: 500px;
    }

    .split-section {
        flex-direction: row;
        min-height: 500px;
    }

    .split-image, .split-content {
        width: 50%;
    }

    .split-content {
        padding: 0;
    }
}


.advantages-section {
    background-color: #e5e5e5;
    padding: 100px 0;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.advantage-icon {
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.advantage-item h4 {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #111;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    max-width: 350px;
}

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

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}


.blog-section {
    padding: 80px 0;
}

.blog-inner {
    width: 100%;
    max-width: 1261px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.news-img-link {
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
    text-decoration: none;
}

.news-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 2;
    background-color: #e0e0e0;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.news-date {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.news-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
}

.news-title a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
}

.news-title a:hover {
    color: #666;
}

.news-excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.news-more-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    margin-top: auto;
}

.news-more-text {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.news-arrow {
    font-size: 24px;
    line-height: 1;
    color: #111;
    font-weight: 400;
    transform: translateX(0);
    transition: transform 0.3s ease, color 0.3s ease;
    margin-top: -4px;
}

.news-more-link:hover .news-arrow {
    transform: translateX(5px);
    color: var(--hover-line-color);
}


@media (min-width: 768px) {
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}
