/* EMD MOTO E-Ticaret CSS */

:root {
    --primary-color: #e63946; /* Kırmızı ton - motosiklet teması için */
    --secondary-color: #1d3557; /* Koyu lacivert */
    --accent-color: #f1c40f; /* Vurgu rengi - sarı */
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --border-radius: 0.25rem;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Genel Stil */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 0;
    overflow-x: hidden;
    position: relative;
}

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

a:hover {
    color: #c1121f; /* Koyu kırmızı */
}

.container {
    max-width: 1280px;
}

/* Sayfa Yükleniyor */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Header Stili */
.top-header {
    background-color: var(--secondary-color);
    color: white;
    font-size: 13px;
}

.top-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.top-header a:hover {
    color: white;
}

.top-header span {
    color: rgba(255, 255, 255, 0.8);
}

.main-header {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    padding: 15px 0;
}

.logo img {
    max-height: 60px;
}

/* Arama çubuğu - Yeniden düzenlendi */
.search-bar {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-bar input {
    border-radius: 30px;
    padding: 10px 50px 10px 20px;
    height: 45px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    width: 100%;
}

.search-bar input:focus {
    box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.25);
    border-color: var(--primary-color);
    outline: none;
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 0;
    background: var(--primary-color);
    color: white;
    border: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar button:hover {
    background: var(--secondary-color);
}

/* Header ikonları - Yeniden düzenlendi */
.header-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-icon {
    color: var(--secondary-color);
    font-size: 24px;
    margin-left: 20px;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon:hover {
    color: var(--primary-color);
}

.header-icons .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 10px;
    background-color: var(--primary-color);
}

/* Sepet wrapper - Yeni */
.cart-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-left: 20px;
}

.cart-text {
    font-size: 12px;
    margin-top: 2px;
    color: var(--secondary-color);
    font-weight: 500;
}

.cart-wrapper .header-icon {
    margin-left: 0;
}

/* Sepet Dropdown */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    margin-top: 15px;
}

.cart-dropdown.show {
    display: block;
}

.cart-dropdown-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.cart-dropdown-header h5 {
    margin: 0;
    font-weight: 600;
}

.cart-items {
    max-height: 320px;
    overflow-y: auto;
    padding: 15px;
}

.empty-cart-message {
    text-align: center;
    padding: 20px 0;
    color: #6c757d;
}

.cart-dropdown-footer {
    padding: 15px;
    border-top: 1px solid #eee;
}

/* Ana Menü */
.main-menu {
    background-color: var(--secondary-color);
    border-bottom: none;
}

.main-menu .nav {
    padding: 0;
}

.main-menu .nav-link {
    color: white;
    padding: 15px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition);
    border-radius: 0;
}

