:root {
    --dora-primary: #2C3E50;
    --dora-accent: #3498DB;
    --dora-light: #F8F9FA;
    --dora-text: #212529;
    --dora-muted: #6C757D;
    --dora-border: #E5E7EB;
}

html { font-size: 15px; scroll-behavior: smooth; }
@media (min-width: 768px) { html { font-size: 16px; } }

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: var(--dora-text);
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main { flex: 1; }

a { color: var(--dora-accent); text-decoration: none; }
a:hover { color: var(--dora-primary); text-decoration: underline; }

.btn-primary, .btn-dora {
    background: var(--dora-primary);
    border-color: var(--dora-primary);
    color: #fff;
}
.btn-primary:hover, .btn-dora:hover {
    background: #1f2d3d;
    border-color: #1f2d3d;
    color: #fff;
}
.btn-outline-dora {
    border: 1px solid var(--dora-primary);
    color: var(--dora-primary);
    background: #fff;
}
.btn-outline-dora:hover { background: var(--dora-primary); color: #fff; }

.dora-topbar {
    background: var(--dora-primary);
    color: #fff;
    padding: 6px 0;
}
.dora-topbar a { color: #fff; text-decoration: none; }
.dora-topbar a:hover { color: var(--dora-accent); }

.dora-logo { height: 52px; }
@media (max-width: 575px) { .dora-logo { height: 40px; } }

.navbar-light .nav-link { color: var(--dora-primary) !important; font-weight: 500; padding: .85rem 1rem; }
.navbar-light .nav-link:hover { color: var(--dora-accent) !important; }
.navbar-light .nav-link.active { color: var(--dora-accent) !important; }

.dora-hero-carousel .carousel-item {
    height: 460px;
    background: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
    color: #fff;
}
@media (max-width: 768px) { .dora-hero-carousel .carousel-item { height: 360px; } }
.dora-hero-carousel .carousel-caption {
    left: 5%; right: 5%; bottom: 50%; transform: translateY(50%);
    text-align: left;
}
.dora-hero-carousel .carousel-caption h2 { font-size: 2rem; font-weight: 700; }
.dora-hero-carousel .carousel-caption .product-img {
    max-height: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 18px;
}

.section { padding: 60px 0; }
.section-title { color: var(--dora-primary); font-weight: 700; margin-bottom: 1.5rem; position: relative; padding-bottom: .6rem; }
.section-title:after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background: var(--dora-accent); }

.feature-card {
    background: #fff;
    border: 1px solid var(--dora-border);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    height: 100%;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.feature-card .icon { font-size: 2.4rem; color: var(--dora-accent); margin-bottom: 1rem; }

.product-card {
    border: 1px solid var(--dora-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform .15s, box-shadow .15s;
    height: 100%;
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.product-card .product-img-wrap {
    background: var(--dora-light);
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid var(--dora-border);
}
.product-card .product-img-wrap img { max-height: 140px; max-width: 100%; object-fit: contain; }
.product-card .product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.product-card .product-code { color: var(--dora-muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; }
.product-card .product-title { color: var(--dora-primary); font-weight: 600; font-size: .95rem; margin: 4px 0 10px; min-height: 2.7em; line-height: 1.35; }
.product-card .product-meta { font-size: .8rem; color: var(--dora-muted); }
.product-card .badge-marka { background: var(--dora-primary); color: #fff; }
.product-card .badge-renk { background: var(--dora-accent); color: #fff; }

.filter-card {
    background: var(--dora-light);
    border: 1px solid var(--dora-border);
    border-radius: 8px;
    padding: 18px;
}

.dora-footer {
    background: var(--dora-primary);
    color: #cfd8dc;
    padding: 50px 0 20px;
    margin-top: 70px;
}
.dora-footer h6 { color: #fff; margin-bottom: 1rem; letter-spacing: 1px; font-size: .9rem; }
.dora-footer a { color: #cfd8dc; }
.dora-footer a:hover { color: #fff; text-decoration: underline; }
.dora-footer .dora-footer-logo { height: 50px; background: #fff; padding: 6px 10px; border-radius: 6px; }
.dora-footer hr { border-color: rgba(255,255,255,.15); margin: 30px 0 15px; }

.wa-float {
    position: fixed;
    bottom: 20px; right: 20px;
    width: 56px; height: 56px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    z-index: 999;
    transition: transform .15s;
}
.wa-float:hover { transform: scale(1.08); text-decoration: none; }

.iletisim-icon-box {
    background: var(--dora-light);
    border: 1px solid var(--dora-border);
    padding: 24px 20px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
}
.iletisim-icon-box .icon { font-size: 2.2rem; color: var(--dora-accent); margin-bottom: .6rem; }
.iletisim-icon-box h6 { color: var(--dora-primary); font-weight: 700; }

.harita-wrap iframe { width: 100%; height: 350px; border: 0; border-radius: 8px; }

.admin-sidebar {
    background: var(--dora-primary);
    color: #fff;
    min-height: calc(100vh - 56px);
    padding: 20px 0;
}
.admin-sidebar a { display: block; padding: 10px 20px; color: #cfd8dc; text-decoration: none; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,.08); color: #fff; }

.btn-dora-accent { background: var(--dora-accent); border-color: var(--dora-accent); color: #fff; }
.btn-dora-accent:hover { background: #258cd1; border-color: #258cd1; color: #fff; }

table.dora-table th { background: var(--dora-primary); color: #fff; font-weight: 500; font-size: .85rem; }

.dora-social { display: flex; gap: 10px; }
.dora-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 1.05rem;
    transition: transform .15s, background .15s;
    text-decoration: none;
}
.dora-social a:hover { background: var(--dora-accent); transform: translateY(-2px); color: #fff; }

.product-fiyat { display: flex; align-items: baseline; gap: 6px; min-height: 26px; }
.product-fiyat .fiyat-deger { color: var(--dora-primary); font-weight: 700; font-size: 1.05rem; }
.product-fiyat .fiyat-kdv { color: #6c757d; font-size: .7rem; text-transform: uppercase; }
.product-fiyat .fiyat-sorunuz {
    color: var(--dora-accent);
    font-size: .85rem;
    text-decoration: none;
    font-weight: 500;
}
.product-fiyat .fiyat-sorunuz:hover { text-decoration: underline; }
