@media (max-width: 768px) {
    .header-actions {
        position: absolute;
        top: 18px;
        right: 18px;
        margin-bottom: 0;
        z-index: 10;
    }
    .main-header .container {
        position: relative;
    }
}
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column !important;
        align-items: center !important;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .main-header .logo-container {
        justify-content: center !important;
        margin-bottom: 1rem;
    }
    .main-header .logo-text {
        text-align: center;
    }
    .header-actions {
        justify-content: center !important;
        margin-bottom: 1rem;
    }
    button[data-bs-target="#mobileMenu"] {
        display: block;
        width: 100%;
        font-size: 1.3rem;
        padding: 1rem;
        border-radius: 12px;
        margin: 1rem 0 0 0;
        background: linear-gradient(135deg, #2166c1 0%, #3498db 100%);
        color: #fff;
        border: none;
    }
    .main-header {
        margin-bottom: 1rem;
    }
}
/* Mobil Menü Tasarımı */
.mobile-navigation {
    background: linear-gradient(135deg, #2166c1 0%, #3498db 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,90,160,0.12);
    padding: 2rem 1rem;
    margin-top: 1rem;
    color: #fff;
}
.mobile-navigation .nav-link {
    color: #fff !important;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.mobile-navigation .nav-link:last-child {
    border-bottom: none;
}
.mobile-navigation .dropdown-menu {
    background: #2166c1;
    border-radius: 12px;
    color: #fff;
}
.mobile-navigation .dropdown-item {
    color: #fff !important;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.mobile-navigation .dropdown-item:last-child {
    border-bottom: none;
}
button[data-bs-target="#mobileMenu"] {
    width: 100%;
    font-size: 1.3rem;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
}
/* Erciyes İş Güvenliği - Ana CSS Dosyası */

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #0d6efd;
    --danger-color: #e74c3c;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Logo Styles */
.logo-container {
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-2px);
}

.logo-icon {
    position: relative;
}

.shield-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3498db 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    position: relative;
    overflow: hidden;
}

