/* Pati Pati Petshop - Modern Tasarım */

:root {
    --primary-color: #ff7043;
    --secondary-color: #4ecdc4;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --border-color: #e0e0e0;
    --text-color: #333;
    --text-light: #666;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    --nav-orange: #ff8c42;
    --nav-orange-dark: #ff7043;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    margin-right: 5px;
}

.top-bar-right a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.top-bar-right a:hover {
    color: var(--primary-color);
}

/* Header */
.main-header {
    background-color: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    color: var(--dark-color);
}

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

.search-form .input-group {
    box-shadow: var(--shadow);
    border-radius: 25px;
    overflow: visible;
    position: relative;
}

.search-form .form-control {
    border: none;
    padding: 12px 20px;
}

.search-form .btn {
    border: none;
    padding: 12px 25px;
    background-color: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-icon {
    position: relative;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    padding: 10px;
    transition: color 0.3s;
}

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

.btn-icon .badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Navigation */
.main-nav {
    background: linear-gradient(180deg, #ff8c42 0%, #ff7043 100%);
    color: #fff;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.main-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffab5a 0%, #ffcc80 100%);
}

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

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu > li {
    position: relative;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.nav-menu > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    min-height: 100px;
}

.nav-menu > li > a.nav-category-item {
    gap: 8px;
}

.nav-menu > li > a i {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 10px;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    display: block;
    line-height: 1;
    width: 100%;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-menu > li > a span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.nav-menu > li > a:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.nav-menu > li > a:hover i {
    transform: scale(1.1);
}

.nav-menu > li.has-submenu > a::after {
    content: '';
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    list-style: none;
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
}

.nav-menu > li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.submenu li a:hover {
    background-color: #fff5f0;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 25px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 10px;
}

/* Navigation Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-menu > li {
        width: 100%;
        min-width: 100%;
    }
    
    .nav-menu > li > a {
        min-height: 80px;
        padding: 15px;
    }
    
    .nav-menu > li > a i {
        font-size: 28px;
    }
    
    .submenu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border-top: none;
    }
    
    .nav-menu > li:hover .submenu,
    .nav-menu > li.active .submenu {
        display: block;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
    z-index: 1;
}

.hero-slider .carousel {
    width: 100%;
}

.hero-slider .carousel-inner {
    width: 100%;
}

.hero-slider .carousel-item {
    height: 600px;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: block;
}

/* Fade animasyonu için */
.hero-slider .carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.hero-slider .carousel-fade .carousel-item.active,
.hero-slider .carousel-fade .carousel-item-next.carousel-item-start,
.hero-slider .carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.hero-slider .carousel-fade .active.carousel-item-start,
.hero-slider .carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.hero-slider .carousel-fade .carousel-item-next,
.hero-slider .carousel-fade .carousel-item-prev,
.hero-slider .carousel-fade .carousel-item.active {
    transform: translateX(0);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    z-index: 3;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
}

.hero-slider .carousel-control-prev {
    left: 20px;
}

.hero-slider .carousel-control-next {
    right: 20px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background-color: rgba(0,0,0,0.5);
}

.hero-slider .carousel-indicators {
    z-index: 3;
    bottom: 20px;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    max-width: 100%;
    min-width: 100%;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    -ms-interpolation-mode: bicubic;
}

.hero-slider .slider-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    line-height: 0;
    overflow: hidden;
    position: relative;
}

.hero-slider .slider-link:hover {
    opacity: 0.98;
    transition: opacity 0.3s;
}

.hero-slider .slider-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Eski caption stilleri (artık kullanılmıyor ama silmedik) */
.hero-slider .carousel-caption {
    display: none;
}

/* Slider animasyon iyileştirmeleri */
.hero-slider .carousel-fade .carousel-item {
    transition: opacity 1s ease-in-out;
}

.hero-slider .carousel-item.active {
    animation: fadeIn 1s ease-in-out;
}

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

/* Responsive slider */
@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 400px;
    }
    
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider .carousel-control-prev {
        left: 10px;
    }
    
    .hero-slider .carousel-control-next {
        right: 10px;
    }
}

