/* ============================================================
   DEP Teknoloji — VETDEP B2B Marketplace
   Ana Stil Dosyası
   ============================================================ */

:root {
    --vet-primary: #1a5f3f;
    --vet-secondary: #2d8a60;
    --vet-accent: #f5a623;
    --vet-dark: #0d3321;
    --vet-light: #e8f5ee;
    --vet-gray: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f8;
    color: #333;
}

/* Topbar */
.topbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    font-size: 0.82rem;
}

/* Navbar */
.bg-vet {
    background: linear-gradient(135deg, var(--vet-dark) 0%, var(--vet-primary) 100%) !important;
}

.brand-logo {
    width: 42px; height: 42px;
    background: var(--vet-accent);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--vet-dark);
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}

.brand-slogan {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--vet-dark) 0%, var(--vet-primary) 60%, var(--vet-secondary) 100%);
    padding: 40px 0 30px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section .container { position: relative; z-index: 2; }

/* Kategori Kartları */
.category-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-decoration: none;
    color: #333;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.category-card:hover {
    border-color: var(--vet-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26,95,63,0.15);
    color: var(--vet-primary);
}

.category-icon {
    width: 60px; height: 60px;
    background: var(--vet-light);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--vet-primary);
    margin: 0 auto 12px;
}

.category-card:hover .category-icon {
    background: var(--vet-primary);
    color: #fff;
}

/* Ürün Kartları */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.product-card .product-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.product-card .product-img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--vet-light), #d1e8d8);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: var(--vet-secondary);
}

.product-card .card-body {
    padding: 16px;
}

.product-card .firma-badge {
    font-size: 0.72rem;
    color: var(--vet-secondary);
    font-weight: 600;
}

.product-card h6 {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
    min-height: 2.5em;
}