.shield-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.shield-logo:hover::before {
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.shield-logo i {
    font-size: 24px;
    color: white;
    z-index: 2;
    position: relative;
}

.logo-text h4 {
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text small {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-text h4 {
        font-size: 1.2rem;
    }
    
    .shield-logo {
        width: 40px;
        height: 40px;
    }
    
    .shield-logo i {
        font-size: 20px;
    }
}

/* Header Styles */
.top-bar {
    font-size: 0.875rem;
}

.top-bar a:hover {
    opacity: 0.8;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.main-header {
    border-bottom: 1px solid #e9ecef;
}

.logo img {
    transition: opacity 0.3s ease;
}

.logo:hover img {
    opacity: 0.8;
}

.search-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.header-actions a {
    transition: color 0.3s ease;
}

.header-actions a:hover {
    color: var(--primary-color) !important;
}

/* Main Navigation in Header */
.main-navigation .nav {
    gap: 0.5rem;
}

.main-navigation .nav-link {
    color: #495057;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(44, 90, 160, 0.1);
    transform: translateY(-1px);
}

.main-navigation .dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.75rem;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.main-navigation .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.main-navigation .dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* Responsive Navigation */
@media (max-width: 991.98px) {
    .main-navigation {
        display: none;
    }
    
    .main-header .col-lg-3:first-child {
        flex: 0 0 70%;
        max-width: 70%;
    }
    
    .main-header .col-lg-3:last-child {
        flex: 0 0 30%;
        max-width: 30%;
    }
}

/* Mobile Navigation */
.mobile-navigation {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.mobile-navigation .nav-link {
    color: #495057;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.mobile-navigation .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(44, 90, 160, 0.1);
}

.mobile-navigation .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
    border: none;
    background-color: transparent;
    padding-left: 1rem;
}

/* Navigation Styles */
.navbar-dark .navbar-nav {
    gap: 1rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.navbar-dark .navbar-nav .nav-item.dropdown .nav-link::after {
    margin-left: 0.5rem;
}

/* Logo hizalama için responsive spacing */
@media (min-width: 992px) {
    .navbar-nav-spacer {
        width: 300px;
        flex-shrink: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav-spacer {
        display: none;
    }
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Card Styles */
.product-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: white;
    border-radius: 0.75rem;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 1.25rem;
}

.product-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.product-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.product-card .old-price {
    font-size: 0.875rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.product-card .btn {
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Category Card Styles */
.category-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.category-card .category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.category-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #6c757d;
    font-size: 0.875rem;
    margin: 0;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 1s ease-in-out;
    display: flex;
    align-items: center;
    /* Resim netliği ve canlılığı için filtreler */
    filter: contrast(1.2) saturate(1.3) brightness(1.1) sharpen(1px);
    background-attachment: fixed; /* Parallax efekti */
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.02); /* Hafif büyütme efekti */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.6), rgba(52, 152, 219, 0.4));
    z-index: 1;
    backdrop-filter: blur(0.5px); /* Hafif blur efekti */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    animation: slideInUp 1s ease-out;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.7);
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    font-weight: 400;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(45deg, #2166c1, #3498db, #2c3e50);
    border: none;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.hero-buttons .btn-primary:hover::before {
    left: 100%;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.6);
    background: linear-gradient(45deg, #2166c1, #3498db, #2c3e50);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.9);
    color: white;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255,255,255,0.25);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
    color: white;
}

/* Slider Controls */
.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.hero-prev,
.hero-next {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

/* Slider Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
    border-color: rgba(255,255,255,0.3);
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.1);
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Animations */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.min-vh-75 {
    min-height: 75vh;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-slide {
        background-attachment: scroll; /* Mobilde parallax kapat */
        filter: contrast(1.3) saturate(1.4) brightness(1.15); /* Mobilde daha canlı */
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-controls {
        padding: 0 1rem;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.3);
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(44, 90, 160, 0.7), rgba(52, 152, 219, 0.5));
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .slide-counter {
        top: 10px;
        right: 10px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: white;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-item .feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--success-color), #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.feature-item h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 1rem 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border-color: #dee2e6;
    padding: 0.75rem 1rem;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-link:hover {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    margin-top: auto;
}

.main-footer {
    background-color: #2c3e50;
}

/* Footer Logo Styles */
.footer-logo .shield-logo-footer {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db 0%, var(--primary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.footer-logo .shield-logo-footer i {
    font-size: 18px;
    color: white;
}

.footer-logo:hover .shield-logo-footer {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.main-footer h5,
.main-footer h6 {
    color: white;
    font-weight: 600;
}

.main-footer p,
.main-footer li {
    color: #bdc3c7;
}

.main-footer a {
    transition: color 0.3s ease;
}

.main-footer a:hover {
    color: white;
}

.newsletter-section {
    background-color: var(--primary-color) !important;
}

.newsletter-form .form-control:focus {
    border-color: white;
    box-shadow: none;
}

.bottom-footer {
    background-color: #34495e !important;
    border-top: 1px solid #4a5f7a;
}

/* Buttons */
.btn {
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    padding: 0.5rem 1.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1e3d72;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #c0392b;
    transform: translateY(-1px);
}

.btn-success {
    background-color: var(--success-color);
}

.btn-success:hover {
    background-color: #229954;
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Forms */
.form-control {
    border-radius: 0.5rem;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Alerts */
.alert {
    border-radius: 0.75rem;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background-color: #cfe2ff;
    color: #084298;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Tables */
.table {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 2px solid #e9ecef;
}

.table td {
    vertical-align: middle;
}

/* Cart Styles */
.cart-item {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.cart-summary {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 2rem;
}

/* Product Detail Styles */
.product-detail-img {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.product-info {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.product-info .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-info .old-price {
    font-size: 1.25rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-right: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    overflow: hidden;
    width: fit-content;
}

.quantity-selector button {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.quantity-selector button:hover {
    background: var(--primary-color);
    color: white;
}

.quantity-selector input {
    border: none;
    width: 60px;
    height: 40px;
    text-align: center;
    font-weight: 600;
}

/* Back to Top Button */
#backToTop {
    transition: all 0.3s ease;
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.125rem;
    }
    
    .product-card .card-img-top {
        height: 180px;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-card .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .features-section {
        padding: 3rem 0;
    }
    
    .feature-item .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .product-card .card-img-top {
        height: 160px;
    }
    
    .main-footer .col-lg-4,
    .main-footer .col-lg-2 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .product-info .price {
        font-size: 1.5rem;
    }
    
    .cart-item,
    .cart-summary {
        padding: 1rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.hover-shadow {
    transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Badge Styles */
.badge {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    border-radius: 0.5rem;
}

.badge.featured {
    background-color: var(--primary-color);
    color: white;
}

.badge.new {
    background-color: var(--success-color);
    color: white;
}

.badge.sale {
    background-color: var(--danger-color);
    color: white;
}

/* Product Logo Styling */
.product-image .placeholder-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    border: 2px dashed #ddd;
    transition: all 0.3s ease;
}

.product-image .placeholder-image:hover {
    border-color: var(--primary-color);
    background-color: #f8f9fa !important;
}

.product-image .placeholder-image i {
    opacity: 0.5;
}

/* Main Logo Styling - Original colors */
.main-logo {
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    min-height: 80px;
}

.main-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.35) !important;
}

/* Footer Logo Styling - Original colors */
.footer-logo-img {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Logo container hover effects */
.logo-container:hover .main-logo {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.35) !important;
}

/* Logo color adjustment for primary theme */
.product-card .product-image img {
    filter: brightness(0.8) contrast(1.2) sepia(1) hue-rotate(210deg) saturate(1.5);
}

/* Product Detail Improvements */
.placeholder-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 400px;
}

.placeholder-image:hover {
    border-color: #007bff;
    transform: translateY(-2px);
}

.product-thumbnails {
    max-width: 100%;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail-img {
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail-img:hover {
    border-color: #007bff;
    transform: scale(1.05);
}

.thumbnail-img.active {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.main-product-image {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.02);
}

/* About Section & Statistics Styling */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="0.3" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="0.4" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.stat-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 90, 160, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #3498db);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(44, 90, 160, 0.15);
    border-color: var(--primary-color);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 1.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    opacity: 1;
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 800;
    letter-spacing: -1px;
}

.stat-item p {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for statistics */
@media (max-width: 768px) {
    .stat-item {
        margin-bottom: 1rem;
        padding: 1.5rem !important;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
}

/* Modern Hero Enhancements */
.hero-subtitle-badge {
    animation: fadeInDown 1s ease-out 0.3s both;
}

.hero-subtitle-badge .badge {
    font-size: 0.9rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    backdrop-filter: blur(10px);
    background: rgba(255, 193, 7, 0.9) !important;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.8rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.8) !important;
    animation: slideInLeft 1s ease-out 0.5s both;
    background: none !important;
    -webkit-text-fill-color: white !important;
    color: white !important;
}

.hero-title .text-warning {
    color: #0d6efd !important;
    text-shadow: 2px 2px 10px rgba(13, 110, 253, 0.5);
}

.hero-description {
    line-height: 1.6;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    animation: fadeIn 1s ease-out 0.7s both;
    max-width: 580px;
    font-size: 1.2rem;
}

.hero-stats {
    animation: slideInUp 1s ease-out 0.9s both;
}

.stat-box {
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 193, 7, 0.5);
    background: rgba(255, 193, 7, 0.1) !important;
}

.stat-number {
    font-size: 1.8rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-buttons {
    animation: slideInUp 1s ease-out 1.1s both;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #0d6efd, #0b5ed7) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(13, 110, 253, 0.6);
    transform: translateY(-3px);
    background: linear-gradient(45deg, #0b5ed7, #0a58ca) !important;
    color: #fff !important;
}

.btn-modern {
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease;
    color: white !important;
}

.btn-modern:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #0d6efd !important;
    transform: translateY(-3px);
    color: white !important;
}

/* Enhanced Hero Overlay */
.hero-overlay {
    background: linear-gradient(135deg, 
        rgba(13, 110, 253, 0.7) 0%, 
        rgba(13, 110, 253, 0.3) 50%, 
        rgba(25, 135, 84, 0.6) 100%) !important;
}

/* Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-box {
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn {
        margin-bottom: 0.5rem;
        width: 100%;
    }
}

/* Clickable Product Cards */
.clickable-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.1);
}

.clickable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.clickable-card .product-title {
    transition: color 0.3s ease;
}

.clickable-card:hover .product-title {
    color: var(--primary-color) !important;
}

.clickable-card:hover .btn {
    background: linear-gradient(45deg, var(--primary-color), #4a90e2);
    transform: scale(1.02);
}

/* Bootstrap Override - Sarı Renkleri Maviye Çevir */
.text-warning {
    color: #0d6efd !important;
}

.bg-warning {
    background-color: #cfe2ff !important;
}

.border-warning {
    border-color: #0d6efd !important;
}

.btn-warning {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: #fff !important;
}

.btn-warning:hover {
    background-color: #0b5ed7 !important;
    border-color: #0b5ed7 !important;
    color: #fff !important;
}
