body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black; /* Çok açık gri/mavi tonunda arka plan */
    color: #e6c068; /* Koyu gri yazı rengi */
    overflow-x: hidden;
}

.header {
    text-align: center;
    padding: 20px;
    background-color: #333 ; /* Açık mavi tonunda başlık arka plan #e9eff6 */
}

.header img {
    max-width: 150px;
    border-radius: 50%;
}

.header h1 {
    font-size: 24px;
    margin-top: 10px;
    margin-left: 10px;
    color: #e6c068; /* Koyu gri başlık rengi #333 */
}
.back-arrow {
    
    margin-left: 20px;
    margin-right: 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);
    background-color: #222; /* Beyaz kutu arka plan */
    border: 1px solid #333; /* Hafif gri çerçeve */
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.category:hover {
    background-color: #222; /* Hafif açık mavi hover arka plan */
    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;
    color: #e6c068; /* Koyu gri başlık */
}

.category a {
    text-decoration: none;
    color: #e6c068; /* Açık mavi bağlantı */
    display: block;
}

@media (max-width: 768px) {
    .category {
        flex: 1 1 100%;
    }
}
/* Aşağısı product*/
.product-list {
    display: flex;
    flex-wrap: wrap; /* Taşan içerikleri bir alt satıra geçir */
    gap: 20px; /* Elemanlar arasındaki boşluk */
    justify-content: space-between; /* Eşit dağılım */
}


.product {
    flex: 1 1 calc(33.33% - 20px);
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product:hover {
    background-color: #1e1e1e;
    transform: scale(1.03);
}

.product img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-info {
    text-align: center; /* Merkez hizalama */
    margin: 10px 0;
}

.product-info h3 {
    font-size: 18px;
    margin: 5px 0;
    color: #e6c068;
    text-align: center;
    white-space: nowrap; /* Metnin taşmasını önler */
    overflow: hidden; /* Taşan kısmı gizler */
    text-overflow: ellipsis; /* Taşan kısmı üç nokta ile gösterir */
}

.product-info .price {
    font-size: 18px;
    font-weight: bold;
    color: #ffcc00;
    margin-top: 5px;
    display: block; /* Fiyatı alt satıra yerleştirir */
}

.product p {
    font-size: 14px;
    color: #e6c068;
    margin: 10px 0;
    text-align: center;
}
@media (max-width: 768px) {
    .product {
        flex: 1 1 calc(40% - 10px); /* Mobilde iki ürün yan yana */
        font-size: 12px;
    }
    
}



/* Aşağısı footer*/
.footer {
    background-color: black; /* Açık mavi arka plan */
    color: #e6c068; /* Koyu gri yazı */
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    position: relative;
    bottom: 0;
    max-width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Hafif üst gölge */
}

.footer strong {
    color: #e6c068; /* GYRO HOSTING için koyu gri */
    font-weight: bold;
}

.footer a {
    color: #e6c068; /* Mavi bağlantı */
    text-decoration: none;
}

.footer a:hover {
    color: #e6c068; /* Daha koyu mavi hover */
    text-decoration: underline;
}
