body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #fff;
}

.header {
    text-align: center;
    padding: 20px;
    background-color: #333;
}

.header img {
    max-width: 150px;
    border-radius: 50%;
}

.header h1 {
    font-size: 24px;
    margin-top: 10px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px auto;
    max-width: 1000px;
    gap: 20px;
}

.category {
    flex: 1 1 calc(50% - 20px); /* Geniş ekranlarda çift sütun */
    background-color: #222;
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.category:hover {
    background-color: #333;
    transform: scale(1.03);
}

.category img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.category h3 {
    margin: 10px 0;
    font-size: 18px;
}

.category a {
    text-decoration: none;
    color: #fff;
    display: block;
}

@media (max-width: 768px) {
    .category {
        flex: 1 1 100%; /* Mobil cihazlarda tek sütun */
    }
}
/* Aşağısı kategori sayfasının içi. */
.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.product {
    flex: 1 1 calc(33.33% - 20px); /* Üç sütun düzeni */
    background-color: #1e1e1e; /* Kutucuk arkaplan rengi */
    border: 1px solid #333; /* Hafif çerçeve */
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.product:hover {
    background-color: #333; /* Hover arkaplan rengi */
    transform: scale(1.03); /* Hafif büyütme */
}

.product img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    padding: 0 10px;
}

.product-info h3 {
    font-size: 18px;
    margin: 0;
    color: #fff;
    text-align: left;
    flex-grow: 1;
}

.product-info .price {
    font-size: 18px;
    font-weight: bold;
    color: #ffcc00; /* Fiyat için sarı renk */
    margin-left: 10px;
}

.product p {
    font-size: 14px;
    color: #bbb; /* Açıklama için gri renk */
    margin: 10px 0;
    text-align: left;
}

@media (max-width: 768px) {
    .product {
        flex: 1 1 100%; /* Mobilde tek sütun */
    }
}


.footer {
    background-color: #333; /* Koyu gri arkaplan */
    color: #fff; /* Beyaz yazı rengi */
    text-align: center; /* Metni ortala */
    padding: 15px 20px; /* Üst-alt boşluk */
    font-size: 14px; /* Yazı boyutu */
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5); /* Hafif üst gölge */
}

.footer strong {
    color: #fff; /* GYRO HOSTING için beyaz renk */
    font-weight: bold; /* Kalın yazı */
}

.footer a {
    color: #ffcc00; /* Sarı renk bağlantı */
    text-decoration: none; /* Alt çizgiyi kaldır */
}

.footer a:hover {
    color: #fff; /* Hover'da beyaz renk */
    text-decoration: underline; /* Alt çizgi ekle */
}

