@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #000000;
    --bg-dark-secondary: #111111;
    --bg-light: #F5F5F7;
    --bg-white: #FFFFFF;
    
    --brand-primary: #FF6B00; 
    --brand-gradient: linear-gradient(135deg, #FF6B00 0%, #FF9500 100%);
    --brand-blue: #0A84FF;
    
    --text-main: #1D1D1F;
    --text-muted: #86868B;
    --text-white: #F5F5F7;
    
    --border-light: rgba(0, 0, 0, 0.08);
    --border-dark: rgba(255, 255, 255, 0.12);
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.02);
    --shadow-float: 0 20px 40px -10px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 30px rgba(255, 107, 0, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    
    --ease-apple: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.2s var(--ease-apple);
    --transition-slow: 0.6s var(--ease-apple);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Grid System */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.row { display: flex; flex-wrap: wrap; margin-right: -12px; margin-left: -12px; }
[class*="col-"] { position: relative; width: 100%; padding-right: 12px; padding-left: 12px; }
.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
@media (min-width: 768px) {
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
}
@media (min-width: 992px) {
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
}
@media (min-width: 1200px) {
    .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
}

/* Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-end { justify-content: flex-end; }
.mt-2 { margin-top: 16px; } .mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.noPadding { padding: 0 !important; }

/* ---------------- HEADER (Premium Glassmorphism) ---------------- */
.headerTop {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}
.headerTop a {
    color: var(--text-white);
    margin-left: 16px;
    opacity: 0.8;
}
.headerTop a:hover {
    opacity: 1;
    color: var(--brand-primary);
}
.firmaGirisi {
    background: rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.header {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-slow);
}
.header-logo-search-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { height: 40px; object-fit: contain; }
.headerMenu { margin-top: 16px; }
.headerMenu ul { display: flex; gap: 32px; }
.headerMenu a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    opacity: 0.85;
}
.headerMenu a:hover { opacity: 1; color: var(--brand-primary); }

.search-wrapper {
    display: flex;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.search-wrapper:focus-within {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}
.search-input { border: none; outline: none; background: transparent; width: 250px; font-size: 14px; }
.search-btn { background: transparent; border: none; color: var(--text-muted); cursor: pointer; }

/* ---------------- HERO / TEKLIF CONTAINER ---------------- */
.teklifContainer {
    position: relative;
    padding: 80px 0 60px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
    overflow: hidden;
}
.teklifContainer::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 30%, rgba(255, 107, 0, 0.05) 0%, transparent 40%);
    z-index: 0; pointer-events: none;
}
.teklifContainer .container { position: relative; z-index: 1; }
.teklifbaslik, .teklifContainer h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.1;
}
.teklifbaslik span, .teklifContainer h1 span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.teklifContainer p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ---------------- BENTO CARDS (Teklif Butonları) ---------------- */
.teklifBtn {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
}
.teklifBtn:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float);
    border-color: rgba(255, 107, 0, 0.3);
}
.teklifBtn img { width: 64px; height: 64px; transition: var(--transition-fast); }
.teklifBtn:hover img { transform: scale(1.1); }
.BtnTitle, .teklifBtn h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-main); }

/* ---------------- PRODUCT CARDS (.kombiListesi) ---------------- */
.kombiListesi {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-light);
    transition: var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.kombiListesi:hover {
    box-shadow: var(--shadow-float);
    transform: translateY(-6px);
    border-color: rgba(0,0,0,0.15);
}
.kombiListesi img { border-radius: var(--radius-sm); mix-blend-mode: multiply; }
.kombialan h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.4; color: var(--text-main); margin-bottom: 8px; }
.fiyat { font-size: 1.5rem; font-weight: 800; color: var(--brand-primary); display: block; margin: 16px 0; }
.fiyat small { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }

