/* store.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
    color: #333;
}

.store-page .hero {
    text-align: center;
    padding: 80px 20px;
    background-color: #003366; /* koyu mavi ton */
    color: white;
    background-image: linear-gradient(135deg, #003366, #0055a5);
}

.store-page .hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.store-page .hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    width: 280px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 {
    margin: 10px 0;
    color: #003366; /* koyu mavi */
}

.product-card p {
    font-size: 0.95rem;
    color: #555;
    height: 50px;
    overflow: hidden;
}

.price {
    display: block;
    margin: 15px 0;
    font-weight: bold;
    font-size: 1.1rem;
    color: #003366;
}

.buy-btn {
    background-color: #003366;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.buy-btn:hover {
    background-color: #0055a5;
    transform: scale(1.05);
}

.info {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.info h2 {
    color: #003366;
    margin-bottom: 15px;
}

.info p {
    color: #333;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .products {
        flex-direction: column;
        align-items: center;
    }
}
