/* ============================================
   TEMA RENK PALETİ - TÜM SİTE İÇİN
   Professional.css ile uyumlu renk sistemi
   ============================================ */

:root {
    /* Primary Colors */
    --primary: #ff6000 !important;
    --primary-dark: #e55500 !important;
    --primary-light: #ff7a26 !important;
    --primary-rgb: 255, 96, 0 !important;
    
    /* Text Colors */
    --text-primary: #1a1a1a !important;
    --text-secondary: #666666 !important;
    --text-tertiary: #999999 !important;
    --text-dark: #1a1a1a !important;
    --text-muted: #999999 !important;
    
    /* Border Colors */
    --border: #e5e5e5 !important;
    --border-hover: #cccccc !important;
    --border-light: #f0f0f0 !important;
    
    /* Background Colors */
    --bg: #ffffff !important;
    --bg-secondary: #fafafa !important;
    --bg-gray: #f7f7f7 !important;
    --bg-light: #fafafa !important;
    
    /* Status Colors */
    --success: #00a046 !important;
    --success-light: #e6f7ed !important;
    --danger: #dc3545 !important;
    --warning: #ffa900 !important;
    --info: #0dcaf0 !important;
    
    /* Shadow System */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    
    /* Bootstrap Override */
    --bs-primary: #ff6000 !important;
    --bs-primary-rgb: 255, 96, 0 !important;
    --bs-secondary: #666666 !important;
    --bs-success: #00a046 !important;
    --bs-border-color: #e5e5e5 !important;
    --bs-body-color: #1a1a1a !important;
    --bs-body-bg: #fafafa !important;
}

/* ============================================
   PRIMARY COLOR OVERRIDES
   ============================================ */

/* Buttons */
.btn-primary {
    background-color: #ff6000 !important;
    border-color: #ff6000 !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #e55500 !important;
    border-color: #e55500 !important;
}

.btn-outline-primary {
    color: #ff6000 !important;
    border-color: #ff6000 !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: #ff6000 !important;
    border-color: #ff6000 !important;
    color: #ffffff !important;
}

/* Text Colors */
.text-primary {
    color: #ff6000 !important;
}

.text-secondary {
    color: #666666 !important;
}

.text-success {
    color: #00a046 !important;
}

.text-dark {
    color: #1a1a1a !important;
}

.text-muted {
    color: #999999 !important;
}

/* Background Colors */
.bg-primary {
    background-color: #ff6000 !important;
}

.bg-secondary {
    background-color: #fafafa !important;
}

.bg-success {
    background-color: #00a046 !important;
}

.bg-gray-100,
.bg-gray {
    background-color: #f7f7f7 !important;
}

.bg-white {
    background-color: #ffffff !important;
}

/* Border Colors */
.border-primary {
    border-color: #ff6000 !important;
}

.border-secondary {
    border-color: #e5e5e5 !important;
}

.border {
    border-color: #e5e5e5 !important;
}

/* Links */
a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #ff6000;
}

.hover-text-primary:hover {
    color: #ff6000 !important;
}

/* ============================================
   COMPONENT OVERRIDES
   ============================================ */

/* Badges */
.badge {
    font-weight: 700;
}

.badge-primary {
    background-color: #ff6000 !important;
    color: #ffffff !important;
}

/* Alerts */
.alert-primary {
    background-color: rgba(255, 96, 0, 0.1) !important;
    border-color: #ff6000 !important;
    color: #e55500 !important;
}

.alert-success {
    background-color: rgba(0, 160, 70, 0.1) !important;
    border-color: #00a046 !important;
    color: #00a046 !important;
}

/* Forms */
.form-control:focus {
    border-color: #ff6000 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 96, 0, 0.15) !important;
}

.form-check-input:checked {
    background-color: #ff6000 !important;
    border-color: #ff6000 !important;
}

/* Dropdowns */
.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #fafafa !important;
    color: #ff6000 !important;
}

.dropdown-item.active {
    background-color: #ff6000 !important;
    color: #ffffff !important;
}

