/* General Styles */
body {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    color: #222;
}

.header-image img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.section {
    margin-bottom: 40px;
}

.section h3 {
    text-align: center;
    margin-bottom: 20px;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-item {
    width: calc(25% - 20px);
    box-sizing: border-box;
    text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    transition: transform 0.3s ease;
    margin-bottom: 20px; /* Added for spacing between rows */
}

.product-item:hover {
    transform: scale(1.05);
}

.product-item .price {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
    margin-top: 10px;
    display: block;
}

/* Responsive Styles */

/* For tablets and larger phones */
@media screen and (max-width: 992px) {
    .product-item {
        width: calc(50% - 20px); /* Two products per row */
    }
}

/* For smaller phones */
@media screen and (max-width: 576px) {
    .product-item {
        width: 100%; /* One product per row */
        margin: 0 0 20px 0; /* Full width with margin below */
    }

    .section h3 {
        text-align: center;
        font-size: 18px; /* Smaller font size for smaller screens */
    }

    .price {
        font-size: 16px; /* Adjust font size for smaller screens */
    }

    .products-grid {
        gap: 10px; /* Reduce gap for smaller screens */
    }
}
.product-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-price {
    font-size: 24px;
    margin-bottom: 20px;
}

.product-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-description p {
    margin-bottom: 15px;
}
