/* ===== ISIMAS ENERJİ - CUSTOM CSS ===== */

:root {
    --primary: #E85D04;
    --primary-dark: #C44D04;
    --primary-light: #FF7A30;
    --secondary: #1A1A2E;
    --secondary-light: #2D2D44;
    --accent: #F48C06;
    --text-dark: #1A1A2E;
    --text-muted: #6c757d;
    --bg-light: #F8F9FA;
    --bg-orange-light: #FFF3EC;
    --border-color: #E9ECEF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius: 12px;
    --radius-sm: 8px;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-weight: 700; color: var(--text-dark); }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

/* ===== TOP BAR ===== */
.topbar {
    background: var(--secondary);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: #fff; }
.topbar-rate { color: #ffd97d; font-size: 12px; border-right: 1px solid rgba(255,255,255,0.2); padding-right: 12px; }
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
}
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; }

/* ===== NAVBAR ===== */
.main-navbar {
    background: #fff !important;
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    transition: all 0.3s ease;
    z-index: 1030;
}
.main-navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}
.navbar-brand { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.brand-text { color: var(--primary); }
.brand-sub { color: var(--secondary); font-weight: 600; }
.footer-brand { font-size: 24px; font-weight: 800; }

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Kurumsal dropdown */
.main-navbar .dropdown-menu {
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    margin-top: 8px;
    animation: dropFadeIn 0.18s ease;
}
@keyframes dropFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.main-navbar .dropdown-item {
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: background 0.15s, color 0.15s;
}
.main-navbar .dropdown-item:hover {
    background: var(--bg-orange-light);
    color: var(--primary);
}
.main-navbar .dropdown-divider { margin: 4px 8px; }
/* dropdown-toggle ok'unu ::after underline ile çakışmaması için */
.nav-item.dropdown > .nav-link.dropdown-toggle::after {
    display: none; /* Bootstrap'ın caret'ını kaldır, underline effect kullanılıyor */
}
.nav-item.dropdown > .nav-link.dropdown-toggle {
    display: flex; align-items: center; gap: 4px;
}
.nav-item.dropdown > .nav-link.dropdown-toggle::before {
    content: none;
}
/* Caret ikonu yerine bi-chevron-down kullan */
.nav-item.dropdown > .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.2s;
    border: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: none;
    vertical-align: unset;
}

.cart-btn { border-radius: 50px !important; padding: 8px 16px; }
.cart-badge { font-size: 10px; }

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    padding: 10px 24px;
    transition: all 0.2s;
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232,93,4,0.35);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.2s;
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
}
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-white { background: #fff; color: var(--primary); font-weight: 700; border: none; }
.btn-white:hover { background: rgba(255,255,255,0.9); color: var(--primary-dark); }

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: 12px;
}
.section-subtitle { color: var(--text-muted); font-size: 16px; max-width: 600px; }
.section-badge {
    display: inline-block;
    background: var(--bg-orange-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 12px 0 24px;
}
.title-underline.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; overflow: hidden; }
.hero-slider .carousel-item {
    height: 580px;
    background: var(--secondary);
}
@media (max-width: 768px) { .hero-slider .carousel-item { height: 420px; } }
.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(232,93,4,0.3) 100%);
}
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-title {
    font-size: clamp(28px, 5vw, 54px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}
.hero-title span { color: var(--primary-light); }
.hero-subtitle { color: rgba(255,255,255,0.85); font-size: clamp(15px, 2vw, 18px); margin-bottom: 32px; max-width: 520px; }
.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(4px);
}
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
}
.carousel-indicators .active { background: var(--primary); border-color: var(--primary); }

/* ===== STATS BAR ===== */
.stats-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 32px 0;
}
.stat-item { text-align: center; }
.stat-number { font-size: 36px; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; margin-top: 4px; }
.stat-divider { border-left: 1px solid rgba(255,255,255,0.3); }

/* ===== CATEGORIES ===== */
.section { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--secondary); }