.tablo {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}
.tablo span { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.tablo p { font-size: 0.95rem; font-weight: 800; color: var(--text-main); margin-top: 4px; }

.butonlar { display: flex; gap: 8px; width: 100%; margin-top: auto; }

/* ---------------- BUTTONS ---------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 20px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 14px; transition: var(--transition-fast);
    cursor: pointer; border: 1px solid transparent; text-align: center; flex: 1;
}
.btn-success {
    background: var(--brand-gradient); color: white !important;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}
.btn-success:hover {
    transform: translateY(-2px); box-shadow: var(--shadow-glow); color: white;
}
.btn-primaryx, .btn-info {
    background: var(--bg-white); color: var(--text-main); border-color: var(--border-light);
}
.btn-primaryx:hover, .btn-info:hover {
    border-color: var(--text-main); transform: translateY(-2px);
}
.button-76 {
    background: var(--bg-white); border: 1px solid var(--border-light);
    padding: 24px; border-radius: var(--radius-md); display: block;
    text-align: center; transition: var(--transition-fast);
}
.button-76:hover { box-shadow: var(--shadow-float); transform: translateY(-4px); }
.frmTitle { font-size: 1.2rem; font-weight: 800; color: var(--text-main); }

/* ---------------- BREADCRUMBS & TITLES ---------------- */
.breads { padding: 16px 0; font-size: 14px; color: var(--text-muted); }
.breads a { color: var(--text-main); font-weight: 500; }
.listeBaslik { font-size: 2.5rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 24px; }
.markaSelect h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 24px; }

/* ---------------- FILTERS (Apple Style) ---------------- */
.filter-section {
    background: var(--bg-white); border-radius: var(--radius-md);
    padding: 24px; margin-bottom: 24px; border: 1px solid var(--border-light);
}
.filter-tag {
    display: inline-block; padding: 8px 16px; background: var(--bg-light);
    border-radius: var(--radius-full); font-size: 13px; font-weight: 600;
    color: var(--text-muted); cursor: pointer; transition: var(--transition-fast);
    border: 1px solid transparent; margin: 4px;
}
.filter-checkbox { display: none; }
.filter-checkbox:checked + .filter-tag {
    background: var(--brand-primary); color: white; box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}
.filter-tag:hover { background: #e5e5ea; color: var(--text-main); }

/* ---------------- FOOTER ---------------- */
.footer {
    background: var(--bg-white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-light);
    margin-top: 60px;
}
.footerBottom { background: var(--bg-white); padding-bottom: 40px; }
.footerBottom h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 24px; color: var(--text-main); }
.footerBottom p { color: var(--text-muted); line-height: 1.7; }
.footerMenuler ul li { margin-bottom: 12px; }
.footerMenuler a { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }
.footerMenuler a:hover { color: var(--brand-primary); }
.containerSocial { padding-top: 32px; border-top: 1px solid var(--border-light); }
.footerDeepSocial a { color: var(--text-muted); font-size: 22px; margin-right: 16px; }
.footerDeepSocial a:hover { color: var(--brand-primary); }
.footerDeepMenu { font-size: 0.9rem; color: var(--text-muted); }
.footerDeepMenu a { color: var(--text-muted); margin-right: 16px; }

/* ---------------- MOBILE RESPONSIVENESS ---------------- */
@media (max-width: 768px) {
    .headerMenu ul {
        flex-direction: column; display: none; background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px); position: absolute; top: 100%; left: 0; width: 100%;
        padding: 24px; box-shadow: var(--shadow-float); border-top: 1px solid var(--border-light);
    }
    .headerMenu.active ul { display: flex; }
    .teklifbaslik, .teklifContainer h1 { font-size: 2rem; }
    .teklifBtn { padding: 24px 12px; }
    .teklifBtn img { width: 48px; height: 48px; }
    .mobilForm {
        position: fixed; bottom: 0; left: 0; width: 100%;
        background: rgba(255,255,255,0.9); backdrop-filter: blur(20px);
        box-shadow: 0 -10px 25px rgba(0,0,0,0.05); z-index: 1000;
        display: flex; padding: 16px 0; border-top: 1px solid var(--border-light);
    }
    .mobilForm .ikonlar a { font-size: 24px; color: var(--text-muted); }
    .mobilForm .start {
        background: var(--brand-gradient); color: white; padding: 14px 28px;
        border-radius: var(--radius-full); font-weight: 700; font-size: 15px;
        display: inline-flex; align-items: center; gap: 8px;
    }
    .butonlar { flex-direction: column; }
}
@media (min-width: 769px) { .mobilForm, .mobilToggle { display: none; } }

/* ---------------- COMPLETE GRID SYSTEM ---------------- */
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }

@media (min-width: 576px) {
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
}

