/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GENEL */
body {
    font-family: "Poppins", Arial, sans-serif;
    background-color: #f6f6f6;
    color: #333;
}

/* HEADER */
header {
    background: linear-gradient(90deg, #000, #2c2c2c);
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

header h1 {
    font-size: 2rem;
    letter-spacing: 1px;
}

header p {
    margin-top: 8px;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* GRID */
.taki-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* TAKI KART */
.taki-kart {
    background-color: #fff;
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.taki-kart:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* RESİM */
.taki-kart img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* BAŞLIK */
.taki-kart h2 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

/* KATEGORİ */
.taki-kart .kategori {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
}

/* FİYAT */
.taki-kart .fiyat {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* BUTON */
.taki-kart button {
    background: linear-gradient(135deg, #000, #444);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.taki-kart button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* FOOTER */
footer {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 15px;
    font-size: 0.85rem;
    margin-top: 50px;
}

/* MOBİL */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.6rem;
    }

    .taki-kart h2 {
        font-size: 1.05rem;
    }
}
/* 🔲 Dikdörtgen çerçeveli "Ana Sayfaya Dön" butonu */
.button {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #000;        /* Siyah çerçeve */
    background-color: transparent; /* İçi boş, sade */
    color: #000;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    font-family: "Poppins", Arial, sans-serif;
    border-radius: 4px;            /* Hafif köşeli, tam dikdörtgene yakın */
    transition: all 0.25s ease;
    margin: 40px auto;
    display: block;
    width: fit-content;            /* Genişliği yazıya göre */
}

/* Hover efekti */
.button:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.18);
}