/* Categories Section */
.categories-section {
    padding: 50px 0;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.category-card {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-card a {
    text-decoration: none;
    color: var(--text-color);
}

.category-card img {
    max-height: 100px;
    margin-bottom: 15px;
}

.category-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-card h4 {
    font-size: 18px;
    margin: 0;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.out-of-stock {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #dc3545;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-actions .btn-icon {
    background-color: rgba(255,255,255,0.9);
    color: var(--dark-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow);
}

.product-actions .btn-icon.wishlist-btn.active,
.wishlist-btn.active {
    color: #dc3545;
}

.product-actions .btn-icon.wishlist-btn.active i,
.wishlist-btn.active i {
    color: #dc3545;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 16px;
    margin-bottom: 10px;
}

.product-name a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.product-short-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-price {
    margin-top: auto;
    padding-top: 10px;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 14px;
    margin-right: 10px;
}

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

.product-actions-bottom {
    margin-top: 15px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 30px 0;
}

.page-header h1 {
    margin: 15px 0 0 0;
    font-size: 36px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

/* Product Detail */
.product-detail-page {
    background-color: var(--light-color);
}

.product-images {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.main-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.main-image img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* Ürün Detay Sayfası - Görsel Üzerindeki Favori Butonu */
.product-actions-detail-image {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.product-actions-detail-image .btn-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text-color);
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.product-actions-detail-image .btn-icon:hover {
    background-color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.product-actions-detail-image .btn-icon.active,
.product-actions-detail-image .btn-icon.active i {
    color: #dc3545;
}

.product-actions-detail-image .btn-icon.active:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.product-thumbnails .thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.product-thumbnails .thumbnail:hover,
.product-thumbnails .thumbnail.active {
    border-color: var(--primary-color);
}

.product-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Ürün Detay Sayfası - Product Actions */
.product-actions-detail {
    margin-top: 30px;
}

.quantity-selector-wrapper {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 200px;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background: #fff;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s;
    padding: 0;
}

.quantity-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
}

.quantity-input {
    flex: 1;
    height: 45px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    max-width: 100px;
}

.quantity-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 112, 67, 0.25);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-buttons .btn {
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.action-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 100%);
    border: none;
    color: #fff;
}

.action-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #ff8c42 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 112, 67, 0.4);
}

.action-buttons .btn-outline-danger {
    border: 2px solid #dc3545;
    color: #dc3545;
    background: #fff;
}

.action-buttons .btn-outline-danger:hover {
    background: #dc3545;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.action-buttons .btn-outline-danger.active {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.out-of-stock-message .btn {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .quantity-selector {
        max-width: 100%;
    }
    
    .quantity-input {
        max-width: 100%;
        flex: 1;
    }
    
    .action-buttons .btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

.product-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.product-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.quantity-selector .input-group {
    width: 150px;
}

/* Profile Page */
.profile-page {
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.profile-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0 40px;
    color: #fff;
    margin-bottom: 0;
}

.profile-header-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.profile-avatar {
    position: relative;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 5px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
}

.btn-edit-avatar {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-edit-avatar:hover {
    transform: scale(1.1);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.profile-email,
.profile-join-date {
    margin: 5px 0;
    opacity: 0.9;
    font-size: 16px;
}

.profile-email i,
.profile-join-date i {
    margin-right: 8px;
}

/* İstatistik Kartları */
.stat-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    flex-shrink: 0;
}

.stat-card-orders .stat-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-card-spent .stat-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-card-favorites .stat-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.stat-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
}

/* Sidebar */
.profile-sidebar {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.sidebar-menu {
    padding: 10px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    gap: 12px;
}

.menu-item i {
    width: 20px;
    font-size: 18px;
    color: var(--text-light);
}

.menu-item span:not(.badge) {
    flex: 1;
}

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

.menu-item:hover i {
    color: var(--primary-color);
}

.menu-item.active {
    background: rgba(255, 112, 67, 0.1);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.menu-item.active i {
    color: var(--primary-color);
}

.menu-item.menu-item-danger {
    color: #dc3545;
    border-top: 1px solid #eee;
    margin-top: 10px;
    padding-top: 15px;
}

.menu-item.menu-item-danger:hover {
    background: #fee;
    border-left-color: #dc3545;
    color: #dc3545;
}

.menu-item .badge {
    background: var(--primary-color);
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Profile Content Card */
.profile-content-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.card-header-modern {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.card-header-modern h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header-modern h4 i {
    color: var(--primary-color);
}

.card-body-modern {
    padding: 25px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.info-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.info-item-full {
    grid-column: 1 / -1;
}

.info-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-label i {
    color: var(--primary-color);
}

.info-value {
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 600;
}

/* Orders List */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.orders-list-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item-modern {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.order-item-modern:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.order-header-modern {
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.order-header-modern strong {
    display: block;
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.order-header-modern .order-date {
    font-size: 13px;
    color: var(--text-light);
    display: block;
}

.order-status-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.order-body-modern {
    padding: 25px;
}

.order-body-modern h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-body-modern h6 i {
    color: var(--primary-color);
}

.order-footer-modern {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.order-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.order-footer-modern .order-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Wishlist Page */
.wishlist-page {
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.wishlist-page h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-color);
}

.orders-page {
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.orders-page h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-color);
}

.order-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.order-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.order-header strong {
    display: block;
    color: var(--dark-color);
    font-size: 16px;
    margin-bottom: 5px;
}

.order-date {
    font-size: 13px;
    color: var(--text-light);
    display: block;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    flex-wrap: wrap;
    gap: 15px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .profile-header-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-name {
        font-size: 28px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .order-header,
    .order-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-widget h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

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

.footer-widget ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}

/* Sidebar */
.sidebar {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 20px;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    border-bottom: 1px solid var(--border-color);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    display: block;
    padding: 10px 0;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.category-list li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.category-list li a.active {
    color: var(--primary-color);
    font-weight: 600;
    padding-left: 10px;
    border-left: 3px solid var(--primary-color);
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border-color: var(--border-color);
}

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

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        z-index: 1002;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .hero-slider .carousel-caption h2 {
        font-size: 28px;
    }

    .hero-slider .carousel-caption p {
        font-size: 16px;
    }

    .product-title {
        font-size: 24px;
    }
}

/* Müşteri Yorumları ve Harita Bölümü */
.reviews-map-section {
    background-color: #f8f9fa;
    margin-top: 50px;
}

.reviews-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.review-card {
    border: none;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-stars {
    font-size: 18px;
}

.review-stars .fa-star {
    color: #ffc107;
    margin-right: 3px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.review-author strong {
    color: var(--dark-color);
    font-size: 16px;
}

.map-section {
    margin-top: 50px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.footer-bottom-section {
    background-color: var(--dark-color);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-section p {
    margin: 0;
    color: rgba(255,255,255,0.8);
}

/* Responsive - Yorumlar ve Harita */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }
    
    .review-card {
        margin-bottom: 20px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

