#header-text-img-2 .bg-wrap {
	background: #7ecdc0;
}

#header-text-img-2 .bg {
	opacity: 0.32;
}
#desc-img-text .bg-wrap {
	background: #7ecdc0;
}#desc-text-8 .bg {
    background-image: url('../images/bg-23.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    opacity: 0.51;
}
#desc-text-halfbg .bg-wrap {
    background: #7ecdc0;
}#cookie-text .bg-wrap {
    background-color: rgba (0,0,0,0.9);
}

/* Products Section Styles */
#products-section .bg-wrap {
    background: #f8f9fa;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-card img {
    border-radius: 6px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h4 {
    font-size: 1.2em;
    color: #333;
    font-weight: 600;
}

.product-card p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}

.price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price {
    font-size: 1.5em;
    font-weight: bold;
    color: #28a745;
}

.old-price {
    font-size: 1.1em;
    color: #999;
    text-decoration: line-through;
}

.discount {
    background: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}

.separator-line {
    width: 60px;
    height: 3px;
    background: #7ecdc0;
    margin: 0 auto;
}

.contact-info h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 15px;
}

.contact-info p {
    color: #666;
    margin-bottom: 0;
}

.info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.info-box h4 {
    color: #333;
    font-weight: 600;
}

.info-box ul li {
    padding: 5px 0;
    color: #666;
}

.company-info p {
    margin: 5px 0;
    color: #666;
}

@media (max-width: 768px) {
    .product-card {
        margin-bottom: 30px;
    }
    
    .price-box {
        flex-direction: column;
        align-items: center;
    }
    
    .separator-line {
        width: 40px;
        height: 2px;
    }
}