@media (min-width: 992px) {
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Utilities Extended */
.mt-1 { margin-top: 8px; }
.mt-3 { margin-top: 24px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 48px; }
.pb-2 { padding-bottom: 16px; }
.p-0 { padding: 0 !important; }
.m-0 { margin: 0 !important; }
.w-100 { width: 100% !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }

/* ---------------- GLOBAL OLD HEADER OVERRIDE ---------------- */
.headerTop { display: none !important; }

.header {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: saturate(180%) blur(20px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
    border-bottom: 1px solid var(--border-light) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    padding: 16px 0 !important;
}

.header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.header-logo-search-bar {
    display: flex !important;
    align-items: center !important;
    gap: 32px !important;
}

.headerMenu ul {
    display: flex !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.headerMenu ul li a {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--text-main) !important;
    opacity: 0.8 !important;
    transition: var(--transition-fast) !important;
    text-decoration: none !important;
}

.headerMenu ul li a:hover {
    opacity: 1 !important;
    color: var(--brand-primary) !important;
}

.altMenuToggle + .altMenu {
    display: none !important;
}

.headerMenu ul li:hover .altMenu {
    display: block !important;
    position: absolute !important;
    background: var(--bg-white) !important;
    box-shadow: var(--shadow-float) !important;
    border-radius: var(--radius-md) !important;
    padding: 16px !important;
    z-index: 1000 !important;
    min-width: 400px !important;
}

.marka-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
}


/* ---------------- PRODUCT DETAIL PAGE ---------------- */
.proDetay {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.teknikBilgiler .row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.teknikDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
    height: 100%;
}

.teknikDiv:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
    border-color: rgba(255, 107, 0, 0.2);
}

.teknikDiv img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.teknikDiv span {
    font-size: 13px;
    color: var(--text-muted);
}

.teknikDiv .data {
    font-size: 16px;
    color: var(--text-main);
    font-weight: 700;
    margin-top: 4px;
}

.kombiFoto {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.kombiFoto img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.kombiFoto:hover img {
    transform: scale(1.05);
}

.detayHead {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-main);
}

.yildizlar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #FFB800;
    font-size: 14px;
}

.yildizlar .puan {
    color: var(--text-main);
    font-weight: 600;
}

.yildizlar a {
    color: var(--text-muted);
    text-decoration: underline;
}

.ortalamaFiyat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 16px;
    background: rgba(255, 107, 0, 0.05);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.ortalamaFiyat .ortalama {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.2;
}

.siniflar {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.radyator, .sicaksu {
    background: var(--bg-light);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-light);
    flex: 1;
}

.radyator span, .sicaksu span {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.radyator b, .sicaksu b {
    font-size: 24px;
    color: #34C759;
}

.icerikAlani {
    margin-top: 32px;
}

.icerikAlani table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.icerikAlani table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.icerikAlani table tr td:first-child {
    font-weight: 600;
    color: var(--text-muted);
    width: 40%;
}

.icerikAlani table tr td:last-child {
    font-weight: 700;
    color: var(--text-main);
}

.kisaAciklama {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--brand-primary);
    margin: 24px 0;
}

.kisaAciklama .listeBaslik {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* ---------------- COMMENTS (YORUMLAR) ---------------- */
.yorumlar {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border-light);
}

.yorumBoxnew {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.yorumBoxnew .lokasyon {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.yorumBoxnew h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.yorumBoxnew .cevaplandi {
    color: #34C759;
    font-size: 14px;
}

.yorumBoxnew p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-main);
    margin-top: 12px;
}

.cevaplar {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-light);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.cevaplar h4 {
    font-size: 14px;
    color: var(--brand-primary);
    margin-bottom: 4px;
}

.cevaplar p {
    font-size: 14px;
    margin-top: 0;
}

/* ---------------- HESAPLAMA FORMU (hesaplaniyor) ---------------- */
.hesaplama {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-float);
    border: 1px solid var(--border-light);
    margin-top: 48px;
}

.hesaplama img {
    width: 64px;
    margin: 0 auto 16px;
}

.hesaplama h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 32px;
}

.formClass {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    background: var(--bg-light);
    padding: 16px;
    border-radius: var(--radius-md);
}

