* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
    background-image: linear-gradient(to right, #111111bd, #222222da);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    letter-spacing: 1px;
    color: white;
    text-decoration: underline;

}

.main-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    /* عمود للتشيرت الكبير و3 أعمدة للباقي */
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
    border-radius: 20px;
    z-index: -1;
}

.featured-product {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.featured-product img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.featured-product h2 {
    margin: 15px 0 5px;
}

.featured-product p {
    margin-bottom: 10px;
    color: #444;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 أعمدة */
    grid-template-rows: repeat(3, auto);
    /* 3 صفوف */
    gap: 20px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-info {
    padding: 10px;
}

.product-info h3 {
    margin: 10px 0 5px;
}

.product-info p {
    color: #0a0909;
}

.buy-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #2c7be5;
    color: rgb(12, 11, 11);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #1a5fd0;
}