.price-badge {
    background: var(--vet-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-locked {
    background: #6c757d;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
}

/* Kampanya Badge */
.badge-kampanya {
    background: var(--vet-accent);
    color: var(--vet-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Üyelik Kartları */
.membership-card {
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.membership-card.klinik { border-color: var(--vet-primary); background: var(--vet-light); }
.membership-card.ciftlik { border-color: #8B6914; background: #fdf8ec; }
.membership-card.bireysel { border-color: #0d6efd; background: #eef4ff; }
.membership-card.firma { border-color: #1a3a6f; background: #eef2ff; }

.membership-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}

/* Formlar */
.form-section {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-label { font-weight: 600; font-size: 0.88rem; color: #555; }
.form-control, .form-select { border-radius: 8px; border: 1.5px solid #ddd; font-size: 0.9rem; }
.form-control:focus, .form-select:focus {
    border-color: var(--vet-primary);
    box-shadow: 0 0 0 3px rgba(26,95,63,0.1);
}

/* Butonlar */
.btn-vet {
    background: var(--vet-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

.btn-vet:hover { background: var(--vet-dark); color: #fff; }

/* Panel Sidebar */
.sidebar-nav {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sidebar-nav .nav-link {
    border-radius: 8px;
    color: #555;
    font-size: 0.88rem;
    padding: 10px 14px;
    margin-bottom: 2px;
    transition: all 0.2s;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    background: var(--vet-light);
    color: var(--vet-primary);
    font-weight: 600;
}

.sidebar-nav .nav-link i { width: 20px; }

/* Panel Kartları */
.panel-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.stat-card {
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.stat-card.green  { background: linear-gradient(135deg, var(--vet-primary), var(--vet-secondary)); }
.stat-card.orange { background: linear-gradient(135deg, #e07b39, #f5a623); }
.stat-card.blue   { background: linear-gradient(135deg, #1a3a6f, #2d5fb5); }
.stat-card.red    { background: linear-gradient(135deg, #9e2a2b, #d04040); }

.stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
a .stat-card { transition: all 0.3s; }

/* Tablo */
.table-vet th { background: var(--vet-primary); color: #fff; font-size: 0.82rem; font-weight: 600; }
.table-vet tbody tr:hover { background: var(--vet-light); }

/* Footer */
.footer { background: #0d1f18; }
.footer-top { border-bottom: 1px solid #1a2e23; }
.footer-bottom { background: #0a1812; }
.footer-top p, .footer-top small, .footer-top li, .footer-top ul { color: #adb5bd !important; }
.footer-top h5, .footer-top h6 { color: #fff !important; }
.footer-bottom small, .footer-bottom .text-muted { color: #adb5bd !important; }
.footer-link { color: #adb5bd; text-decoration: none; display: block; margin-bottom: 6px; font-size: 0.85rem; }
.footer-link:hover { color: var(--vet-accent); }

/* Sipariş Durumu Badge */
.badge-yeni      { background: #17a2b8; }
.badge-hazirlaniyor { background: #f5a623; color: #333; }
.badge-kargoda   { background: #007bff; }
.badge-teslim    { background: #28a745; }
.badge-iptal     { background: #dc3545; }

/* Responsive */
@media (max-width: 768px) {
    .hero-section { padding: 24px 0 16px; }
    .hero-section h1 { font-size: 1.5rem !important; }
    .hero-section .lead { font-size: 0.9rem !important; margin-bottom: 10px !important; }
    .hero-section .row.mt-5 { margin-top: 1rem !important; }
    .form-section { padding: 20px; }
}

/* ============================================================
   ANASAYFA v2 — premium görsel katman (11 Tem 2026)
   ============================================================ */

/* Hero geliştirmeleri (12 Tem Tugay isteği: kompakt) */
.hero-section { padding: 28px 0 32px; }
.hero-section .display-5 { font-size: 2.2rem; }
.hero-section .lead { font-size: 1.05rem; }
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -35%; left: -8%;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(245,166,35,0.10) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-chip {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.4px;
    padding: 6px 16px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}
.hero-cta-primary {
    background: var(--vet-accent);
    color: var(--vet-dark);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: 0 8px 24px rgba(245,166,35,0.35);
    transition: all .25s;
}
.hero-cta-primary:hover { background: #ffb63d; color: var(--vet-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,166,35,0.45); }
.hero-cta-secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.45);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all .25s;
}
.hero-cta-secondary:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; transform: translateY(-2px); }
.hero-stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 16px;
    padding: 14px 26px;
    min-width: 120px;
    backdrop-filter: blur(4px);
    transition: all .25s;
}
.hero-stat:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.hero-stat .h3 { color: var(--vet-accent); margin-bottom: 0; font-weight: 800; }
.hero-stat small { color: rgba(255,255,255,0.75); font-size: 0.78rem; letter-spacing: .3px; }

/* Kilit / bilgi bandı */
.home-lockbar {
    background: linear-gradient(90deg, #fff8e8, #fdf1d4);
    border-bottom: 1px solid #f3e3b8;
}
.home-lockbar .lock-ico {
    width: 34px; height: 34px;
    background: var(--vet-accent);
    color: var(--vet-dark);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 34px;
}

/* Güven şeridi */
.trust-strip {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid #eef1ee;
    padding: 16px 10px;
}
.trust-item { display: flex; align-items: center; gap: 10px; justify-content: center; }
.trust-item i {
    width: 40px; height: 40px;
    background: var(--vet-light);
    color: var(--vet-primary);
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    flex: 0 0 40px;
}
.trust-item .t-title { font-size: 0.85rem; font-weight: 700; color: #2b3b32; line-height: 1.1; }
.trust-item .t-sub { font-size: 0.72rem; color: #8a958e; }

/* Hızlı yönlendirme kartları */
.quick-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eef1ee;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    padding: 20px 22px;
    display: flex; align-items: center; gap: 16px;
    text-decoration: none;
    color: #2b3b32;
    transition: all .25s;
    height: 100%;
}
.quick-card:hover { border-color: var(--vet-primary); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(26,95,63,0.14); color: var(--vet-primary); }
.quick-card .q-ico {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--vet-primary), var(--vet-secondary));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    flex: 0 0 52px;
    box-shadow: 0 6px 16px rgba(26,95,63,0.25);
}
.quick-card.q-amber .q-ico { background: linear-gradient(135deg, #e07b39, var(--vet-accent)); box-shadow: 0 6px 16px rgba(224,123,57,0.25); }
.quick-card .q-title { font-weight: 700; font-size: 1rem; }
.quick-card .q-sub { font-size: 0.8rem; color: #8a958e; }
.quick-card .q-arrow { margin-left: auto; color: #cdd6d0; transition: all .25s; }
.quick-card:hover .q-arrow { color: var(--vet-primary); transform: translateX(4px); }

/* Bölüm başlıkları */
.section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.section-head .s-ico {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--vet-primary), var(--vet-secondary));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.section-head.s-amber .s-ico { background: linear-gradient(135deg, #e07b39, var(--vet-accent)); }
.section-head h4 { margin: 0; font-weight: 800; letter-spacing: -0.3px; }
.section-head small { color: #8a958e; }

/* Büyük arama */
.home-search .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26,95,63,0.12);
    border: 1px solid #e6ece8;
}
.home-search .input-group-text { border: none; padding-left: 22px; }
.home-search .form-control { border: none; padding: 14px 10px; font-size: 1rem; }
.home-search .form-control:focus { box-shadow: none; }
.home-search .btn {
    background: linear-gradient(135deg, var(--vet-primary), var(--vet-secondary));
    color: #fff;
    border: none;
    padding: 0 30px;
    font-weight: 700;
}
.home-search .btn:hover { background: var(--vet-dark); color: #fff; }

/* Neden VETDEP kartları */
.neden-wrap {
    background: linear-gradient(180deg, #ffffff, #f6faf7);
    border: 1px solid #eef1ee;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.neden-card {
    background: #fff;
    border: 1px solid #eef1ee;
    border-radius: 16px;
    padding: 26px 20px;
    text-align: center;
    height: 100%;
    transition: all .25s;
}
.neden-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(26,95,63,0.12); border-color: rgba(26,95,63,0.25); }
.neden-card .n-ico {
    width: 58px; height: 58px;
    margin: 0 auto 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--vet-primary), var(--vet-secondary));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 18px rgba(26,95,63,0.22);
}

/* Ürün kartı rötuşları (site geneli hafif iyileştirme) */
.product-card { border-radius: 14px; }
.product-card:hover { box-shadow: 0 14px 34px rgba(26,95,63,0.14); border-color: rgba(26,95,63,0.2); }
.price-badge { background: linear-gradient(135deg, var(--vet-primary), var(--vet-secondary)); }

/* Mobil */
@media (max-width: 768px) {
    .hero-section { padding: 18px 0 22px; }
    .hero-stat { padding: 8px 14px; min-width: 90px; }
    .hero-cta-primary, .hero-cta-secondary { padding: 9px 20px; font-size: 0.9rem; }
    .trust-strip { padding: 12px 6px; }
    .trust-item { flex-direction: column; text-align: center; gap: 6px; }
    .trust-item .t-sub { display: none; }
    .product-card .product-img, .product-card .product-img-placeholder { height: 150px; }
    /* Kategoriler/Kampanyalar mobilde yan yana kompakt */
    .quick-card { padding: 12px 12px; gap: 10px; }
    .quick-card .q-sub, .quick-card .q-arrow { display: none; }
    .quick-card .q-ico { width: 40px; height: 40px; flex: 0 0 40px; font-size: 1.05rem; border-radius: 12px; }
    .quick-card .q-title { font-size: 0.92rem; }
}
