.banner-section {
    position: relative;
    height: 470px;
    background: url('https://images.unsplash.com/photo-1615529182904-14819c35db37?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&h=600&q=80') center/cover no-repeat;
    margin-bottom: 50px;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.banner-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.banner-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto;
    color: white;
    line-height: 1.5;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}


.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.wallpanel-description {
    line-height: 1.8;
    color: #333;
    border-left: 4px solid #36b9cc;
    border-right: 4px solid #36b9cc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
}

.wallpanel-description .text-center.text-justify {
    margin: 0 auto;
}

.wallpanel-description h2 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
}

.wallpanel-description p {
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 0;
}


.text-justify {
    text-align: justify;
}

.benefit-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.benefit-list li {
    padding: 8px 0;
    font-size: 1.1rem;
}

.benefit-list i {
    color: #2ab1ad;
    margin-right: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.product-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-category {
    color: #2ab1ad;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-price {
    font-weight: 600;
    color: #555;
}

.regular-price {
    font-size: 1.1rem;
}

.btn-more-products {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    border-color: #2ab1ad;
    color: #2ab1ad;
    transition: all 0.3s;
}

.btn-more-products:hover {
    background-color: #2ab1ad;
    border-color: #2ab1ad;
    color: white;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .banner-section {
        height: 350px;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}