body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(crop.jpeg);
    backdrop-filter: blur(15px);
    background-size: 100%;
}
.container {
    max-width: 1400px;
    margin: 30px;
    padding: 30px;
}
h1 {
    text-align: center;
    color: #f6faf2;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin:40px;
    padding: 10px;
    padding-left: 30px;
    justify-content: center;
    border-radius: 15px;
    
}

.product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(255, 255, 255);

    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    padding: 20px;
    padding-left: 30px;
    transition: transform 0.3s;
}
.product:hover {
    box-shadow: 0 10px 20px rgba(196, 240, 234, 0.4);
    transform: scale(1.02);
}
.product h2 {
    font-size: 24px;
    color: #2c3e50;
    text-transform: uppercase;
}
.product img {
    width: 40%;
    border-radius: 15px;
    border: 3px solid #ddd;
    transition: transform 0.5s;
    margin:20px;
}


.product img:hover {
    transform: scale(1.05);
}
.product .description {
    width: 86%;
    padding: 10px;
    
    
    border-radius: 15px;
    background: linear-gradient(to right, #dcf7f7, #dcf3d2c2);
    border-style: solid;
}
.product .description:hover{
    transform: scale(1.05);
    
}

.category {
    display: inline-block;
    background: #4a7023;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 10px;
}
.product p {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}
.buy-button {
    display: block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #4a7023;
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.buy-button:hover {
    background: #641864b6;
    transform: scale(1.05);

}
ul {
    list-style: none;
    padding: 0;
}
ul li::before {
    content: "✔️ ";
    color: #4a7023;
    font-weight: bold;
    font-size: medium;
}
footer {
    background-color: #cff0e0;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
.products-grid.single {
display: flex;
justify-content: center; 
align-items: center; 
}

.products-grid.single .product {
display: flex;
justify-content: center;
align-items: center;
gap: 20px; 
width: 40%; 
}

.products-grid.single .description {
width: 40%;
text-align: left;
}