.iconLabel {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.iconLabel img {
    width: 40px;
    margin: 0;
}

.iconLabel span {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
}

/* Custom Checkbox */
.containerOs {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 24px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    height: 24px;
}
.containerOs input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 6px;
    transition: var(--transition-fast);
}
.containerOs:hover input ~ .checkmark {
    border-color: var(--brand-primary);
}
.containerOs input:checked ~ .checkmark {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.containerOs input:checked ~ .checkmark:after {
    display: block;
}
.containerOs .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Compare Button */
.selectProduct {
    background: var(--bg-light);
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 24px;
    cursor: pointer;
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.selectProduct:hover {
    border-color: var(--brand-primary);
    background: rgba(255, 107, 0, 0.05);
}

.addButtonCircular {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}
.compareText { font-weight: bold; font-size: 14px; margin-right: 12px; }

/* ---------------- KOMBİ KARŞILAŞTIRMA (VS) SAYFASI ---------------- */
.kar-ikon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.urun-container {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    transition: var(--transition-fast);
}

.urun-container:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.urun-img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 12px;
}

.urun-modeli {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

/* ---------------- MOBILE RESPONSIVENESS (EXTENDED) ---------------- */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }
    .header-logo-search-bar {
        width: 100%;
        justify-content: space-between;
    }
    .headerMenu { display: none; } /* Hide old header menu on mobile, or style toggle */
    
    .teknikBilgiler .col-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .detayHead {
        font-size: 1.5rem;
    }
    
    .ortalamaFiyat {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Hide legacy overlapping widgets for premium feel */
.floating-container, .mobilForm, .mobilToggle, #sticky-calc-bar, .s-top-btn, .kombicompare { display: none !important; }

/* ---------------- MARKA TOGGLE ---------------- */
.markaSelect { position: relative; margin-bottom: 24px; }
.markaToggle {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    z-index: 10;
    margin-top: 16px;
}
.markaListe {
    display: none;
    position: absolute;
    top: 100%;
    left: 12px;
    width: calc(100% - 24px);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-float);
    padding: 16px;
    z-index: 20;
}
.markaToggle:hover .markaListe, .markaToggle.active .markaListe {
    display: block;
}
.markaListe ul { list-style: none; padding: 0; margin: 0; }
.markaListe li { margin-bottom: 8px; }
.markaListe a { color: var(--text-main); font-weight: 600; transition: var(--transition-fast); display: block; padding: 8px; border-radius: var(--radius-sm); }
.markaListe a:hover { color: var(--brand-primary); background: var(--bg-light); }

/* ---------------- MARKA TOGGLE ---------------- */
.markaSelect { position: relative; margin-bottom: 24px; }
.markaToggle {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    z-index: 10;
}
.markaListe {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-float);
    padding: 16px;
    z-index: 20;
}
.markaToggle:hover .markaListe, .markaToggle.active .markaListe {
    display: block;
}
.markaListe ul { list-style: none; padding: 0; margin: 0; }
.markaListe li { margin-bottom: 8px; }
.markaListe a { color: var(--text-main); font-weight: 600; transition: var(--transition-fast); display: block; padding: 8px; border-radius: var(--radius-sm); }
.markaListe a:hover { color: var(--brand-primary); background: var(--bg-light); }


/* Fixes for Product Page & Teklif Container */
.teklifContainerDetay {
    padding: 40px 0 30px;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border-bottom: 1px solid var(--border-light);
}

.teklifContainerDetay .teklifbaslik {
    font-size: 2rem;
    margin-bottom: 12px;
    text-align: left;
}
.teklifContainerDetay p {
    text-align: left;
    margin: 0 0 16px 0;
    font-size: 1.1rem;
}
.teklifContainerDetay small {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.teklifContainerDetay small span {
    color: #34C759;
}

/* Adjust Teklif Buttons for smaller columns */
.teklifContainerDetay .teklifBtn {
    padding: 16px 8px;
    gap: 8px;
    border-radius: var(--radius-md);
}
.teklifContainerDetay .teklifBtn img {
    width: 32px;
    height: 32px;
}
.teklifContainerDetay .BtnTitle, .teklifContainerDetay .teklifBtn h3 {
    font-size: 0.9rem;
    text-align: center;
}

/* Breadcrumbs */
.breads {
    padding: 20px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 24px;
    background: var(--bg-white);
}
.breads a {
    color: var(--brand-primary);
    font-weight: 600;
}
.breads i {
    font-size: 10px;
    margin: 0 8px;
    opacity: 0.5;
}

/* Product Detail Grid Layout Fixes */
.tekniklerDesk .teknikBilgiler .row {
    flex-direction: column;
}
.tekniklerDesk .teknikDiv {
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px;
    gap: 12px;
    text-align: left;
}
.tekniklerDesk .teknikDiv img {
    margin-bottom: 0;
    width: 32px;
    height: 32px;
}
.tekniklerDesk .teknikDiv span {
    display: block;
}

/* Fix Forms & Inputs */
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    font-size: 14px;
    color: var(--text-main);
    transition: var(--transition-fast);
    outline: none;
}
.form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