.category-card {
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
    cursor: pointer;
    height: 100%;
}
.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.category-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 30px;
    color: var(--primary);
    transition: all 0.3s;
}
.category-card:hover .category-icon { background: var(--primary); color: #fff; }
.category-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.category-card p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ===== PRODUCT CARDS ===== */
.product-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--bg-light);
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.product-actions {
    position: absolute;
    right: 12px;
    top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.3s;
}
.product-card:hover .product-actions { opacity: 1; }
.product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.2s;
    font-size: 15px;
}
.product-action-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.product-body { padding: 16px; flex: 1; }
.product-category { font-size: 11px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.product-name { font-size: 15px; font-weight: 700; margin: 6px 0; line-height: 1.3; }
.product-name a { color: var(--text-dark); }
.product-name a:hover { color: var(--primary); }
.product-price { font-size: 20px; font-weight: 800; color: var(--primary); }
.product-price-old { font-size: 14px; color: var(--text-muted); text-decoration: line-through; margin-right: 8px; }
.product-footer { padding: 12px 16px; border-top: 1px solid var(--border-color); margin-top: auto; }
.btn-add-cart {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    transition: all 0.2s;
}
.btn-add-cart:hover { background: var(--primary); }
.btn-add-cart:hover { color: #fff; }

/* ===== SERVICES ===== */
.service-card {
    padding: 32px 24px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s;
}
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-orange-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--primary); color: #fff; }
.service-card h5 { font-size: 18px; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ===== WHY CHOOSE US ===== */
.why-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.why-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--bg-orange-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
}
.why-item h6 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ===== ARTICLE CARDS ===== */
.article-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    background: #fff;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.article-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}
.article-body { padding: 20px; }
.article-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.article-title { font-size: 17px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.article-title a { color: var(--text-dark); }
.article-title a:hover { color: var(--primary); }
.article-summary { font-size: 14px; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,93,4,0.15) 0%, transparent 70%);
}
.cta-section h2 { color: #fff; font-size: clamp(24px, 4vw, 38px); }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 17px; }

/* ===== FOOTER ===== */
.main-footer { background: var(--secondary); color: rgba(255,255,255,0.75); }
.footer-title { color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-light); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-contact i { color: var(--primary); font-size: 16px; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: #fff; }
.footer-divider { border-color: rgba(255,255,255,0.1); }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    transition: all 0.2s;
}
.social-links a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 1050;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { background: #1ebe5d; color: #fff; transform: scale(1.1); }
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 96px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 1040;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    cursor: pointer;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); }

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
    background: var(--bg-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}
.breadcrumb { margin: 0; font-size: 13px; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-muted); }

/* ===== ALERT FLOATING ===== */
.alert-floating {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 450px;
    box-shadow: var(--shadow-md);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 60px 0;
    color: #fff;
}
.page-header h1 { color: #fff; font-size: clamp(24px, 4vw, 40px); margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.8); margin: 0; }

/* ===== PRODUCT DETAIL ===== */
.product-detail-img {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.product-gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: border-color 0.2s;
}
.product-gallery-thumb.active, .product-gallery-thumb:hover { border-color: var(--primary); }
.product-specs table { font-size: 14px; }
.product-specs td { padding: 8px 12px; }
.product-specs tr:nth-child(even) { background: var(--bg-light); }

/* ===== CART ===== */
.cart-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
    background: #fff;
}
.cart-summary {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    background: var(--bg-light);
    position: sticky;
    top: 100px;
}
.qty-input { width: 70px; text-align: center; border-radius: var(--radius-sm); }

/* ===== FORMS ===== */
.form-control, .form-select {
    border-radius: var(--radius-sm);
    border-color: var(--border-color);
    padding: 10px 14px;
    font-size: 15px;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
}
.form-label { font-weight: 600; font-size: 14px; color: var(--text-dark); }

