.hero-banner {
    position: relative;
    background-color: var(--primary-green);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    overflow: hidden;
    min-height: 60vh;
    height: auto;
}

.hero-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex-basis: 50%;
    padding-right: 60px;
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 22px;
    line-height: 1.5;
    margin: 0;
    max-width: 400px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 20px;
        min-height: 50vh;
    }

    .hero-container {
        width: 100%;
    }

    .hero-text {
        flex-basis: 100%;
        padding-right: 0;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero-text p {
        font-size: 16px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 40px 15px;
        min-height: 40vh;
    }

    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-text p {
        font-size: 14px;
        max-width: none;
        margin: 0 auto;
    }
}

body {
    margin: 0;
    background-color: #fff;
    font-family: 'Articulat CF', sans-serif;
}

.product-grid-container {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.product-image-wrapper {
    background-color: #ffffff;
    padding: 0px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper img {
    width: 80%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.product-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 18px;
    color: var(--primary-green);
    margin: 0 0 10px 0;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-rating,
.product-specs {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

.product-rating {
    display: flex;
    align-items: center;
}

.product-rating span {
    margin-left: 5px;
}

.product-button {
    display: block;
    width: 100%;
    background-color: var(--light-yellow);
    color: var(--text-dark);
    text-align: center;
    padding: 14px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: auto;
    text-decoration: none;
}

.product-button:hover {
    background-color: #e6af4b;
    transition: background-color 0.3s ease;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-info h3 {
        font-size: 16px;
    }
}