/* Fix Tables */
.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.table td, .table th {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    text-align: left;
}
.table tr:last-child td {
    border-bottom: none;
}
.table tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* Fix Buttons */
.btn-block {
    width: 100%;
    display: block;
}

/* Yorumlar Fix */
.yorumlar {
    background: var(--bg-light);
    padding: 48px 0;
    margin-top: 48px;
    border-top: 1px solid var(--border-light);
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-main);
}
.detayHead {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

/* Fix Kombi Listesi Layout */
.kombiListesi > .row:first-child {
    min-height: 100% !important; height: auto !important; flex: 1;
    align-content: flex-start;
}
.kombiListesi .row.tablo {
    min-height: auto !important;
    height: auto !important;
    flex: none;
}
.kombiListesi > .row:last-child {
    min-height: auto !important;
    height: auto !important;
    flex: none;
}
.kombiListesi .col-12.pt-1 {
    width: 100%;
}
.kombiListesi .butonlar {
    flex-wrap: wrap;
    justify-content: space-between;
}
.kombiListesi .butonlar .btn {
    padding: 12px 14px;
    font-size: 13px;
    flex: 1;
}


/* ---------------- NEW KOMBİ CARD ARCHITECTURE (GLOBAL) ---------------- */
.kombiListesi {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.kombiListesi:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 25px 50px rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
    background: var(--bg-white);
}

.kombiListesi:hover img {
    transform: scale(1.05);
}

.kombi-split {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
    margin-bottom: 0;
}

.kombi-img-col {
    flex: 0 0 calc(35% - 10px);
    max-width: calc(35% - 10px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.kombi-img-col img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.kombi-info-col {
    flex: 0 0 calc(65% - 10px);
    max-width: calc(65% - 10px);
    display: flex;
    flex-direction: column;
}

.kombi-info-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: 8px;
    min-height: 40px;
}

.kombi-info-col .yildizlar {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #FFB800;
    font-size: 13px;
    margin-bottom: 12px;
}

.kombi-info-col .yildizlar .puan {
    color: var(--text-main);
    font-weight: 600;
}

.kombi-info-col .yildizlar .puanlama {
    color: var(--text-muted);
    margin-left: 4px;
}

.kombi-info-col .kapasite {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.kombi-info-col .kapasite b {
    color: var(--text-main);
}

.kombi-info-col .fiyat {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin: 12px 0;
}

.kombi-info-col .fiyat small {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.kombi-info-col .row.tablo {
    display: flex;
    justify-content: space-between;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    margin-top: auto;
}

.kombi-info-col .row.tablo .col-4 {
    flex: 1;
    padding: 0 4px;
}

.kombi-info-col .row.tablo span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}

.kombi-info-col .row.tablo p {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 4px;
    margin-bottom: 0;
}

.kombi-footer {
    margin-top: auto;
    width: 100%;
}

.kombi-footer .butonlar {
    display: flex;
    gap: 8px;
    width: 100%;
}

.kombi-footer .butonlar .btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    font-size: 12px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.kombi-footer .butonlar .btn i {
    margin-right: 6px;
    font-size: 14px;
}

.kombi-footer .butonlar .btn-primaryx {
    background: var(--bg-white);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.kombi-footer .butonlar .btn-primaryx:hover {
    border-color: var(--text-muted);
}

.kombi-footer .butonlar .btn-success {
    background: var(--brand-gradient);
    color: white !important;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

.kombi-footer .butonlar .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.3);
}

.kombi-footer .butonlar .btn-info {
    background: var(--bg-white);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.kombi-footer .butonlar .btn-info:hover {
    border-color: var(--text-muted);
}

@media (max-width: 576px) {
    .kombi-split {
        flex-direction: column;
    }
    .kombi-img-col, .kombi-info-col {
        max-width: 100%;
        width: 100%;
    }
    .kombi-img-col {
        margin-bottom: 16px;
    }
    .kombi-footer .butonlar {
        flex-direction: column;
    }
}