/* Navigation */
.nav-link:hover,
.nav-link:focus {
    color: #ff6000 !important;
}

.nav-link.active {
    color: #ff6000 !important;
}

/* Pagination */
.page-link {
    color: #ff6000 !important;
}

.page-link:hover {
    color: #e55500 !important;
    background-color: #fafafa !important;
    border-color: #e5e5e5 !important;
}

.page-item.active .page-link {
    background-color: #ff6000 !important;
    border-color: #ff6000 !important;
}

/* Progress */
.progress-bar {
    background-color: #ff6000 !important;
}

/* Spinners */
.spinner-border-primary {
    color: #ff6000 !important;
}

/* ============================================
   HOVER EFFECTS
   ============================================ */

.hover-bg-gray:hover {
    background-color: #f7f7f7 !important;
}

.hover-scale {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ============================================
   SHADOWS
   ============================================ */

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

.shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

/* ============================================
   CUSTOM UTILITIES
   ============================================ */

/* Orange Gradient */
.bg-gradient-primary {
    background: linear-gradient(135deg, #ff6000 0%, #ff7a26 100%) !important;
}

/* Smooth Transitions */
.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Border Radius */
.rounded-1 {
    border-radius: 8px !important;
}

.rounded-2 {
    border-radius: 12px !important;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    :root {
        --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
        --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07) !important;
        --shadow-lg: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
    }
}


/* ============================================
   CONTAINER & LAYOUT SYSTEM
   ============================================ */

/* Container Genişlikleri - Footer ile Hizalı */
.container-xxl {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

@media (max-width: 1440px) {
    .container-xxl {
        max-width: 1320px !important;
    }
}

@media (max-width: 1200px) {
    .container-xxl {
        max-width: 1140px !important;
    }
}

@media (max-width: 992px) {
    .container-xxl {
        max-width: 960px !important;
    }
}

@media (max-width: 768px) {
    .container-xxl {
        max-width: 720px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

@media (max-width: 576px) {
    .container-xxl {
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* Main Content Area */
main {
    min-height: 60vh;
}

/* Section Spacing */
section {
    position: relative;
}

/* Full Width Sections */
.bg-gray-100,
.bg-light,
.bg-white {
    width: 100%;
}

/* ============================================
   HEADER IMPROVEMENTS
   ============================================ */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-top {
    border-bottom: 1px solid #f0f0f0;
}

.header-menu {
    background: #ffffff;
}

/* ============================================
   FOOTER IMPROVEMENTS
   ============================================ */

footer {
    margin-top: auto;
}

.footer-content {
    border-top: 1px solid #e5e5e5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ============================================
   RESPONSIVE GRID FIXES
   ============================================ */

/* Product Grid - Consistent Spacing */
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

@media (max-width: 768px) {
    .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */

.mobile-navigation {
    z-index: 999;
}

.mobile-menu {
    z-index: 1001;
}

.menu-overlay {
    z-index: 1000;
}

/* ============================================
   BREADCRUMB IMPROVEMENTS
   ============================================ */

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #999999;
}

.breadcrumb-item a {
    color: #666666;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #ff6000;
}

.breadcrumb-item.active {
    color: #1a1a1a;
}

/* ============================================
   CARD & COMPONENT SPACING
   ============================================ */

.card {
    border-color: #e5e5e5;
    border-radius: 8px;
}

.card:hover {
    border-color: #cccccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ============================================
   SWIPER IMPROVEMENTS
   ============================================ */

.swiper {
    overflow: visible;
}

.swiper-slide {
    height: auto;
}

/* ============================================
   IMAGE OPTIMIZATION
   ============================================ */

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

.object-fit-contain {
    object-fit: contain;
}

.object-fit-cover {
    object-fit: cover;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.ls-n1 {
    letter-spacing: -0.5px;
}

.hover-bg-gray:hover {
    background-color: #f7f7f7 !important;
}

.hover-text-secondary:hover {
    color: #666666 !important;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    header,
    footer,
    .mobile-navigation,
    .mobile-menu {
        display: none !important;
    }
    
    .container-xxl {
        max-width: 100% !important;
    }
}
