.hero1-content h2,
.product-info h3,
.product-section h2 {
    -webkit-text-fill-color: transparent
}

:root {
    --black: #000000;
    --dark-gray: #111111;
    --gold-1: #d71010 ;
    --gold-2: #f34545 ;
    --metallic-gold: #fff;
    --text-light: #ffffff;
    --text-muted: #cccccc
}

.hero1 {
    position: relative;
    height: 50vh;
    background: url('../images/solar.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px 0;
    text-align: left
}

.hero1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 0
}

.hero1-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    top: 4rem;
    margin-left: -5rem
}

.hero1-content h1 {
    font-family: Montserrat, Sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1
}

.hero1-content h2 {
    font-size: 2rem;
    background: var(--metallic-gold);
    -webkit-background-clip: text;
    background-clip: text;
    margin-top: 10px
}

.product-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    color: var(--text-light)
}

.product-section {
    margin-bottom: 60px
}

.product-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    background: black;
    -webkit-background-clip: text;
    background-clip: text
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px
}

.product-card {
    background: linear-gradient(to top right, rgb(0, 0, 0) 40%, rgba(255,0,0,0.8) 100%);;
    border: 1px solid var(--gold-1);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    transition: .3s;
    box-shadow: 0 4px 15px rgba(181, 126, 16, .3)
}

.product-info h3 {
    background: var(--metallic-gold)
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(249, 224, 123, .5)
}

.product-card img {
    width: 100px;
    height: auto;
    margin-right: 15px;
    border-radius: 6px;
    /* border: 1px solid var(--gold-1) */
}

.product-info {
    flex: 1
}

.product-info h3 {
    margin: 0;
    font-size: 1.2rem;
    -webkit-background-clip: text;
    background-clip: text
}

.product-info p {
    margin: 6px 0 12px;
    font-size: .95rem;
    color: var(--text-muted)
}

.btn {
    color: #fff;
    background-color: #d71010;
    border: 2px solid #fff;
    
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.4)
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6)
}

@media (max-width:768px) {
    .hero1 {
        padding: 80px 20px 0;
        height: 40vh
    }

    .hero1-content {
        margin-left: 0;
        top: 2rem;
        padding: 0 20px
    }

    .hero1-content h1 {
        font-size: 28px
    }

    .hero1-content h2,
    .product-section h2 {
        font-size: 1.5rem
    }

    .product-page {
        padding: 15px
    }

    .product-grid {
        grid-template-columns: 1fr
    }

    .product-card {
        flex-direction: column;
        text-align: center;
        padding: 15px
    }

    .product-card img {
        width: 90px;
        margin-right: 0;
        margin-bottom: 15px
    }

    .btn {
        padding: 8px 14px
    }
}

@media (max-width:480px) {
    .hero1 {
        padding: 60px 15px 0;
        height: 35vh
    }

    .hero1-content h1 {
        font-size: 24px
    }

    .hero1-content h2 {
        font-size: 1.2rem
    }

    .product-page {
        padding: 10px
    }

    .product-section h2 {
        font-size: 1.3rem
    }

    .product-card {
        flex-direction: column;
        padding: 12px
    }

    .product-card img {
        width: 70px;
        margin-bottom: 10px
    }

    .product-info h3 {
        font-size: 1rem
    }

    .product-info p {
        font-size: .85rem
    }

    .btn {
        padding: 6px 10px;
        font-size: .9rem
    }
}