:root {
    --accent: #ff6600; /* CMT Turuncusu */
    --accent-dark: #cc5200;
    --accent-soft: #fff4e6; /* Hafif turuncu arka plan */
    --anthracite: #2c3e50;
    --bg: #ffffff;
    --card: #fdfdfd;
    --muted: #5a6c7d;
    --text: #222222;
    --shadow: rgba(0, 0, 0, 0.08);
    --border-color: #e1e8ed;
}

* { box-sizing: border-box; }

body {
    margin: 0; padding: 8px; background: var(--bg); color: var(--text);
    font-family: 'Inter', Arial, sans-serif; line-height: 1.65;
}

.tm-product-container { max-width: 1200px; margin: 0 auto; }

/* HEADER - Turuncu Gradyan ile Güncellendi */
.tm-header {
    background: linear-gradient(135deg, #cc5200 0%, #331500 100%);
    padding: 50px 40px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 10px 30px rgba(204, 82, 0, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.header-content { position: relative; z-index: 2; width: 65%; }

.header-content h1 {
    color: #ffffff; margin: 0; font-size: 32px; font-weight: 800;
    letter-spacing: -1px; text-align: left; line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.header-content .subtitle {
    display: block; font-size: 16px; font-weight: 400; color: #ffd6b3;
    margin-top: 12px; letter-spacing: 0.5px;
}

.badge-row { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }

.badge-item {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; padding: 6px 14px; border-radius: 4px; font-size: 11px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}

.header-watermark {
    position: absolute; right: -15px; bottom: -35px;
    font-size: 140px; color: rgba(255, 255, 255, 0.05);
    font-weight: 900; user-select: none; line-height: 1;
    pointer-events: none; letter-spacing: -8px;
    text-transform: uppercase; white-space: nowrap;
}

h2 { font-size: 20px; margin: 22px 0 10px; position: relative; color: var(--anthracite); font-weight: 700; }
h2::after { content: ""; display: block; width: 50px; height: 4px; background: var(--accent); margin-top: 8px; border-radius: 2px; }

.card { background: var(--card); padding: 20px; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: 0 4px 15px var(--shadow); margin-bottom: 20px; }

.product-table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 14px; }
.product-table th, .product-table td { border: 1px solid var(--border-color); padding: 12px; vertical-align: middle; text-align: center; }
.product-table th { background: var(--accent-soft); color: var(--accent); font-weight: 700; }

@media (max-width: 900px) {
    .header-content { width: 100%; }
    .header-watermark { font-size: 60px; bottom: -10px; right: 5px; letter-spacing: -2px; }
    .header-content h1 { font-size: 24px; }
}

/* Üretim Hattı İlgili Ürünler */
   .urun-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr); /* 4 kolonlu yapı */
        gap: 20px;
        margin-top: 20px;
    }
    
    .urun-card {
        background: #fff;
        border: 1px solid #e1e8ed;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        display: flex; /* İçeriği dikey dizilim için flex yaptık */
        flex-direction: column; 
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .urun-card:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

    /* Görselin her zaman aynı alanda durması için */
    .urun-card .img-wrapper {
        height: 160px; /* Sabit yükseklik */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }

    .urun-card img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain; /* Görseli orantılı sığdırır */
    }

    .urun-card h3 {
        font-size: 14px;
        margin: 0 0 10px 0;
        color: #333;
        line-height: 1.3;
        flex-grow: 1; /* Başlık alanının esnemesini sağlar */
    }

    .urun-card .cta-button {
        display: block;
        margin-top: auto; /* Butonu en alta iter */
        padding: 10px;
        background: #ff6600;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
    }

    /* Tablet/Mobil düzenlemeleri */
    @media (max-width: 1024px) { .urun-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 768px) { .urun-grid { grid-template-columns: repeat(2, 1fr); } }
