Ürünler

body {
margin: 0;
padding: 20px;
background: transparent; /* Arka plan şeffaf */
font-family: Arial, sans-serif;
}

.product-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 20px;
}

.product-item {
text-align: center;
background: transparent;
padding: 15px;
border-radius: 15px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.product-item img {
width: 100%;
height: auto;
border-radius: 12px;
transition: transform 0.3s ease;
}

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

.product-name {
margin-top: 10px;
font-size: 1.1em;
font-weight: bold;
color: #ffffff; /* Yazılar beyaz */
}

.buy-button {
display: inline-block;
margin-top: 8px;
padding: 10px 16px;
background: #ff6600;
color: #fff;
text-decoration: none;
font-size: 0.9em;
font-weight: bold;
border-radius: 8px;
transition: background 0.3s ease;
}

.buy-button:hover {
background: #e65c00;
}

Tek bir sonuç gösteriliyor