/* ===== ADMIN LAYOUT ===== */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px;
    min-width: 260px;
    background: var(--secondary);
    padding: 0;
    transition: all 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1050;
    overflow-y: auto;
}
.admin-content {
    margin-left: 260px;
    flex: 1;
    background: #F0F2F5;
    min-height: 100vh;
}
@media (max-width: 991px) {
    .admin-sidebar { transform: translateX(-260px); }
    .admin-sidebar.show { transform: translateX(0); }
    .admin-content { margin-left: 0; }
}
.admin-logo {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}
.admin-logo .brand-text { font-size: 18px; font-weight: 800; color: var(--primary); }
.admin-logo .brand-sub { font-size: 18px; font-weight: 600; color: #fff; }
.admin-logo span { font-size: 11px; color: rgba(255,255,255,0.5); display: block; }
.admin-nav { padding: 12px 0; }
.admin-nav-section { padding: 16px 20px 6px; font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1.5px; }
.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.admin-nav-link i { font-size: 18px; width: 22px; }
.admin-nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.admin-nav-link.active { color: #fff; background: rgba(232,93,4,0.2); border-left-color: var(--primary); }
.admin-nav-link .badge { margin-left: auto; font-size: 10px; }

.admin-topbar {
    background: #fff;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.admin-main { padding: 24px; }
.admin-page-title { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.admin-page-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

.stat-card {
    border-radius: var(--radius);
    padding: 24px;
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
}
.stat-card::after {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.stat-card-icon { font-size: 36px; opacity: 0.9; }
.stat-card-number { font-size: 32px; font-weight: 800; }
.stat-card-label { font-size: 14px; opacity: 0.85; }
.bg-orange { background: linear-gradient(135deg, var(--primary), var(--accent)); }
.bg-navy { background: linear-gradient(135deg, #1A1A2E, #2D2D44); }
.bg-teal { background: linear-gradient(135deg, #0D9488, #059669); }
.bg-purple { background: linear-gradient(135deg, #7C3AED, #5B21B6); }

.admin-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
}
.admin-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.admin-card-body { padding: 20px; }

.admin-table { margin: 0; }
.admin-table th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); font-weight: 700; border-bottom: 2px solid var(--border-color) !important; }
.admin-table td { vertical-align: middle; font-size: 14px; border-color: var(--border-color); }

/* ===== BADGES ===== */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .section { padding: 50px 0; }
    .hero-slider .carousel-item { height: 360px; }
    .stats-bar .stat-divider { border: none; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 16px; margin-top: 16px; }
    .alert-floating { right: 10px; left: 10px; min-width: auto; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .scroll-top { bottom: 80px; right: 20px; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.hover-lift { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ===== CONTACT PAGE ===== */
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--bg-orange-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
}
.contact-info-icon { flex-shrink: 0; }

/* ===== PAGINATION ===== */
.pagination .page-link {
    border-radius: var(--radius-sm) !important;
    color: var(--primary);
    border-color: var(--border-color);
    margin: 0 2px;
}
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }

/* ===== FILTER SIDEBAR ===== */
.filter-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    background: #fff;
    position: sticky;
    top: 90px;
}
.filter-title { font-size: 15px; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border-color); }

/* ===== FOOTER ÖDEME ALANI ===== */
.footer-payment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 4px;
}
.footer-payment-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
}
.footer-payment-cards {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-payment-cards img {
    width: 52px;
    height: 33px;
    object-fit: contain;
    border-radius: 5px;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}
.footer-payment-cards img:hover {
    opacity: 1;
    transform: translateY(-2px);
}
@media (max-width: 575px) {
    .footer-payment-row { justify-content: center; text-align: center; }
    .footer-payment-label { justify-content: center; width: 100%; }
    .footer-payment-cards { justify-content: center; }
}

/* ===== VİTRİN KARTLARI ===== */
.vitrin-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.vitrin-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.vitrin-card-featured {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: #fff;
    border-color: transparent;
}
.vitrin-card-featured h5 { color: #fff; }
.vitrin-card-featured p { color: rgba(255,255,255,0.75); }
.vitrin-badge-top {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.vitrin-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--bg-orange-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--primary);
}
.vitrin-card-featured .vitrin-icon-wrap {
    background: rgba(255,255,255,0.1);
    color: var(--accent);
}
.vitrin-card h5 { font-size: 18px; margin-bottom: 12px; }
.vitrin-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.vitrin-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 500;
}
.vitrin-card-featured .vitrin-features { color: rgba(255,255,255,0.85); }
.btn-white-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    background: transparent;
}
.btn-white-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: #fff;
}

/* Vitrin Ürün Kartları (dinamik) */
.vitrin-product-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.vitrin-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.vitrin-product-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary), var(--shadow-sm);
}
.vitrin-product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-light);
}
.vitrin-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.3s;
}
.vitrin-product-card:hover .vitrin-product-img img { transform: scale(1.06); }
.vitrin-product-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.vitrin-product-cat {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 4px;
}
.vitrin-product-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
}
.vitrin-product-name a { color: var(--text-dark); text-decoration: none; }
.vitrin-product-name a:hover { color: var(--primary); }
.vitrin-product-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 8px;
}
.vitrin-product-price { margin-bottom: 4px; }
.vitrin-product-price .price-now { font-size: 18px; font-weight: 800; color: var(--primary); }
.vitrin-product-price .price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; margin-right: 6px; }

/* Vitrin Alt Banner */
.vitrin-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #3a1c6e 100%);
    border-radius: var(--radius);
    padding: 40px 48px;
    position: relative;
    overflow: hidden;
}
.vitrin-banner::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
@media (max-width: 767px) {
    .vitrin-banner { padding: 28px 20px; }
}

/* ===== MARKALAR - SONSUZ KAYDIRMA ===== */
.brands-section { background: var(--bg-light); }
.brands-track-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.brands-track-wrap::before,
.brands-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.brands-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}
.brands-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}
.brands-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: brandScroll 28s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes brandScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.brand-logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
}
.brand-logo-item:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.04);
    border-color: var(--primary);
}
.brand-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(60%);
    transition: filter 0.3s;
}
.brand-logo-item:hover img { filter: grayscale(0%); }

/* ===== MOBİL STICKY ÇAĞRI ÇUBUĞU ===== */
@media (max-width: 991px) {
    body { padding-bottom: 62px; }
}
.mobile-call-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    display: flex;
    height: 58px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
}
.mobile-call-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    transition: opacity 0.2s;
}
.mobile-call-btn:active { opacity: 0.85; color: #fff; }
.mobile-call-phone {
    background: var(--primary);
    border-right: 1px solid rgba(255,255,255,0.2);
}
.mobile-call-wa { background: #25D366; }
.mobile-call-btn i { font-size: 18px; }