.main-menu .nav-link:hover,
.main-menu .nav-link.active {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.main-menu .dropdown-menu {
    margin-top: 0;
    border: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-menu .dropdown-item {
    padding: 10px 15px;
    font-size: 14px;
}

.main-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

/* Banner/Slider */
.main-banner {
    height: 550px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../assets/img/banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 60px;
}

.banner-content {
    z-index: 2;
}

.banner-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1.1rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-content .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.banner-content .btn-primary:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.banner-indicators span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.banner-indicators span.active {
    background-color: #fff;
    width: 30px;
    border-radius: 5px;
}

/* Kategoriler */
.category-section {
    padding: 60px 0;
}

.section-title {
    position: relative;
    text-align: center;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.category-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: none;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-card img {
    height: 180px;
    object-fit: cover;
    width: 100%;
    transition: var(--transition);
}

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

.category-card .category-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(29, 53, 87, 0.8); /* var(--secondary-color) ile uyumlu */
    color: #fff;
    padding: 15px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.category-card:hover .category-title {
    background-color: var(--primary-color);
}

/* Ürün Filtreleme */
.product-filter .form-select {
    border-radius: 30px;
    padding: 10px 30px 10px 15px;
    font-size: 14px;
    border: 2px solid #e9ecef;
    width: 200px;
}

.product-filter .form-select:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Ürün Kartları */
.product-section {
    padding: 60px 0;
}

.empty-results {
    padding: 40px 0;
    color: #6c757d;
}

.product-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-thumb {
    position: relative;
    overflow: hidden;
    padding: 5px;
}

.product-thumb img {
    height: 150px;
    width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-thumb img {
    transform: scale(1.08);
}

.product-action {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: rgba(29, 53, 87, 0.8); /* var(--secondary-color) ile uyumlu */
    display: flex;
    justify-content: center;
    padding: 15px 0;
    transition: var(--transition);
}

.product-card:hover .product-action {
    bottom: 0;
}

/* Sabit görünür action bantları */
.product-action-visible {
    bottom: 0 !important;
    background-color: rgba(29, 53, 87, 0.9);
}

.product-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--secondary-color);
    margin: 0 5px;
    transition: var(--transition);
}

.product-action a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.product-content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-grow: 1;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
}

.product-badge span {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 3px;
    margin-right: 5px;
}

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

.badge-sale {
    background-color: var(--accent-color);
    color: var(--dark-color) !important;
}

.product-brand {
    font-size: 13px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 500;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /*-webkit-line-clamp: 2; Burayı açmadan ilerle */
    color: var(--secondary-color);
}

.product-title a {
    color: var(--secondary-color);
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.price-current {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-old {
    font-size: 14px;
    color: var(--secondary-color);
    text-decoration: line-through;
    margin-left: 10px;
    opacity: 0.7;
}

.add-to-cart {
    display: block;
    width: 100%;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.add-to-cart:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Markalar Bölümü */
.brand-section {
    padding: 60px 0;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    background-color: #fff;
    margin-bottom: 20px;
    transition: var(--transition);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.brand-item img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
}

/* Alt Bilgi (Footer) */
.footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 60px;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-title:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #152843; /* Biraz daha koyu */
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-color);
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    overflow-y: auto;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-body {
    padding: 15px;
}

.mobile-menu-body .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: var(--secondary-color);
    font-weight: 500;
}

.mobile-menu-body .nav-link.active,
.mobile-menu-body .nav-link:hover {
    color: var(--primary-color);
}

.mobile-menu-close {
    color: var(--secondary-color);
    font-size: 20px;
}

.mobile-menu-toggle {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding: 0 0 0 15px;
    margin: 0;
}

.mobile-dropdown-menu li {
    margin: 10px 0;
}

.mobile-dropdown-menu a {
    color: var(--secondary-color);
    font-size: 14px;
    transition: var(--transition);
}

.mobile-dropdown-menu a:hover {
    color: var(--primary-color);
}

/* Sayfalama */
.pagination {
    margin-top: 30px;
}

.pagination .page-link {
    color: var(--secondary-color);
    border-color: #dee2e6;
    margin: 0 3px;
    border-radius: 3px;
    transition: var(--transition);
}

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

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #fff;
}

/* Bildirimler */
.toast {
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.toast-header {
    border-radius: 4px 4px 0 0;
}

/* Uyumlu Tasarım (Responsive) */
@media (max-width: 1199px) {
    .main-banner {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .main-banner {
        height: 350px;
    }
    
    .main-banner h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .product-section, .category-section, .brand-section {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .main-banner {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .main-banner h1 {
        font-size: 1.75rem;
    }
    
    .category-card img {
        height: 150px;
    }
    
    .product-section, .category-section, .brand-section {
        padding: 30px 0;
    }
    
    .footer {
        padding-top: 40px;
    }
}

@media (max-width: 575px) {
    .main-banner {
        height: 250px;
    }
    
    .main-banner h1 {
        font-size: 1.5rem;
    }
    
    .main-banner p {
        font-size: 1rem;
    }
    
    .main-banner .btn-lg {
        font-size: 0.9rem;
        padding: 8px 15px !important;
    }
    
    .header-icon {
        font-size: 18px;
        margin-left: 10px;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .cart-dropdown {
        width: 280px;
        right: -70px;
    }
    
    .cart-dropdown:after {
        right: 80px;
    }
}

/* Ürün Detay Sayfası Stilleri */
.product-detail-page {
    padding: 5px 0;
}

.product-detail-page .main-image {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.product-detail-page .main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
    transition: transform 0.1s ease-out;
}

.product-detail-page .main-image .zoom-lens {
    position: absolute;
    border: 2px solid #ccc;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    display: none;
    cursor: crosshair;
    z-index: 999;
}

.product-detail-page .thumbnail-images img {
    border: 1px solid #eee;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-detail-page .thumbnail-images img:hover {
    border-color: #007bff;
}

.product-detail-page .product-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
}

.product-detail-page .current-price {
    color: #007bff;
    font-weight: 600;
}

.product-detail-page .old-price {
    font-size: 1.1rem;
}

.product-detail-page .product-short-desc {
    color: #666;
    line-height: 1.6;
}

.product-detail-page .product-features {
    margin-top: 30px;
}

.product-detail-page .product-description {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.product-detail-page .product-description .content {
    color: #666;
    line-height: 1.8;
}

.product-detail-page .add-to-cart-section input[type="number"] {
    text-align: center;
    font-weight: 600;
}

.product-detail-page .quick-actions {
    margin-top: 20px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .product-detail-page .product-title {
        font-size: 1.5rem;
    }
    
    .product-detail-page .current-price {
        font-size: 1.5rem;
    }
    
    .product-detail-page .main-image {
        margin-bottom: 20px;
    }
}

/* Sepet Sayfası Stilleri */
.cart-page {
    background-color: #f8f9fa;
    min-height: 70vh;
}

.page-header {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-title {
    color: var(--secondary-color);
    font-weight: 700;
}

.cart-items-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cart-item {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.cart-item .product-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item .product-name {
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.3;
}

.cart-item .product-price {
    font-size: 1.1rem;
}


.quantity-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.quantity-input {
    font-weight: 600;
    border-left: 0 !important;
    border-right: 0 !important;
}

.item-total {
    font-size: 1.2rem;
}

.cart-summary {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.cart-summary .card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    padding: 20px;
}

.cart-summary .card-body {
    padding: 25px;
}

.summary-row {
    font-size: 1rem;
    color: var(--secondary-color);
}

.summary-total {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.coupon-section .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.coupon-section .form-control {
    border-right: 0;
}

.coupon-section .btn {
    border-left: 0;
}

#checkout-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

#checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

#checkout-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.security-info {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
}

.cart-advantages .card {
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.cart-advantages .advantage-item {
    transition: all 0.3s ease;
    padding: 5px 0;
}

.cart-advantages .advantage-item:hover {
    transform: translateX(5px);
}

.empty-cart {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.empty-cart-icon {
    opacity: 0.6;
}

.empty-cart h3 {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Sepet Sayfası Responsive */
@media (max-width: 991px) {
    .cart-summary {
        position: static;
        margin-top: 30px;
    }
    
    .page-header {
        padding: 20px;
        text-align: center;
    }
    
    .page-header .btn {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .cart-item .product-image img {
        width: 60px;
        height: 60px;
    }
    
    .cart-item .product-name {
        font-size: 0.9rem;
    }
    
    .cart-item .product-price {
        font-size: 1rem;
    }
    
    .quantity-controls .input-group {
        max-width: 100px;
    }
    
    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .item-total {
        font-size: 1rem;
    }
    
    .cart-summary .card-body {
        padding: 20px;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
}

/* Sepet Sayfası için Ek Animasyonlar */
.cart-item {
    animation: slideInUp 0.5s ease-out;
}

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

.cart-summary {
    animation: fadeInRight 0.6s ease-out;
}

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

.empty-cart {
    animation: fadeIn 0.8s ease-out;
}

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

/* Breadcrumb Stilleri */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

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

/* Ürün Özellikleri Tablosu */
.product-features table {
    margin-top: 20px;
}

.product-features table td {
    padding: 12px 15px;
}

.product-features table td:first-child {
    width: 30%;
    background: #f8f9fa;
}

/* Stok Durumu */
.product-stock {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Adet Seçici */
.input-group {
    width: 100%;
}

.input-group input {
    border-left: 0;
    border-right: 0;
}

.input-group button {
    width: 40px;
}

/* Paylaş Butonu */
.share-button {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
}

.share-button:hover {
    background: #e9ecef;
}

/* İndirim Badge */
.discount {
    font-size: 0.9rem;
    padding: 5px 10px;
}

/* Marka Badge */
.product-brand .badge {
    font-size: 0.9rem;
    padding: 6px 12px;
    background: #6c757d;
} 


/* Avantajlar (advantages) bölümü için modern ve animasyonlu stil */
.advantages {
    background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.04);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.advantages .advantage-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.03);
    padding: 32px 18px 28px 18px;
    transition: transform 0.35s cubic-bezier(.4,2,.6,1), box-shadow 0.35s;
    position: relative;
    z-index: 1;
    cursor: pointer;
    min-height: 220px;
    overflow: hidden;
}

.advantages .advantage-item:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, #007bff22 0%, transparent 80%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s cubic-bezier(.4,2,.6,1), height 0.5s cubic-bezier(.4,2,.6,1);
    z-index: 0;
}

.advantages .advantage-item:hover {
    transform: translateY(-10px) scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 32px 0 rgba(0,123,255,0.10), 0 2px 8px 0 rgba(0,0,0,0.04);
}

.advantages .advantage-item:hover:before {
    width: 260px;
    height: 260px;
}

.advantages .advantage-item i {
    transition: color 0.3s, transform 0.4s cubic-bezier(.4,2,.6,1);
    color: #007bff;
    filter: drop-shadow(0 2px 8px #007bff22);
    margin-bottom: 18px;
    z-index: 2;
    position: relative;
    font-size: 2.8rem;
    animation: advantageIconPop 1.2s cubic-bezier(.4,2,.6,1) both;
}

.advantages .advantage-item:hover i {
    color: #0056b3;
    transform: scale(1.18) rotate(-8deg);
    filter: drop-shadow(0 4px 16px #007bff33);
    animation: advantageIconBounce 0.7s;
}

@keyframes advantageIconPop {
    0% { transform: scale(0.7) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.15) rotate(6deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); }
}

@keyframes advantageIconBounce {
    0% { transform: scale(1.18) rotate(-8deg);}
    30% { transform: scale(0.95) rotate(2deg);}
    60% { transform: scale(1.10) rotate(-4deg);}
    100% { transform: scale(1.05) rotate(0deg);}
}

.advantages .advantage-item h5 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
    z-index: 2;
    position: relative;
    transition: color 0.3s;
}

.advantages .advantage-item:hover h5 {
    color: #007bff;
}

.advantages .advantage-item p {
    font-size: 1.01rem;
    color: #555;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
    transition: color 0.3s;
}

.advantages .advantage-item:hover p {
    color: #222;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .advantages .advantage-item {
        min-height: 180px;
        padding: 24px 10px 20px 10px;
    }
    .advantages .advantage-item i {
        font-size: 2.2rem;
    }
}

@media (max-width: 575px) {
    .advantages {
        border-radius: 10px;
        margin-bottom: 24px;
    }
    .advantages .advantage-item {
        min-height: 120px;
        padding: 18px 6px 14px 6px;
    }
    .advantages .advantage-item h5 {
        font-size: 1.05rem;
    }
    .advantages .advantage-item i {
        font-size: 1.5rem;
    }
}
