:root {
    --primary-pink: #FF69B4;
    --primary-purple: #800080;
    --primary-black: #1a1a1a;
    --primary-gray: #f5f5f5;
    --secondary-purple: #4B0082;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



.product-title {
    font-size: 1.8rem;
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(to right, var(--secondary-purple), var(--primary-black));
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

/* Header Styles */
.main-header {
    padding: 20px 0;
    background: white;
}

.header-logo {
    max-height: 80px;
    width: auto;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Arama Formu Stilleri */
.search-form {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.search-form .input-group {
    border: 1px solid #eee;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-form .input-group:hover,
.search-form .input-group:focus-within {
    border-color: var(--primary-purple);
    box-shadow: 0 2px 10px rgba(75, 0, 130, 0.1);
}

.search-form .form-control {
    border: none;
    padding: 8px 15px;
    font-size: 0.9rem;
    height: 38px;
    background: transparent;
}

.search-form .search-btn {
    background: transparent;
    color: var(--primary-purple);
    border: none;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-form .search-btn:hover {
    color: var(--secondary-purple);
    transform: scale(1.1);
}

.header-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.header-icons a {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px;
}

.header-icons a i {
    font-size: 1.8rem;
    color: var(--primary-purple);
    transition: all 0.3s ease;
    opacity: 0.85;
    font-weight: 300;
}

.header-icons a span {
    font-size: 0.85rem;
    font-weight: 400;
    white-space: nowrap;
    color: var(--text-color);
    opacity: 0.9;
    letter-spacing: -0.2px;
}

.header-icons a:hover {
    transform: translateY(-2px);
}

.header-icons a:hover i {
    color: var(--secondary-purple);
    opacity: 1;
}

/* Responsive Header Styles */
@media (max-width: 1199px) {
    .search-form {
        max-width: 400px;
    }
    
    .header-icons {
        gap: 12px;
    }
    
    .header-icons a i {
        font-size: 1.4rem;
    }
    
    .header-icons a span {
        font-size: 0.75rem;
    }
}

@media (max-width: 991px) {
    .main-header .row {
        position: relative;
    }
    
    .search-form {
        margin: 10px 0;
        max-width: 320px;
    }
    
    .header-icons {
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        gap: 10px;
    }
    
    .header-icons a i {
        font-size: 1.35rem;
    }
    
    .header-icons a span {
        font-size: 0.7rem;
    }
}

@media (max-width: 767px) {
    .main-header {
        padding: 12px 0;
    }
    
    .header-logo {
        max-height: 80px;
    }
    
    .search-form {
        margin: 8px 0;
        max-width: 280px;
    }
    
    .search-form .form-control {
        padding: 6px 12px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .search-form .search-btn {
        width: 35px;
        height: 35px;
    }
    
    .header-icons {
        gap: 8px;
    }
    
    .header-icons a {
        padding: 4px;
    }
    
    .header-icons a i {
        font-size: 1.3rem;
    }
    
    .header-icons a span {
        display: none;
    }
    
    .cart-badge {
        top: -5px;
        right: -5px;
    }
}

@media (max-width: 575px) {
    .search-form {
        max-width: 100%;
    }
    
    .header-icons {
        gap: 5px;
    }
    
    .header-icons a {
        padding: 3px;
    }
    
    .header-icons a i {
        font-size: 1.2rem;
    }
}

/* Navigation Menu */
.main-nav {
    background: linear-gradient(to right, var(--secondary-purple), var(--primary-black));
    padding: 15px 0;
    transition: all 0.3s ease;
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-nav .nav-item {
    position: relative;
}

.main-nav .nav-link {
    color: white;
    padding: 8px 15px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.main-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav .nav-link:hover:after {
    width: 80%;
}

.main-nav .nav-link:hover {
    color: var(--primary-pink);
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-top: 15px;
    padding: 15px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu:before {
    content: '';
    position: absolute;
    top: -6px;
    left: 30px;
    width: 12px;
    height: 12px;
    background: rgba(26, 26, 26, 0.95);
    transform: rotate(45deg);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-pink);
    padding-left: 30px;
}

.dropdown-menu .dropdown-item:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-pink);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover:before {
    opacity: 1;
}

.nav-link.dropdown-toggle::after {
    display: none;
}

.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link.dropdown-toggle:before {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    order: 2;
}

.nav-item:hover .dropdown-toggle:before {
    transform: rotate(180deg);
}

/* Eski dropdown-toggle after stilini kaldır */
.dropdown-toggle:after {
    display: none !important;
}

.call-us {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-us i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

/* Category Section */
.category-section {
    margin: 0;
    padding: 15px 0;
    background: white;
}

.category-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

    height: 100%;
}

.category-main-img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.category-small-img {
    height: 235px;
    object-fit: cover;
    width: 100%;
}

.category-container:hover img {
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
}

.category-overlay h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.category-overlay p {
    margin: 5px 0 0;
    opacity: 0.9;
}

/* Product Cards */
.product-badge {
    position: absolute;
    top: 0;
    left: 0;
    padding: 8px 15px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
    border-radius: 0 0 15px 0;
    background-color: #7FB3D5; /* Açık mavi renk */
}



.badge-new {
    background-color: #9f207b;
}

.badge-discount {
    background-color: #c03161;
}

.badge-bestseller {
    background-color: #713784;
}

.product-card {
    position: relative;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-card:hover {
    
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.product-card:hover .card-img-top {
    
}

.product-card .card-body {
    text-align: center;
    padding: 1rem;
    background: white;
}

.product-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    padding-top: 10px;
    color: var(--text-color);
    height: 49px;
    font-weight: 500;
}

.product-card .card-text {
    color: #211f1f;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1rem;
}

.same-day-delivery {
    color: #6a1b9a;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.same-day-delivery i {
    color: #6a1b9a;
}

.btn-order {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.2);
}

.btn-order:hover {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 0, 130, 0.3);
    color: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-purple) 100%);
    padding: 80px 0 30px;
    color: white;
}

.footer-logo {
    margin-bottom: 25px;
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links h5 {
    color: var(--primary-pink);
    margin-bottom: 25px;
    font-weight: 600;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 2;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 12px 20px;
    color: white;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form .btn {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    padding: 12px 25px;
    font-weight: 500;
}

.whatsapp-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.whatsapp-box h5 {
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.whatsapp-box p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

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

.payment-methods {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.payment-methods img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-purple);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.scroll-to-top.visible {
    opacity: 1;
}

/* Mobil cihazlar için düzenleme */
@media (max-width: 767px) {
    .scroll-to-top {
        bottom: 80px; /* Alt menüden kaçınmak için yukarı çektik */
        right: 15px;
        width: 35px; /* Mobilde biraz daha küçük */
        height: 35px;
    }
}

/* Mobile Menu Styles */
.navbar-toggler {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-purple) 100%);
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 20px rgba(0,0,0,0.2);
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header h5 {
    margin: 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-nav {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}




.mobile-nav-item.active .mobile-nav-link {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-pink);
}

.mobile-nav-item.active .mobile-nav-link:after {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    list-style: none;
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-submenu.active {
    display: block;
    animation: slideDown 0.3s ease forwards;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-submenu li a:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-pink);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-submenu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 45px;
}

.mobile-submenu li a:hover:before {
    opacity: 1;
}

.mobile-menu-footer {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    position: sticky;
    bottom: 0;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact {
    color: white;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mobile-contact i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    /* Top Bar */
    .top-bar {
        display: none;
    }

    /* Header */
    .main-header {
        padding: 10px 0;
    }

    .header-logo {
        max-height: 80px;
    }

    .search-form {
        margin: 10px 0;
    }

    .header-icons {
        position: absolute;
        top: 10px;
        right: 15px;
    }

    .header-icons a {
        font-size: 1.4rem;
        margin-left: 15px;
    }

    .header-icons a span {
        display: none;
    }

    /* Navigation */
    .main-nav {
        padding: 8px 0;
        margin-bottom: 0;
    }
    
    .main-nav.sticky {
        padding: 8px 0;
    }

    .navbar-toggler {
        padding: 5px 0;
    }

    /* Category Section */
    .category-section {
        margin: 20px 0;
        padding: 10px 0;
    }

    .category-main-img {
        height: 300px;
    }

    .category-small-img {
        height: 150px;
    }

    .category-overlay h3 {
        font-size: 1.2rem;
    }

    .category-overlay p {
        font-size: 0.9rem;
    }

    /* Ürün Kartları */
    .products-section .col-md-3 {
        width: 50%;
        padding: 0 8px;
    }

    .product-card {
        margin-bottom: 16px;
    }

    .product-card .card-img-top {
        height: 200px;
    }
    
    .product-card .card-body {
        padding: 12px;
    }
    
    .product-card .card-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .product-card .card-text {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .product-card .btn-order {
        font-size: 14px;
        padding: 8px;
    }
    
    .same-day-delivery {
        font-size: 12px;
    }
} 

/* Delivery Location and Features Section */
.delivery-features {
    background-color: white;
    padding: 10px 0;
}

.location-selector {
    max-width: 100%;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-selector label {
    color: #666;
    font-size: 13px;
    display: block;
    margin-bottom: 14px;
}

.location-selector .input-group {
    box-shadow: none;
    margin-bottom: -10px;
}

.location-selector .input-group-text {
    background-color: white;
    border-right: none;
    color: var(--primary-purple);
}

.location-selector .form-select {
    border-left: none;
    padding-left: 0;
    cursor: pointer;
    color: var(--text-color);
    font-weight: 500;
}

.feature-item {
    background: white;
    padding: 10px 10px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 4px;
}

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

.feature-item i {
    font-size: 2.3rem;
    color: var(--primary-purple);
    margin-bottom: 2px;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
    color: var(--secondary-purple);
}

.feature-item h5 {
    font-size: 0.7rem;
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 767px) {
    .feature-item {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .feature-item i {
        font-size: 2rem;
    }
    
    .feature-item h5 {
        font-size: 0.8rem;
    }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media (max-width: 375px) {
    .products-section .col-md-3 {
        padding: 0 6px;
    }
    
    .product-card .card-body {
        padding: 10px;
    }
} 

/* Tablet ve mobil için ürün kartı düzenlemeleri */
@media (max-width: 991px) {
    .products-section .col-md-3 {
        width: 50%;
        padding: 0 8px;
    }

    .product-card {
        margin-bottom: 16px;
    }

    .product-card .card-img-top {
        height: 200px;
    }
    
    .product-card .card-body {
        padding: 12px;
    }
    
    .product-card .card-title {
        font-size: 14px;
        margin-bottom: 1px;
    }
    
    .product-card .card-text {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .product-card .btn-order {
        font-size: 14px;
        padding: 8px;
    }
    
    .same-day-delivery {
        font-size: 12px;
    }
}

/* Mobil için ek düzenlemeler */
@media (max-width: 767px) {
    .product-card .card-img-top {
        height: 200px;
    }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media (max-width: 475px) {
    .products-section .col-md-3 {
        padding: 0 6px;
    }
    
    .product-card .card-body {
        padding: 10px;
    }

    .product-card .card-img-top {
        height: 200px;
    }
} 

/* Tablet ve mobil için menü düzenlemeleri */
@media (max-width: 991px) {
    .nav.d-none.d-md-flex {
        display: none !important;
    }
    
    .navbar-toggler.d-md-none {
        display: block !important;
    }

    .main-nav {
        padding: 8px 0;
        margin-bottom: 0;
    }
    
    .main-nav.sticky {
        padding: 8px 0;
    }

    .navbar-toggler {
        padding: 5px 0;
    }
} 

/* Tablet ve mobil için header düzenlemeleri */
@media (max-width: 991px) {
    .main-header {
        padding: 10px 0;
    }

    .header-logo {
        max-height: 80px;
    }

    .search-form {
        margin: 10px 0;
    }

    .header-icons {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .header-icons a {
        font-size: 1.5rem;
        margin-left: 15px;
    }

    .header-icons a span {
        font-size: 0.7rem;
    }
}

/* Mobil için ek header düzenlemeleri */
@media (max-width: 767px) {
    .header-logo {
        max-height: 60px;
    }

    .header-icons {
        position: absolute;
        top: 10px;
        right: 15px;
    }

    .header-icons a {
        font-size: 1.4rem;
        margin-left: 12px;
    }

    .header-icons a span {
        display: none;
    }

    .search-form .input-group {
        margin-top: 5px;
    }

    .search-form .form-control {
        height: 40px;
        font-size: 14px;
    }

    .search-form .btn {
        height: 40px;
        padding: 0 15px;
    }
} 

/* Ürün Detay Sayfası Stilleri */
.product-detail {
    background-color: #fff;
    padding: 30px 0;
}

/* Ürün Galerisi */
.product-gallery {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.product-gallery .swiper-slide {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.product-gallery .swiper-slide img {
    max-height: 100%;
    width: 100%;
    object-fit: contain;
}

.product-gallery-thumbs {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
}

.product-gallery-thumbs img {
    height: 140px;
}

.product-gallery-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.product-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.product-gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ürün Bilgileri */
.same-day-info {
    background: transparent;
    color: #444;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    border: 2px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.same-day-info i {
    color: var(--primary-purple);
    font-size: 1.2rem;
}

.same-day-info:hover {
    border-color: var(--secondary-purple);
    transform: translateY(-2px);
}

.stock-control {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.stock-status {
    color: #28a745;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: var(--primary-purple);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--secondary-purple);
}

.quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Teslimat Bölgesi Seçimi */
.delivery-region {
    margin-bottom: 20px;
}

.delivery-region-select {
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 15px;
    color: var(--text-color);
    font-weight: 500;
}

.delivery-options {
    display: none;
    margin-top: 1rem;
}

.delivery-options.active {
    display: block;
}


/* Ürün Detay Sayfası Sipariş Butonları */
.product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

.product-actions .btn {
    flex: 1;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.product-actions .btn-order {
    background: var(--primary-purple);
    color: white;
    border: none;
}

.product-actions .btn-order:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
}

.product-actions .btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
}

.product-actions .btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
        height: 45px;
        font-size: 14px;
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .product-gallery .swiper-slide {
        height: 500px;
    }

    .product-gallery-thumbs .swiper-slide img {
        height: 80px;
    }

    .order-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .product-gallery .swiper-slide {
        height: 400px;
    }

    .product-gallery-thumbs .swiper-slide img {
        height: 60px;
    }
} 

/* Galeri Kontrolleri */
.product-gallery .swiper-button-next,
.product-gallery .swiper-button-prev {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: none;
    transition: all 0.3s ease;
}

.product-gallery .swiper-button-next:hover,
.product-gallery .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 1);
}

.product-gallery .swiper-button-next:after,
.product-gallery .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.product-gallery .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.8);
    opacity: 0.5;
}

.product-gallery .swiper-pagination-bullet-active {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
} 

/* Ürün Fiyat Stilleri */
.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.discount-badge {
    background: linear-gradient(45deg, #2c031c, #7f0a5c);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(255, 71, 87, 0.3);
}

@media (max-width: 768px) {
    .current-price {
        font-size: 2rem;
    }
    
    .original-price {
        font-size: 1.2rem;
    }
    
    .discount-badge {
        font-size: 1rem;
        padding: 6px 12px;
    }
} 

/* Benzer Ürünler Responsive */
@media (max-width: 991px) {
    .similar-products .col-md-3 {
        width: 50%;
        padding: 0 8px;
    }

    .similar-products .product-card {
        margin-bottom: 16px;
    }

    .similar-products .product-card .card-img-top {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .similar-products .col-md-3 {
        padding: 0 6px;
    }

    .similar-products .product-card .card-img-top {
        height: 200px;
    }
} 

/* Ürün Tab Stilleri */
.product-tabs {
    margin-top: 50px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.product-tabs .nav-tabs {
    background: linear-gradient(to right, var(--primary-purple), var(--secondary-purple));
    border: none;
    padding: 5px;
    gap: 5px;
}

.product-tabs .nav-link {
    color: rgba(255,255,255,0.7);
    border: none;
    padding: 15px 25px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.product-tabs .nav-link:hover {
    color: white;
}

.product-tabs .nav-link.active {
    color: var(--primary-purple);
    background: white;
    font-weight: 600;
}

.product-tabs .tab-content {
    padding: 30px;
}

.product-tabs .tab-pane h4 {
    color: var(--primary-purple);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-tabs .tab-pane p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-tabs .tab-pane ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-tabs .tab-pane ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.product-tabs .tab-pane ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
}

/* Taksit Tablosu Stilleri */
.table-bordered {
    border: 1px solid rgba(0,0,0,0.1);
}

.table-bordered th {
    background: var(--primary-gray);
    color: var(--primary-purple);
    font-weight: 600;
    padding: 15px;
}

.table-bordered td {
    padding: 15px;
    color: var(--text-color);
}

/* Yorum Bölümü Stilleri */
.review-summary {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.average-rating {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-purple);
    line-height: 1;
}

.star-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.total-reviews {
    color: #666;
    font-size: 0.9rem;
}

.review-item {
    padding: 20px;
    border-radius: 10px;
    background: var(--primary-gray);
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.review-date {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0;
}

.review-text {
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .product-tabs {
        margin-top: 30px;
        border-radius: 10px;
    }

    .product-tabs .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .product-tabs .tab-content {
        padding: 20px;
    }

    .review-summary {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
} 

/* Sepet Sayfası Stilleri */
.cart-section {
    background-color: #f8f9fa;
}

.cart-items .card {
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.cart-items .card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cart-item .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item .card-text {
    font-size: 0.9rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
}

.quantity-selector button {
    padding: 0.25rem 0.5rem;
}

.price {
    font-weight: 600;
    color: #333;
}

.cart-summary {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
    background: white;
    border-radius: 10px;
}

.cart-summary .card-body {
    padding: 1.5rem;
}

.summary-item {
    font-size: 0.95rem;
}

.promo-code input {
    font-size: 0.9rem;
}

.btn-order {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border: none;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.2);
}

.btn-order:hover {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 0, 130, 0.3);
    color: white;
}

@media (max-width: 991px) {
    .cart-summary {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .cart-item .card-body {
        padding: 1rem;
    }
    
    .quantity-selector {
        margin: 1rem 0;
    }
} 

/* Ek Ürünler Stilleri */
.add-on-item {
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.add-on-item:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.add-on-content {
    padding: 10px;
    text-align: center;
}

.add-on-content img {
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.add-on-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.add-on-content p {
    margin-bottom: 5px;
}

.add-on-item .form-check {
    padding: 0;
    margin: 0;
}

.add-on-item .form-check-input {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.add-on-item .form-check-input:checked {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.add-on-item .form-check-input:checked ~ .form-check-label {
    border-color: var(--primary-purple);
}

.add-on-item .form-check-label {
    margin: 0;
    cursor: pointer;
}

@media (max-width: 768px) {
    .add-on-content img {
        height: 100px;
    }
    
    .add-on-content h6 {
        font-size: 0.9rem;
    }
    
    .add-on-content p {
        font-size: 0.8rem;
    }
} 

/* Üyelik Modal Stilleri */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.modal-header {
    padding: 0.75rem 0.75rem 0 0.75rem;
}

.modal-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.2rem;
}

.modal-title {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.btn-close {
    padding: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.login-btn, .guest-btn {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.login-btn {
    background: var(--primary-purple);
    border: none;
}

.login-btn:hover {
    background: var(--secondary-purple);
    transform: translateY(-1px);
}

.guest-btn {
    background: white;
    border: 1px solid #dee2e6;
    color: var(--text-color);
}

.guest-btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.modal-body hr {
    margin: 0.5rem 0;
    opacity: 0.1;
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-content {
        border-radius: 12px;
    }
    
    .modal-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .login-btn, .guest-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
} 

/* Sipariş Sayfası Stilleri */
.order-section {
    background-color: #f8f9fa;
}

.order-form h2 {
    color: var(--text-color);
    font-weight: 600;
}

.order-form .card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.order-form .card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.order-form .card-title {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.order-form .card-title i {
    color: var(--secondary-purple);
}

.order-form .form-label {
    font-weight: 500;
    color: #555;
}

.order-form .form-control,
.order-form .form-select {
    border: 1px solid #e0e0e0;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
}

.order-form .form-control:focus,
.order-form .form-select:focus {
    border-color: var(--secondary-purple);
    box-shadow: 0 0 0 0.2rem rgba(75, 0, 130, 0.15);
}

/* Ödeme Seçenekleri */
.nav-pills .nav-link {
    color: #666;
    border: 1px solid #e0e0e0;
    margin-right: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background-color: var(--secondary-purple);
    border-color: var(--secondary-purple);
    color: white;
}

.nav-pills .nav-link:hover:not(.active) {
    background-color: #f8f9fa;
}

/* Banka Hesapları */
.bank-account-item {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.bank-account-item:hover {
    border-color: var(--secondary-purple);
    background-color: rgba(75, 0, 130, 0.05);
}

.bank-account-item .form-check-input:checked {
    background-color: var(--secondary-purple);
    border-color: var(--secondary-purple);
}

/* Sipariş Özeti */
.cart-summary {
    position: sticky;
    top: 20px;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.cart-summary .card-title {
    color: var(--text-color);
    font-weight: 600;
}

.summary-item {
    font-size: 0.95rem;
}

.btn-order {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.2);
}

.btn-order:hover {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(75, 0, 130, 0.3);
}

/* Form Validasyon Stilleri */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .cart-summary {
        position: static;
        margin-bottom: 2rem;
    }
    
    .order-form {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .nav-pills .nav-link {
        margin-bottom: 0.5rem;
        width: 100%;
        text-align: center;
    }
    
    .bank-account-item {
        margin-bottom: 1rem;
    }
} 

/* Sözleşme ve Gizlilik Modalları - Genel Stiller */
.modal-dialog-scrollable .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modal-header {
    padding: 15px 20px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-bottom: none;
    border-radius: 15px 15px 0 0;
}

/* Modal başlık stillerini düzelt */
.modal-title-wrapper {
    text-align: center;
    width: 100%;
}

.modal-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 1.2rem;
}

.modal-title {
    color: white !important; /* Tüm ekranlarda beyaz renk */
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
    margin: 0;
}

.btn-close {
    position: absolute;
    right: 15px;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Modal içerik */
.modal-body {
    padding: 20px;
    font-size: 0.95rem;
}

.modal-body h6 {
    color: var(--primary-purple);
    font-size: 1rem;
    font-weight: 600;
    margin: 1.2rem 0 0.8rem;
    display: flex;
    align-items: center;
}

.modal-body h6:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: var(--primary-purple);
    margin-right: 8px;
    border-radius: 2px;
}

.modal-body h6:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.modal-body ul {
    padding-left: 1rem;
}

.modal-body ul li {
    margin-bottom: 0.5rem;
    color: #666;
    position: relative;
}

/* Modal footer */
.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

.modal-footer .btn-secondary {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.modal-footer .btn-secondary:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
}

/* Scroll özelleştirmesi */
.modal-body::-webkit-scrollbar {
    width: 4px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 2px;
}

/* Mobil düzenlemeler */
@media (max-width: 576px) {
    .modal-dialog-scrollable {
        margin: 0;
        height: 100%;
        max-height: 100vh;
    }
    
    .modal-dialog-scrollable .modal-content {
        border-radius: 0;
        height: 100vh;
        box-shadow: none;
    }
    
    .modal-header {
        border-radius: 0;
    }
    
    .modal-title {
        font-size: 1rem;
    }
    
    .modal-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 8px;
    }
}

/* Tablet düzenlemesi */
@media (min-width: 577px) and (max-width: 991px) {
    .modal-dialog-scrollable {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}

.modal-title-wrapper {
    text-align: center;
    width: 100%;
}

.modal-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.2rem;
}

.modal-title {
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
}

.contract-content,
.privacy-content {
    color: var(--text-color);
}

.contract-content h6,
.privacy-content h6 {
    color: var(--secondary-purple);
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.contract-content h6:first-child,
.privacy-content h6:first-child {
    margin-top: 0;
}

.contract-content p,
.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-content ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.privacy-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.modal-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 1rem;
}

.modal-footer .btn-secondary {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: var(--text-color);
}

.modal-footer .btn-secondary:hover {
    background: #e9ecef;
}

@media (max-width: 576px) {
    .modal-dialog-scrollable {
        margin: 0;
        height: 100%;
        max-height: 100vh;
    }
    
    .modal-dialog-scrollable .modal-content {
        border-radius: 0;
        height: 100vh;
        box-shadow: none;
    }
    
    /* Modal başlık */
    .modal-header {
        padding: 15px;
        background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    }
    
    .modal-title {
        color: white;
        font-size: 1rem;
        font-weight: 500;
        text-align: center;
        width: 100%;
    }
    
    .btn-close {
        position: absolute;
        right: 10px;
        padding: 8px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        opacity: 1;
    }
    
    /* Modal içerik */
    .modal-body {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .modal-body h6 {
        color: var(--primary-purple);
        font-size: 0.95rem;
        font-weight: 600;
        margin: 1.2rem 0 0.8rem;
        display: flex;
        align-items: center;
    }
    
    .modal-body h6:before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 16px;
        background: var(--primary-purple);
        margin-right: 8px;
        border-radius: 2px;
    }
    
    .modal-body p {
        color: #666;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .modal-body ul {
        padding-left: 1rem;
    }
    
    .modal-body ul li {
        margin-bottom: 0.5rem;
        color: #666;
        position: relative;
    }
    
    /* Modal footer */
    .modal-footer {
        padding: 10px 15px;
        border-top: 1px solid rgba(0,0,0,0.05);
        background: #f8f9fa;
    }
    
    .modal-footer .btn-secondary {
        width: 100%;
        background: var(--primary-purple);
        color: white;
        border: none;
        padding: 10px;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    /* Scroll özelleştirmesi */
    .modal-body::-webkit-scrollbar {
        width: 4px;
    }
    
    .modal-body::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    .modal-body::-webkit-scrollbar-thumb {
        background: var(--primary-purple);
        border-radius: 2px;
    }
    
    /* Animasyon */
    .modal.fade .modal-dialog {
        transform: translateY(100%);
        transition: transform 0.3s ease-out;
    }
    
    .modal.show .modal-dialog {
        transform: translateY(0);
    }
}

/* Tablet için orta boyut düzenlemesi */
@media (min-width: 577px) and (max-width: 991px) {
    .modal-dialog-scrollable {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    
    .modal-content {
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 15px 20px;
        background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    }
    
    .modal-title {
        color: white;
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .modal-footer .btn-secondary {
        padding: 8px 25px;
        border-radius: 20px;
    }
}

/* Kredi Kartı Stilleri */
.card-number {
    letter-spacing: 1px;
    font-family: monospace;
}

.card-type-icon {
    width: 70px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: none;
    padding: 0 12px;
    position: relative;
}

.card-logo {
    height: 25px;
    width: auto;
    transition: all 0.3s ease;
    position: absolute;
    opacity: 1;
    object-fit: contain;
}

.card-logo.d-none {
    opacity: 0;
    visibility: hidden;
}

.card-logo.visa {
    height: 20px;
    margin-top: -2px;
}

.card-logo.mastercard {
    height: 35px;
}

.cvv {
    letter-spacing: 1px;
    font-family: monospace;
    text-align: center;
}

/* Form Validasyon Stilleri için ek düzenlemeler */
.form-control:focus {
    border-color: var(--secondary-purple);
    box-shadow: 0 0 0 0.2rem rgba(75, 0, 130, 0.15);
}

.input-group .form-control:focus + .input-group-text {
    border-color: var(--secondary-purple);
}

.input-group-text {
    transition: all 0.3s ease;
} 

/* Outline Button Styles */
.btn-outline-primary {
    color: var(--primary-purple);
    border-color: var(--primary-purple);
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    color: white;
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(128, 0, 128, 0.25);
}

.btn-outline-primary:active {
    background-color: var(--secondary-purple);
    border-color: var(--secondary-purple);
    color: white;
} 

/* Sipariş Takibi Sayfası */
.order-tracking {
    background-color: #f8f9fa;
}

.order-tracking .section-title h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.order-tracking .section-title p {
    color: #666;
}

.order-tracking-form {
    background: #fff;
    border-radius: 8px;
}

.progress-track {
    margin: 2rem 0;
}

#progressbar {
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    position: relative;
}

#progressbar::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

#progressbar li {
    list-style-type: none;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

#progressbar li i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 10px auto;
}

#progressbar li span {
    font-size: 14px;
    color: #777;
    display: block;
}

#progressbar li.active i {
    background: #28a745;
}

#progressbar li.active span {
    color: #28a745;
    font-weight: 600;
}

.order-product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.delivery-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.delivery-info h5 {
    color: #333;
    margin-bottom: 1rem;
}

.delivery-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.delivery-info p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #progressbar li span {
        font-size: 12px;
    }
    
    #progressbar li i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
    
    #progressbar::before {
        top: 20px;
    }
} 

/* Sayfalama Stilleri */
.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    border: none;
    background-color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
    box-shadow: 0 4px 10px rgba(75, 0, 130, 0.2);
}

.pagination .page-item.disabled .page-link {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.pagination .page-link:focus {
    box-shadow: none;
    z-index: 0;
}

@media (max-width: 576px) {
    .pagination .page-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
} 

/* İletişim Sayfası Stilleri */
.contact-section {
    background-color: var(--light-bg);
}

.contact-info, .contact-form {
    height: 100%;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-item h5 {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    font-size: 0.9rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #e0e0e0;
    padding: 0.75rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(75, 0, 130, 0.1);
}

.contact-form .btn-primary {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border: none;
    padding: 1rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(75, 0, 130, 0.2);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-form .btn-primary {
        width: 100%;
    }
} 

/* Hakkımızda Sayfası Stilleri */
.about-section {
    background-color: var(--light-bg);
}

.about-content .section-title {
    color: var(--text-color);
    font-weight: 600;
}

.about-content .lead {
    color: var(--primary-purple);
    font-weight: 500;
}

.achievement-item {
    flex: 1;
    min-width: 150px;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.achievement-icon i {
    color: white;
    font-size: 1.5rem;
}

.achievement-item h4 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.value-card {
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    color: white;
    font-size: 1.2rem;
}

.value-card h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.team-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.team-info h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-info .social-icons a {
    color: #666;
    transition: all 0.3s ease;
}

.team-info .social-icons a:hover {
    color: var(--primary-purple);
}

@media (max-width: 768px) {
    .about-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .achievements {
        justify-content: center;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
} 

/* SSS Sayfası Stilleri */
.faq-section {
    background-color: var(--light-bg);
}

.faq-categories {
    gap: 1rem;
}

.faq-categories .nav-link {
    color: var(--text-color);
    background-color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-categories .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.faq-categories .nav-link.active {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
}

.accordion-item {
    border: none;
    background: white;
    border-radius: 8px !important;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-button {
    padding: 1.25rem;
    font-weight: 500;
    color: var(--text-color);
    background: white;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-purple);
    background: white;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234B0082'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.25rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-card {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
}

.contact-card h4 {
    font-weight: 600;
}

.contact-card .btn-outline-primary {
    color: white;
    border-color: white;
}

.contact-card .btn-outline-primary:hover {
    background: white;
    color: var(--primary-purple);
}

.contact-card .btn-primary {
    background: white;
    color: var(--primary-purple);
    border: none;
}

.contact-card .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .faq-categories .nav-link {
        white-space: nowrap;
        padding: 0.5rem 1rem;
    }

    .contact-card .d-flex {
        flex-direction: column;
    }

    .contact-card .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
} 

/* Arama Sonuçları Stilleri */
.search-filters {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.filter-label {
    color: #666;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.filter-tag {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.filter-tag:hover {
    background: #e9ecef;
}

.filter-tag .btn-close {
    font-size: 0.7rem;
    padding: 0.25rem;
}

.filter-clear {
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.filter-clear:hover {
    text-decoration: underline;
    color: var(--secondary-purple);
}

@media (max-width: 768px) {
    .search-filters {
        padding: 0.75rem;
    }
    
    .filter-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
} 

/* SEO Yazı Alanı ve Etiket Bulutu */
.content-section {
    background-color: var(--primary-gray);
}

.content-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.content-title {
    color: var(--primary-purple);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.content-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 3px;
}

.content-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.tag-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tag-title {
    color: var(--primary-purple);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.tag-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 3px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: var(--primary-gray);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .content-box, .tag-box {
        margin-bottom: 20px;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .tag-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .content-box, .tag-box {
        padding: 20px;
    }
    
    .content-text p {
        font-size: 0.95rem;
    }
    
    .tag-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
} 

/* 404 Sayfası Stilleri */
.error-section {
    background-color: var(--primary-gray);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    transition: all 0.3s ease;
}

.error-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.error-content h1 {
    color: var(--primary-purple);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.error-content h2 {
    color: var(--text-color);
    font-weight: 600;
}

.error-content .btn-outline-secondary {
    border-color: #dee2e6;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.error-content .btn-outline-secondary:hover {
    background-color: var(--text-color);
    border-color: var(--text-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-section {
        min-height: 60vh;
    }
    
    .error-content {
        padding: 2rem !important;
    }
    
    .error-content h1 {
        font-size: 4rem;
    }
    
    .error-content h2 {
        font-size: 1.5rem;
    }
    
    .error-content .lead {
        font-size: 1rem;
    }
    
    .error-content .d-flex {
        flex-direction: column;
    }
    
    .error-content .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* 404 Sayfası Stilleri */
.error-animation i {
    animation: pulse 2s infinite;
}

.error-details {
    border-left: 4px solid var(--primary-purple);
}

.error-details p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.error-details p:last-child {
    margin-bottom: 0;
}

.error-details i {
    color: var(--primary-purple);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .error-details {
        padding: 1rem !important;
    }
    
    .error-animation i {
        font-size: 4rem !important;
    }
}

/* Modern Breadcrumb Styles */
.modern-breadcrumb {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    border-radius: 0;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.modern-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
}

.modern-breadcrumb .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: #0d6efd;
}

.modern-breadcrumb .breadcrumb-item.active {
    color: #212529;
    font-weight: 600;
}

.modern-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 10px;
}

/* Modern Filter Styles */
.filter-section {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.filter-section .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-section .filter-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #212529;
}

.filter-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.price-filter {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-filter input {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 12px;
    width: 120px;
    transition: all 0.3s ease;
}

.price-filter input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.15);
}

.filter-btn {
    height: 42px;
    padding: 0 25px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.2);
}

.filter-btn:hover {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 0, 130, 0.3);
    color: white;
}

.sort-select {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 35px 8px 12px;
    appearance: none;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
    background-size: 8px 10px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.sort-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.15);
}

/* Modern Breadcrumb Stilleri */
.modern-breadcrumb {
    background: linear-gradient(45deg, var(--primary-gray), #ffffff);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

.modern-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.modern-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
}

.modern-breadcrumb .breadcrumb-item a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: var(--secondary-purple);
    transform: translateX(2px);
}

.modern-breadcrumb .breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 600;
}

.modern-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--text-color);
    font-size: 1.4rem;
    line-height: 1;
    margin: 0 10px;
    opacity: 0.5;
}

/* Modern Filtreleme Stilleri */
.filter-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.products-section {
    padding: 15px 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-filter input {
    width: 120px;
    height: 42px;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.price-filter input:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(128, 0, 128, 0.1);
    outline: none;
}

.price-filter input::placeholder {
    color: #999;
}

.filter-btn {
    height: 42px;
    padding: 0 25px;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.2);
}

.filter-btn:hover {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 0, 130, 0.3);
    color: white;
}

.filter-btn i {
    font-size: 0.9rem;
}

.sort-select {
    height: 42px;
    min-width: 200px;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 0.95rem;
    color: var(--text-color);
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.762L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.sort-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(128, 0, 128, 0.1);
    outline: none;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .filter-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .filter-group {
        flex-direction: column;
        width: 100%;
    }

    .price-filter {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .price-filter input {
        width: 100%;
        height: 42px;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
        order: 2; /* Butonu alta almak için */
        margin-top: 10px;
    }

    .sort-select {
        width: 100%;
    }

    /* Temizle butonu için düzenleme */
    .clear-filter-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    /* Input container için yeni stil */
    .input-container {
        display: flex;
        gap: 10px;
        width: 100%;
    }
}

/* Boş Kategori Stilleri */
.empty-category {
    background: #ffffff;
    border-radius: 15px;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.empty-category .empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.empty-category .empty-icon i {
    font-size: 2rem;
    color: white;
}

.empty-category h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.empty-category p {
    color: #666;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 25px;
}

.empty-category .btn-primary {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.empty-category .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 128, 0.2);
}

@media (max-width: 768px) {
    .empty-category {
        padding: 30px 15px;
    }
    
    .empty-category .empty-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .empty-category .empty-icon i {
        font-size: 1.5rem;
    }
    
    .empty-category h3 {
        font-size: 1.2rem;
    }
    
    .empty-category p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

.clear-filter-btn {
    height: 42px;
    padding: 0 25px;
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.clear-filter-btn:hover {
    background: linear-gradient(45deg, #c82333, #dc3545);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
    color: white;
}

.clear-filter-btn i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .clear-filter-btn {
        width: 100%;
        justify-content: center;

    }
}

/* Bilgi Sayfaları Stilleri */
.page-section {
    background-color: var(--primary-gray);
    min-height: calc(100vh - 300px);
}

.content-box {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.content-box:hover {
    box-shadow: 0 .8rem 1.5rem rgba(0,0,0,.1) !important;
}

.page-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content h2, 
.page-content h3, 
.page-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-purple);
    font-weight: 600;
}

.sidebar-box {
    position: sticky;
    top: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sidebar-box:hover {
    box-shadow: 0 .8rem 1.5rem rgba(0,0,0,.1) !important;
}

.bg-gradient-purple {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
}

.text-purple {
    color: var(--primary-purple) !important;
}

.sidebar-title {
    font-size: 1.1rem;
}

.sidebar-content .list-unstyled li a {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-content .list-unstyled li a:hover {
    background-color: rgba(75, 0, 130, 0.05);
    padding-left: 1.5rem;
}

.sidebar-content .list-unstyled li a.active {
    border-left: 3px solid var(--primary-purple);
    background-color: rgba(75, 0, 130, 0.05);
}

.sidebar-content .list-unstyled li a i {
    transition: all 0.3s ease;
}

.sidebar-content .list-unstyled li a:hover i {
    transform: translateX(3px);
}

/* Breadcrumb Özelleştirme */
.breadcrumb {
    padding: 0.75rem 0;
    background: transparent;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-purple);
}

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

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-size: 1.2rem;
    line-height: 1;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .page-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .content-box, .sidebar-box {
        margin-bottom: 1rem;
    }
    
    .sidebar-box {
        position: static;
    }
    
    .page-content {
        font-size: 0.95rem;
    }
}

.message-result-section {
    padding: 80px 0;
    background-color: var(--primary-gray);
}

.empty-category {
    background: #fff;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.empty-category .empty-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.empty-category .empty-icon i {
    font-size: 3rem;
    color: var(--primary-purple);
}

.empty-category h3 {
    color: var(--primary-black);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.empty-category p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.empty-category .btn {
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 25px;
    font-size: 1rem;
}

.empty-category .btn-primary {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

.empty-category .btn-primary:hover {
    background: var(--secondary-purple);
    border-color: var(--secondary-purple);
    transform: translateY(-2px);
}

.empty-category .btn-outline-primary {
    color: var(--primary-purple);
    border-color: var(--primary-purple);
    margin-left: 10px;
}

.empty-category .btn-outline-primary:hover {
    background: var(--primary-purple);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .message-result-section {
        padding: 50px 0;
    }
    
    .empty-category {
        padding: 30px 20px;
    }
    
    .empty-category .empty-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .empty-category .empty-icon i {
        font-size: 2.5rem;
    }
    
    .empty-category h3 {
        font-size: 1.25rem;
    }
    
    .empty-category p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .empty-category .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Sepet Badge Stili */
.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary-pink);
    color: white;
    border-radius: 30px;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    padding: 0 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    border: 1.5px solid #fff;
}

/* Boş Sepet Uyarısı */
.empty-cart-alert {
    background: white;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.empty-cart-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.empty-cart-icon i {
    font-size: 2rem;
    color: white;
}

.empty-cart-alert h4 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.empty-cart-alert p {
    color: #666;
    font-size: 1rem;
    margin: 0 auto 25px;
    max-width: 500px;
}

.empty-cart-alert .btn-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .empty-cart-alert {
        padding: 30px 20px;
    }
    
    .empty-cart-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .empty-cart-icon i {
        font-size: 1.5rem;
    }
    
    .empty-cart-alert h4 {
        font-size: 1.2rem;
    }
    
    .empty-cart-alert p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

/* Sipariş Detayları Mobil Düzenleme */
@media (max-width: 575.98px) {
    .order-details .row .col-sm-6 {
        text-align: left !important;
    }
    .order-details .row .col-sm-6:last-child {
        margin-top: 5px;
    }
    .order-details p {
        margin-bottom: 8px;
    }
}

/* Sipariş Detayları Mobil Düzenleme */
.order-details .row {
    margin: 0;
}

.order-details .col-6 {
    padding: 0 10px;
}

.order-details p {
    word-break: break-word;
}

@media (max-width: 575.98px) {
    .order-details .col-6:first-child {
        font-size: 14px;
    }
    .order-details .col-6:last-child {
        font-size: 14px;
        text-align: right;
    }
    .order-details p {
        margin-bottom: 8px;
    }
}

/* Sipariş Detayları Yeni Stiller */
.order-details {
    background: #fff !important;
    border: 1px solid rgba(0,0,0,0.05);
}

.order-details h5 {
    color: var(--primary-purple);
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.order-details h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 3px;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(75, 0, 130, 0.03);
}

.detail-label {
    color: #666;
    font-weight: 500;
    flex: 0 0 35%;
}

.detail-value {
    color: var(--text-color);
    font-weight: 500;
    text-align: right;
    flex: 0 0 65%;
}

.detail-item.total {
    margin-top: 10px;
    border-top: 2px dashed rgba(0,0,0,0.05);
    padding-top: 20px;
}

.detail-item.total .detail-label,
.detail-item.total .detail-value {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 575.98px) {
    .order-details {
        padding: 15px !important;
    }
    
    .detail-item {
        padding: 6px 10px;
        font-size: 14px;
    }
    
    .detail-label {
        flex: 0 0 40%;
    }
    
    .detail-value {
        flex: 0 0 60%;
    }
    
    .detail-item.total .detail-label,
    .detail-item.total .detail-value {
        font-size: 1rem;
    }
}

/* Sipariş Takibi Detay Stilleri */
.order-details, .order-tracking, .delivery-info {
    transition: all 0.3s ease;
}

.order-details:hover, .order-tracking:hover, .delivery-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.heading-line {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 3px;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(75, 0, 130, 0.03);
}

.detail-label {
    color: #666;
    font-weight: 500;
    flex: 0 0 35%;
}

.detail-value {
    color: var(--text-color);
    font-weight: 500;
    text-align: right;
    flex: 0 0 65%;
}

.detail-item.total {
    margin-top: 10px;
    border-top: 2px dashed rgba(0,0,0,0.05);
    padding-top: 20px;
}

.detail-item.total .detail-label,
.detail-item.total .detail-value {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.1rem;
}

#progressbar {
    margin: 30px 0 50px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

#progressbar:before {
    content: '';
    position: absolute;
    top: 25px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: #e9ecef;
    z-index: -1;
}

#progressbar li {
    text-align: center;
    width: 25%;
    position: relative;
}

#progressbar li i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 10px auto;
}

#progressbar li span {
    font-size: 14px;
    color: #777;
    display: block;
}

#progressbar li.active i {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    box-shadow: 0 5px 15px rgba(75, 0, 130, 0.2);
}

#progressbar li.active span {
    color: var(--primary-purple);
    font-weight: 600;
}

.order-product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.delivery-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.delivery-info h5 {
    color: #333;
    margin-bottom: 1rem;
}

.delivery-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.delivery-info p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #progressbar li span {
        font-size: 12px;
    }
    
    #progressbar li i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
    
    #progressbar::before {
        top: 20px;
    }
} 

/* Sayfalama Stilleri */
.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    border: none;
    background-color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
    box-shadow: 0 4px 10px rgba(75, 0, 130, 0.2);
}

.pagination .page-item.disabled .page-link {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.pagination .page-link:focus {
    box-shadow: none;
    z-index: 0;
}

@media (max-width: 576px) {
    .pagination .page-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
} 

/* İletişim Sayfası Stilleri */
.contact-section {
    background-color: var(--light-bg);
}

.contact-info, .contact-form {
    height: 100%;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-item h5 {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    font-size: 0.9rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #e0e0e0;
    padding: 0.75rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(75, 0, 130, 0.1);
}

.contact-form .btn-primary {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border: none;
    padding: 1rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(75, 0, 130, 0.2);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-form .btn-primary {
        width: 100%;
    }
} 

/* Hakkımızda Sayfası Stilleri */
.about-section {
    background-color: var(--light-bg);
}

.about-content .section-title {
    color: var(--text-color);
    font-weight: 600;
}

.about-content .lead {
    color: var(--primary-purple);
    font-weight: 500;
}

.achievement-item {
    flex: 1;
    min-width: 150px;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.achievement-icon i {
    color: white;
    font-size: 1.5rem;
}

.achievement-item h4 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.value-card {
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    color: white;
    font-size: 1.2rem;
}

.value-card h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.team-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.team-info h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-info .social-icons a {
    color: #666;
    transition: all 0.3s ease;
}

.team-info .social-icons a:hover {
    color: var(--primary-purple);
}

@media (max-width: 768px) {
    .about-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .achievements {
        justify-content: center;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
} 

/* SSS Sayfası Stilleri */
.faq-section {
    background-color: var(--light-bg);
}

.faq-categories {
    gap: 1rem;
}

.faq-categories .nav-link {
    color: var(--text-color);
    background-color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-categories .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.faq-categories .nav-link.active {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
}

.accordion-item {
    border: none;
    background: white;
    border-radius: 8px !important;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-button {
    padding: 1.25rem;
    font-weight: 500;
    color: var(--text-color);
    background: white;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-purple);
    background: white;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234B0082'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.25rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-card {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
}

.contact-card h4 {
    font-weight: 600;
}

.contact-card .btn-outline-primary {
    color: white;
    border-color: white;
}

.contact-card .btn-outline-primary:hover {
    background: white;
    color: var(--primary-purple);
}

.contact-card .btn-primary {
    background: white;
    color: var(--primary-purple);
    border: none;
}

.contact-card .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .faq-categories .nav-link {
        white-space: nowrap;
        padding: 0.5rem 1rem;
    }

    .contact-card .d-flex {
        flex-direction: column;
    }

    .contact-card .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
} 

/* Arama Sonuçları Stilleri */
.search-filters {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.filter-label {
    color: #666;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.filter-tag {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.filter-tag:hover {
    background: #e9ecef;
}

.filter-tag .btn-close {
    font-size: 0.7rem;
    padding: 0.25rem;
}

.filter-clear {
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.filter-clear:hover {
    text-decoration: underline;
    color: var(--secondary-purple);
}

@media (max-width: 768px) {
    .search-filters {
        padding: 0.75rem;
    }
    
    .filter-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
} 

/* SEO Yazı Alanı ve Etiket Bulutu */
.content-section {
    background-color: var(--primary-gray);
}

.content-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.content-title {
    color: var(--primary-purple);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.content-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 3px;
}

.content-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.tag-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tag-title {
    color: var(--primary-purple);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.tag-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 3px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: var(--primary-gray);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .content-box, .tag-box {
        margin-bottom: 20px;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .tag-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .content-box, .tag-box {
        padding: 20px;
    }
    
    .content-text p {
        font-size: 0.95rem;
    }
    
    .tag-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
} 

/* 404 Sayfası Stilleri */
.error-section {
    background-color: var(--primary-gray);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    transition: all 0.3s ease;
}

.error-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.error-content h1 {
    color: var(--primary-purple);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.error-content h2 {
    color: var(--text-color);
    font-weight: 600;
}

.error-content .btn-outline-secondary {
    border-color: #dee2e6;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.error-content .btn-outline-secondary:hover {
    background-color: var(--text-color);
    border-color: var(--text-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-section {
        min-height: 60vh;
    }
    
    .error-content {
        padding: 2rem !important;
    }
    
    .error-content h1 {
        font-size: 4rem;
    }
    
    .error-content h2 {
        font-size: 1.5rem;
    }
    
    .error-content .lead {
        font-size: 1rem;
    }
    
    .error-content .d-flex {
        flex-direction: column;
    }
    
    .error-content .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* 404 Sayfası Stilleri */
.error-animation i {
    animation: pulse 2s infinite;
}

.error-details {
    border-left: 4px solid var(--primary-purple);
}

.error-details p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.error-details p:last-child {
    margin-bottom: 0;
}

.error-details i {
    color: var(--primary-purple);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .error-details {
        padding: 1rem !important;
    }
    
    .error-animation i {
        font-size: 4rem !important;
    }
}

/* Modern Breadcrumb Styles */
.modern-breadcrumb {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    border-radius: 0;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.modern-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
}

.modern-breadcrumb .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: #0d6efd;
}

.modern-breadcrumb .breadcrumb-item.active {
    color: #212529;
    font-weight: 600;
}

.modern-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 10px;
}

/* Modern Filter Styles */
.filter-section {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.filter-section .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-section .filter-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #212529;
}

.filter-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.price-filter {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-filter input {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 12px;
    width: 120px;
    transition: all 0.3s ease;
}

.price-filter input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.15);
}

.filter-btn {
    height: 42px;
    padding: 0 25px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.2);
}

.filter-btn:hover {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 0, 130, 0.3);
    color: white;
}

.sort-select {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 35px 8px 12px;
    appearance: none;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
    background-size: 8px 10px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.sort-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.15);
}

/* Modern Breadcrumb Stilleri */
.modern-breadcrumb {
    background: linear-gradient(45deg, var(--primary-gray), #ffffff);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

.modern-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.modern-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
}

.modern-breadcrumb .breadcrumb-item a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: var(--secondary-purple);
    transform: translateX(2px);
}

.modern-breadcrumb .breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 600;
}

.modern-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--text-color);
    font-size: 1.4rem;
    line-height: 1;
    margin: 0 10px;
    opacity: 0.5;
}

/* Modern Filtreleme Stilleri */
.filter-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.products-section {
    padding: 15px 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-filter input {
    width: 120px;
    height: 42px;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.price-filter input:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(128, 0, 128, 0.1);
    outline: none;
}

.price-filter input::placeholder {
    color: #999;
}

.filter-btn {
    height: 42px;
    padding: 0 25px;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.2);
}

.filter-btn:hover {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 0, 130, 0.3);
    color: white;
}

.filter-btn i {
    font-size: 0.9rem;
}

.sort-select {
    height: 42px;
    min-width: 200px;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 0.95rem;
    color: var(--text-color);
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.762L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.sort-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(128, 0, 128, 0.1);
    outline: none;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .filter-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .filter-group {
        flex-direction: column;
        width: 100%;
    }

    .price-filter {
        width: 100%;
    }

    .price-filter input {
        flex: 1;
    }

    .sort-select {
        width: 100%;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Boş Kategori Stilleri */
.empty-category {
    background: #ffffff;
    border-radius: 15px;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.empty-category .empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.empty-category .empty-icon i {
    font-size: 2rem;
    color: white;
}

.empty-category h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.empty-category p {
    color: #666;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 25px;
}

.empty-category .btn-primary {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.empty-category .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 128, 0.2);
}

@media (max-width: 768px) {
    .empty-category {
        padding: 30px 15px;
    }
    
    .empty-category .empty-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .empty-category .empty-icon i {
        font-size: 1.5rem;
    }
    
    .empty-category h3 {
        font-size: 1.2rem;
    }
    
    .empty-category p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

.clear-filter-btn {
    height: 42px;
    padding: 0 25px;
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.clear-filter-btn:hover {
    background: linear-gradient(45deg, #c82333, #dc3545);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
    color: white;
}

.clear-filter-btn i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .clear-filter-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

/* Bilgi Sayfaları Stilleri */
.page-section {
    background-color: var(--primary-gray);
    min-height: calc(100vh - 300px);
}

.content-box {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.content-box:hover {
    box-shadow: 0 .8rem 1.5rem rgba(0,0,0,.1) !important;
}

.page-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content h2, 
.page-content h3, 
.page-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-purple);
    font-weight: 600;
}

.sidebar-box {
    position: sticky;
    top: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sidebar-box:hover {
    box-shadow: 0 .8rem 1.5rem rgba(0,0,0,.1) !important;
}

.bg-gradient-purple {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
}

.text-purple {
    color: var(--primary-purple) !important;
}

.sidebar-title {
    font-size: 1.1rem;
}

.sidebar-content .list-unstyled li a {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-content .list-unstyled li a:hover {
    background-color: rgba(75, 0, 130, 0.05);
    padding-left: 1.5rem;
}

.sidebar-content .list-unstyled li a.active {
    border-left: 3px solid var(--primary-purple);
    background-color: rgba(75, 0, 130, 0.05);
}

.sidebar-content .list-unstyled li a i {
    transition: all 0.3s ease;
}

.sidebar-content .list-unstyled li a:hover i {
    transform: translateX(3px);
}

/* Breadcrumb Özelleştirme */
.breadcrumb {
    padding: 0.75rem 0;
    background: transparent;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-purple);
}

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

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-size: 1.2rem;
    line-height: 1;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .page-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .content-box, .sidebar-box {
        margin-bottom: 1rem;
    }
    
    .sidebar-box {
        position: static;
    }
    
    .page-content {
        font-size: 0.95rem;
    }
}

.message-result-section {
    padding: 80px 0;
    background-color: var(--primary-gray);
}

.empty-category {
    background: #fff;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.empty-category .empty-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.empty-category .empty-icon i {
    font-size: 3rem;
    color: var(--primary-purple);
}

.empty-category h3 {
    color: var(--primary-black);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.empty-category p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.empty-category .btn {
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 25px;
    font-size: 1rem;
}

.empty-category .btn-primary {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

.empty-category .btn-primary:hover {
    background: var(--secondary-purple);
    border-color: var(--secondary-purple);
    transform: translateY(-2px);
}

.empty-category .btn-outline-primary {
    color: var(--primary-purple);
    border-color: var(--primary-purple);
    margin-left: 10px;
}

.empty-category .btn-outline-primary:hover {
    background: var(--primary-purple);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .message-result-section {
        padding: 50px 0;
    }
    
    .empty-category {
        padding: 30px 20px;
    }
    
    .empty-category .empty-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .empty-category .empty-icon i {
        font-size: 2.5rem;
    }
    
    .empty-category h3 {
        font-size: 1.25rem;
    }
    
    .empty-category p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .empty-category .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Sepet Badge Stili */
.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary-pink);
    color: white;
    border-radius: 30px;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    padding: 0 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    border: 1.5px solid #fff;
}

/* Boş Sepet Uyarısı */
.empty-cart-alert {
    background: white;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.empty-cart-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.empty-cart-icon i {
    font-size: 2rem;
    color: white;
}

.empty-cart-alert h4 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.empty-cart-alert p {
    color: #666;
    font-size: 1rem;
    margin: 0 auto 25px;
    max-width: 500px;
}

.empty-cart-alert .btn-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .empty-cart-alert {
        padding: 30px 20px;
    }
    
    .empty-cart-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .empty-cart-icon i {
        font-size: 1.5rem;
    }
    
    .empty-cart-alert h4 {
        font-size: 1.2rem;
    }
    
    .empty-cart-alert p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

/* Sipariş Detayları Mobil Düzenleme */
@media (max-width: 575.98px) {
    .order-details .row .col-sm-6 {
        text-align: left !important;
    }
    .order-details .row .col-sm-6:last-child {
        margin-top: 5px;
    }
    .order-details p {
        margin-bottom: 8px;
    }
}

/* Sipariş Detayları Mobil Düzenleme */
.order-details .row {
    margin: 0;
}

.order-details .col-6 {
    padding: 0 10px;
}

.order-details p {
    word-break: break-word;
}

@media (max-width: 575.98px) {
    .order-details .col-6:first-child {
        font-size: 14px;
    }
    .order-details .col-6:last-child {
        font-size: 14px;
        text-align: right;
    }
    .order-details p {
        margin-bottom: 8px;
    }
}

/* Sipariş Detayları Yeni Stiller */
.order-details {
    background: #fff !important;
    border: 1px solid rgba(0,0,0,0.05);
}

.order-details h5 {
    color: var(--primary-purple);
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.order-details h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 3px;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(75, 0, 130, 0.03);
}

.detail-label {
    color: #666;
    font-weight: 500;
    flex: 0 0 35%;
}

.detail-value {
    color: var(--text-color);
    font-weight: 500;
    text-align: right;
    flex: 0 0 65%;
}

.detail-item.total {
    margin-top: 10px;
    border-top: 2px dashed rgba(0,0,0,0.05);
    padding-top: 20px;
}

.detail-item.total .detail-label,
.detail-item.total .detail-value {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 575.98px) {
    .order-details {
        padding: 15px !important;
    }
    
    .detail-item {
        padding: 6px 10px;
        font-size: 14px;
    }
    
    .detail-label {
        flex: 0 0 40%;
    }
    
    .detail-value {
        flex: 0 0 60%;
    }
    
    .detail-item.total .detail-label,
    .detail-item.total .detail-value {
        font-size: 1rem;
    }
}

/* Sipariş Takibi Detay Stilleri */
.order-details, .order-tracking, .delivery-info {
    transition: all 0.3s ease;
}

.order-details:hover, .order-tracking:hover, .delivery-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.heading-line {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 3px;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(75, 0, 130, 0.03);
}

.detail-label {
    color: #666;
    font-weight: 500;
    flex: 0 0 35%;
}

.detail-value {
    color: var(--text-color);
    font-weight: 500;
    text-align: right;
    flex: 0 0 65%;
}

.detail-item.total {
    margin-top: 10px;
    border-top: 2px dashed rgba(0,0,0,0.05);
    padding-top: 20px;
}

.detail-item.total .detail-label,
.detail-item.total .detail-value {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.1rem;
}

#progressbar {
    margin: 30px 0 50px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

#progressbar:before {
    content: '';
    position: absolute;
    top: 25px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: #e9ecef;
    z-index: -1;
}

#progressbar li {
    text-align: center;
    width: 25%;
    position: relative;
}

#progressbar li i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 10px auto;
}

#progressbar li span {
    font-size: 14px;
    color: #777;
    display: block;
}

#progressbar li.active i {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    box-shadow: 0 5px 15px rgba(75, 0, 130, 0.2);
}

#progressbar li.active span {
    color: var(--primary-purple);
    font-weight: 600;
}

.order-product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.delivery-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.delivery-info h5 {
    color: #333;
    margin-bottom: 1rem;
}

.delivery-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.delivery-info p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #progressbar li span {
        font-size: 12px;
    }
    
    #progressbar li i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
    
    #progressbar::before {
        top: 20px;
    }
} 

/* Sayfalama Stilleri */
.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    border: none;
    background-color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
    box-shadow: 0 4px 10px rgba(75, 0, 130, 0.2);
}

.pagination .page-item.disabled .page-link {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.pagination .page-link:focus {
    box-shadow: none;
    z-index: 0;
}

@media (max-width: 576px) {
    .pagination .page-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
} 

/* İletişim Sayfası Stilleri */
.contact-section {
    background-color: var(--light-bg);
}

.contact-info, .contact-form {
    height: 100%;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-item h5 {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    font-size: 0.9rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #e0e0e0;
    padding: 0.75rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(75, 0, 130, 0.1);
}

.contact-form .btn-primary {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border: none;
    padding: 1rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(75, 0, 130, 0.2);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-form .btn-primary {
        width: 100%;
    }
} 

/* Hakkımızda Sayfası Stilleri */
.about-section {
    background-color: var(--light-bg);
}

.about-content .section-title {
    color: var(--text-color);
    font-weight: 600;
}

.about-content .lead {
    color: var(--primary-purple);
    font-weight: 500;
}

.achievement-item {
    flex: 1;
    min-width: 150px;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.achievement-icon i {
    color: white;
    font-size: 1.5rem;
}

.achievement-item h4 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.value-card {
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    color: white;
    font-size: 1.2rem;
}

.value-card h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.team-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.team-info h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-info .social-icons a {
    color: #666;
    transition: all 0.3s ease;
}

.team-info .social-icons a:hover {
    color: var(--primary-purple);
}

@media (max-width: 768px) {
    .about-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .achievements {
        justify-content: center;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
} 

/* SSS Sayfası Stilleri */
.faq-section {
    background-color: var(--light-bg);
}

.faq-categories {
    gap: 1rem;
}

.faq-categories .nav-link {
    color: var(--text-color);
    background-color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-categories .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.faq-categories .nav-link.active {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
}

.accordion-item {
    border: none;
    background: white;
    border-radius: 8px !important;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-button {
    padding: 1.25rem;
    font-weight: 500;
    color: var(--text-color);
    background: white;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-purple);
    background: white;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234B0082'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.25rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-card {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
}

.contact-card h4 {
    font-weight: 600;
}

.contact-card .btn-outline-primary {
    color: white;
    border-color: white;
}

.contact-card .btn-outline-primary:hover {
    background: white;
    color: var(--primary-purple);
}

.contact-card .btn-primary {
    background: white;
    color: var(--primary-purple);
    border: none;
}

.contact-card .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .faq-categories .nav-link {
        white-space: nowrap;
        padding: 0.5rem 1rem;
    }

    .contact-card .d-flex {
        flex-direction: column;
    }

    .contact-card .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
} 

/* Arama Sonuçları Stilleri */
.search-filters {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.filter-label {
    color: #666;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.filter-tag {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.filter-tag:hover {
    background: #e9ecef;
}

.filter-tag .btn-close {
    font-size: 0.7rem;
    padding: 0.25rem;
}

.filter-clear {
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.filter-clear:hover {
    text-decoration: underline;
    color: var(--secondary-purple);
}

@media (max-width: 768px) {
    .search-filters {
        padding: 0.75rem;
    }
    
    .filter-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
} 

/* SEO Yazı Alanı ve Etiket Bulutu */
.content-section {
    background-color: var(--primary-gray);
}

.content-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.content-title {
    color: var(--primary-purple);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.content-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 3px;
}

.content-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.tag-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tag-title {
    color: var(--primary-purple);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.tag-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 3px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: var(--primary-gray);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .content-box, .tag-box {
        margin-bottom: 20px;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .tag-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .content-box, .tag-box {
        padding: 20px;
    }
    
    .content-text p {
        font-size: 0.95rem;
    }
    
    .tag-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
} 

/* 404 Sayfası Stilleri */
.error-section {
    background-color: var(--primary-gray);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    transition: all 0.3s ease;
}

.error-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.error-content h1 {
    color: var(--primary-purple);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.error-content h2 {
    color: var(--text-color);
    font-weight: 600;
}

.error-content .btn-outline-secondary {
    border-color: #dee2e6;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.error-content .btn-outline-secondary:hover {
    background-color: var(--text-color);
    border-color: var(--text-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-section {
        min-height: 60vh;
    }
    
    .error-content {
        padding: 2rem !important;
    }
    
    .error-content h1 {
        font-size: 4rem;
    }
    
    .error-content h2 {
        font-size: 1.5rem;
    }
    
    .error-content .lead {
        font-size: 1rem;
    }
    
    .error-content .d-flex {
        flex-direction: column;
    }
    
    .error-content .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* 404 Sayfası Stilleri */
.error-animation i {
    animation: pulse 2s infinite;
}

.error-details {
    border-left: 4px solid var(--primary-purple);
}

.error-details p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.error-details p:last-child {
    margin-bottom: 0;
}

.error-details i {
    color: var(--primary-purple);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .error-details {
        padding: 1rem !important;
    }
    
    .error-animation i {
        font-size: 4rem !important;
    }
}

/* Modern Breadcrumb Styles */
.modern-breadcrumb {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    border-radius: 0;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.modern-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
}

.modern-breadcrumb .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: #0d6efd;
}

.modern-breadcrumb .breadcrumb-item.active {
    color: #212529;
    font-weight: 600;
}

.modern-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 10px;
}

/* Modern Filter Styles */
.filter-section {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.filter-section .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-section .filter-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #212529;
}

.filter-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.price-filter {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-filter input {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 12px;
    width: 120px;
    transition: all 0.3s ease;
}

.price-filter input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.15);
}

.filter-btn {
    height: 42px;
    padding: 0 25px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.2);
}

.filter-btn:hover {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 0, 130, 0.3);
    color: white;
}

.sort-select {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 35px 8px 12px;
    appearance: none;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
    background-size: 8px 10px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.sort-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.15);
}

/* Modern Breadcrumb Stilleri */
.modern-breadcrumb {
    background: linear-gradient(45deg, var(--primary-gray), #ffffff);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

.modern-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.modern-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
}

.modern-breadcrumb .breadcrumb-item a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: var(--secondary-purple);
    transform: translateX(2px);
}

.modern-breadcrumb .breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 600;
}

.modern-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--text-color);
    font-size: 1.4rem;
    line-height: 1;
    margin: 0 10px;
    opacity: 0.5;
}

/* Modern Filtreleme Stilleri */
.filter-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.products-section {
    padding: 15px 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-filter input {
    width: 120px;
    height: 42px;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.price-filter input:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(128, 0, 128, 0.1);
    outline: none;
}

.price-filter input::placeholder {
    color: #999;
}

.filter-btn {
    height: 42px;
    padding: 0 25px;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.2);
}

.filter-btn:hover {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 0, 130, 0.3);
    color: white;
}

.filter-btn i {
    font-size: 0.9rem;
}

.sort-select {
    height: 42px;
    min-width: 200px;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 0.95rem;
    color: var(--text-color);
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.762L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.sort-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(128, 0, 128, 0.1);
    outline: none;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .filter-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .filter-group {
        flex-direction: column;
        width: 100%;
    }

    .price-filter {
        width: 100%;
    }

    .price-filter input {
        flex: 1;
    }

    .sort-select {
        width: 100%;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Boş Kategori Stilleri */
.empty-category {
    background: #ffffff;
    border-radius: 15px;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.empty-category .empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.empty-category .empty-icon i {
    font-size: 2rem;
    color: white;
}

.empty-category h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.empty-category p {
    color: #666;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 25px;
}

.empty-category .btn-primary {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.empty-category .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 128, 0.2);
}

@media (max-width: 768px) {
    .empty-category {
        padding: 30px 15px;
    }
    
    .empty-category .empty-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .empty-category .empty-icon i {
        font-size: 1.5rem;
    }
    
    .empty-category h3 {
        font-size: 1.2rem;
    }
    
    .empty-category p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

.clear-filter-btn {
    height: 42px;
    padding: 0 25px;
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.clear-filter-btn:hover {
    background: linear-gradient(45deg, #c82333, #dc3545);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
    color: white;
}

.clear-filter-btn i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .clear-filter-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

/* Bilgi Sayfaları Stilleri */
.page-section {
    background-color: var(--primary-gray);
    min-height: calc(100vh - 300px);
}

.content-box {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.content-box:hover {
    box-shadow: 0 .8rem 1.5rem rgba(0,0,0,.1) !important;
}

.page-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content h2, 
.page-content h3, 
.page-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-purple);
    font-weight: 600;
}

.sidebar-box {
    position: sticky;
    top: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sidebar-box:hover {
    box-shadow: 0 .8rem 1.5rem rgba(0,0,0,.1) !important;
}

.bg-gradient-purple {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
}

.text-purple {
    color: var(--primary-purple) !important;
}

.sidebar-title {
    font-size: 1.1rem;
}

.sidebar-content .list-unstyled li a {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-content .list-unstyled li a:hover {
    background-color: rgba(75, 0, 130, 0.05);
    padding-left: 1.5rem;
}

.sidebar-content .list-unstyled li a.active {
    border-left: 3px solid var(--primary-purple);
    background-color: rgba(75, 0, 130, 0.05);
}

.sidebar-content .list-unstyled li a i {
    transition: all 0.3s ease;
}

.sidebar-content .list-unstyled li a:hover i {
    transform: translateX(3px);
}

/* Breadcrumb Özelleştirme */
.breadcrumb {
    padding: 0.75rem 0;
    background: transparent;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-purple);
}

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

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-size: 1.2rem;
    line-height: 1;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .page-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .content-box, .sidebar-box {
        margin-bottom: 1rem;
    }
    
    .sidebar-box {
        position: static;
    }
    
    .page-content {
        font-size: 0.95rem;
    }
}

.message-result-section {
    padding: 80px 0;
    background-color: var(--primary-gray);
}

.empty-category {
    background: #fff;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.empty-category .empty-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.empty-category .empty-icon i {
    font-size: 3rem;
    color: var(--primary-purple);
}

.empty-category h3 {
    color: var(--primary-black);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.empty-category p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.empty-category .btn {
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 25px;
    font-size: 1rem;
}

.empty-category .btn-primary {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

.empty-category .btn-primary:hover {
    background: var(--secondary-purple);
    border-color: var(--secondary-purple);
    transform: translateY(-2px);
}

.empty-category .btn-outline-primary {
    color: var(--primary-purple);
    border-color: var(--primary-purple);
    margin-left: 10px;
}

.empty-category .btn-outline-primary:hover {
    background: var(--primary-purple);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .message-result-section {
        padding: 50px 0;
    }
    
    .empty-category {
        padding: 30px 20px;
    }
    
    .empty-category .empty-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .empty-category .empty-icon i {
        font-size: 2.5rem;
    }
    
    .empty-category h3 {
        font-size: 1.25rem;
    }
    
    .empty-category p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .empty-category .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Sepet Badge Stili */
.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary-pink);
    color: white;
    border-radius: 30px;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    padding: 0 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    border: 1.5px solid #fff;
}

/* Boş Sepet Uyarısı */
.empty-cart-alert {
    background: white;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.empty-cart-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.empty-cart-icon i {
    font-size: 2rem;
    color: white;
}

.empty-cart-alert h4 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.empty-cart-alert p {
    color: #666;
    font-size: 1rem;
    margin: 0 auto 25px;
    max-width: 500px;
}

.empty-cart-alert .btn-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .empty-cart-alert {
        padding: 30px 20px;
    }
    
    .empty-cart-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .empty-cart-icon i {
        font-size: 1.5rem;
    }
    
    .empty-cart-alert h4 {
        font-size: 1.2rem;
    }
    
    .empty-cart-alert p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

/* Sipariş Detayları Mobil Düzenleme */
@media (max-width: 575.98px) {
    .order-details .row .col-sm-6 {
        text-align: left !important;
    }
    .order-details .row .col-sm-6:last-child {
        margin-top: 5px;
    }
    .order-details p {
        margin-bottom: 8px;
    }
}

/* Sipariş Detayları Mobil Düzenleme */
.order-details .row {
    margin: 0;
}

.order-details .col-6 {
    padding: 0 10px;
}

.order-details p {
    word-break: break-word;
}

@media (max-width: 575.98px) {
    .order-details .col-6:first-child {
        font-size: 14px;
    }
    .order-details .col-6:last-child {
        font-size: 14px;
        text-align: right;
    }
    .order-details p {
        margin-bottom: 8px;
    }
}

/* Sipariş Detayları Yeni Stiller */
.order-details {
    background: #fff !important;
    border: 1px solid rgba(0,0,0,0.05);
}

.order-details h5 {
    color: var(--primary-purple);
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.order-details h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 3px;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(75, 0, 130, 0.03);
}

.detail-label {
    color: #666;
    font-weight: 500;
    flex: 0 0 35%;
}

.detail-value {
    color: var(--text-color);
    font-weight: 500;
    text-align: right;
    flex: 0 0 65%;
}

.detail-item.total {
    margin-top: 10px;
    border-top: 2px dashed rgba(0,0,0,0.05);
    padding-top: 20px;
}

.detail-item.total .detail-label,
.detail-item.total .detail-value {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 575.98px) {
    .order-details {
        padding: 15px !important;
    }
    
    .detail-item {
        padding: 6px 10px;
        font-size: 14px;
    }
    
    .detail-label {
        flex: 0 0 40%;
    }
    
    .detail-value {
        flex: 0 0 60%;
    }
    
    .detail-item.total .detail-label,
    .detail-item.total .detail-value {
        font-size: 1rem;
    }
}

/* Sipariş Takibi Detay Stilleri */
.order-details, .order-tracking, .delivery-info {
    transition: all 0.3s ease;
}

.order-details:hover, .order-tracking:hover, .delivery-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.heading-line {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 3px;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(75, 0, 130, 0.03);
}

.detail-label {
    color: #666;
    font-weight: 500;
    flex: 0 0 35%;
}

.detail-value {
    color: var(--text-color);
    font-weight: 500;
    text-align: right;
    flex: 0 0 65%;
}

.detail-item.total {
    margin-top: 10px;
    border-top: 2px dashed rgba(0,0,0,0.05);
    padding-top: 20px;
}

.detail-item.total .detail-label,
.detail-item.total .detail-value {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.1rem;
}

#progressbar {
    margin: 30px 0 50px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

#progressbar:before {
    content: '';
    position: absolute;
    top: 25px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: #e9ecef;
    z-index: -1;
}

#progressbar li {
    text-align: center;
    width: 25%;
    position: relative;
}

#progressbar li i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 10px auto;
}

#progressbar li span {
    font-size: 14px;
    color: #777;
    display: block;
}

#progressbar li.active i {
    background: linear-gradient(45deg, var(--secondary-purple), var(--primary-purple));
    box-shadow: 0 5px 15px rgba(75, 0, 130, 0.2);
}

#progressbar li.active span {
    color: var(--primary-purple);
    font-weight: 600;
}

@media (max-width: 768px) {
    #progressbar li span {
        font-size: 12px;
    }
    
    #progressbar li i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
    
    #progressbar::before {
        top: 20px;
    }
    
    .detail-label {
        flex: 0 0 40%;
    }
    
    .detail-value {
        flex: 0 0 60%;
    }
}

@media (max-width: 575.98px) {
    .order-details, .order-tracking, .delivery-info {
        padding: 15px !important;
    }
    
    .detail-item {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .detail-item.total .detail-label,
    .detail-item.total .detail-value {
    font-size: 1rem;
    }
    
    #progressbar {
        margin: 20px 0 30px;
    }
    
    #progressbar li i {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
    
    #progressbar li span {
        font-size: 11px;
    }
    
    #progressbar:before {
        top: 17px;
    }
}

.product-price {
    margin: 20px 0;
}

.price-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.big-price {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    color: #333;
}

.price-details {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
}

.decimal-part {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.kdv-text {
    font-size: 10px;
    color: #666;
    margin-top: 2px;
}

.original-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .big-price {
        font-size: 40px;
    }
    
    .decimal-part {
        font-size: 12px;
    }
    
    .kdv-text {
        font-size: 8px;
    }
}

.stock-code {
    font-size: 12px;
    color: #666;
        margin-top: 5px;
    }

/* Bildirim dropdown scroll stilleri */
.notification-list.custom-scroll {
    max-height: 400px;
    overflow-y: auto;
}

.notification-list.custom-scroll::-webkit-scrollbar {
    width: 6px;
}

.notification-list.custom-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.notification-list.custom-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.notification-list.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Vitrin Ürünleri Fiyat Stili */
.product-card .product-price {
    margin: 15px 0;
    text-align: center;
    display: flex;
        flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-card .price-wrapper {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.product-card .big-price {
    font-size: 32px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.1;
}

.product-card .price-details {
    display: flex;
        flex-direction: column;
    padding-top: 5px;
}

.product-card .current-price {
    display: flex;
    align-items: left;
    gap: 7px;
}

.product-card .decimal-part {
    font-size: 13px;
    font-weight: 500;
    color: #2c3e50;
}

.product-card .kdv-text {
    font-size: 11px;
    color: #7f8c8d;
    margin-top: 2px;
}

.product-card .original-price {
    font-size: 13px;
    color: var(--primary-purple);
    text-decoration: line-through;
    margin-top: -1px;
}

@media (max-width: 768px) {
    .product-card .big-price {
        font-size: 26px;
    }
    
    .product-card .decimal-part {
        font-size: 11px;
    }
    
    .product-card .kdv-text {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .product-card .big-price {
        font-size: 23px;
        margin-right: -3px;
    }
    
    .product-card .decimal-part {
        font-size: 10px;
    }
    
    .product-card .kdv-text {
        font-size: 8px;
    }

    .product-card .original-price {
        font-size: 10px;
    }
}

.product-details .detail-box {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 10px;
}

.product-details h5 {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-details h5 i {
    color: #ff6b6b;
}

.feature-list, .care-list, .special-notes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
}

.feature-list li span:first-child {
    font-weight: 600;
    color: #666;
}

.care-list li, .special-notes li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.care-list li:before, .special-notes li:before {
    content: "•";
    color: var(--primary-purple);
    position: absolute;
    left: 8px;
    font-size: 20px;
}

.additional-info {
    color: #666;
    line-height: 1.6;
    padding: 10px 0;
}

@media (max-width: 768px) {
    .product-details .detail-box {
        padding: 15px;
    }
    
    .feature-list li {
        flex-direction: column;
        gap: 5px;
    }
    
    .feature-list li span:last-child {
    color: #666;
        font-size: 0.9em;
}
}

/* Alertlar */
.alert {
    border-radius: 0.5rem;
    border-color: var(--primary-purple);
    color:  #373737;
    background-color: #f9f0fc;
}

.alert .fas {
    color: var(--primary-purple);
}

.purple {
    color: var(--primary-purple);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 20px;
    display: none;
    z-index: 9999;
}

.cookie-consent.active {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent span {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.4;
}

.cookie-consent button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
        white-space: nowrap;
    font-size: 0.8rem;
    min-width: 100px;
}

.cookie-consent button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: row; /* Yatay hizalama */
        text-align: left; /* Yazıyı sola yasla */
        gap: 15px;
        padding: 5px;
    }
    
    .cookie-consent {
        padding: 12px 15px;
    }
    
    .cookie-consent span {
        flex: 1; /* Yazı alanı mevcut boşluğu doldursun */
        font-size: 0.7rem; /* Yazı boyutunu biraz küçült */
        font-weight: 300;
    }
    
    .cookie-consent button {
        padding: 6px 12px; /* Buton padding'ini küçült */
        font-size: 0.7rem; /* Buton yazı boyutunu küçült */
        min-width: auto; /* Minimum genişliği kaldır */
    }
}

/* Daha küçük ekranlar için ek düzenleme */
@media (max-width: 375px) {
    .cookie-content {
        gap: 10px;
    }
    
    .cookie-consent span {
        font-size: 0.65rem;
        font-weight: 300;
    }
    
    .cookie-consent button {
        padding: 5px 10px;
    }
}

/* Header Icons için mobil düzenleme */
@media (max-width: 991px) {
    .header-icons a:not([href$="/hesabim"]):not([href$="/sepet"]) {
        display: none !important;
    }
    
    .header-icons {
        position: static;
        margin-top: 0;
    }
    
    .header-icons a {
        font-size: 1.4rem;
        margin-left: 15px;
    }
    
    .header-icons a span {
        display: none;
    }
    
    .header-icons a[href$="/hesabim"],
    .header-icons a[href$="/sepet"] {
        display: inline-flex !important;
    align-items: center;
}
}

@media (max-width: 576px) {
    .header-icons a {
        font-size: 1.3rem;
        margin-left: 1px;
    }
    
}

/* Sepet Ürün Stilleri */
.cart-item .card-body {
    padding: 1rem;
}

.cart-item img {
        width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Mobil düzenlemeler */
@media (max-width: 767px) {
    .cart-item .card-body {
        padding: 12px;
    }
    
    .cart-item .row {
    display: flex;
        flex-wrap: nowrap;
        position: relative;
        margin: 0; /* Row margin'i sıfırla */
    }
    
    /* Resim kolonu */
    .cart-item .col-md-2:first-child {
        flex: 0 0 80px;
        width: 80px;
        padding-right: 12px;
    }
    
    /* Bilgi kolonu */
    .cart-item .col-md-4 {
        flex: 1;
        padding-right: 25px; /* Silme butonu için sağdan boşluk */
    }
    
    /* Adet ve fiyat kolonları */
    .cart-item .col-md-2:not(:first-child) {
    display: flex;
    align-items: center;
        padding: 0;
    }
    
    /* Ürün resmi düzenlemesi */
    .cart-item img {
    width: 80px;
    height: 80px;
        object-fit: cover;
        border-radius: 6px;
    }
    
    /* Ürün başlığı */
    .cart-item .card-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        padding-right: 20px; /* Silme butonu için alan */
    }
    
    /* Ürün detayları */
    .cart-item .card-text {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    /* Adet seçici ve fiyat container */
    .cart-item .quantity-price-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
        margin-top: 8px;
    }
    
    /* Adet seçici */
    .cart-item .quantity-selector {
    margin: 0;
}

    .cart-item .quantity-selector .form-control {
        width: 40px !important;
        padding: 2px !important;
        font-size: 0.9rem;
    }
    
    .cart-item .quantity-selector .btn {
        padding: 2px 8px;
    }
    
    /* Fiyat */
    .cart-item .price {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    color: var(--primary-purple);
}

    /* Silme butonu */
    .cart-item .btn-link {
    position: absolute;
        top: 8px;
        right: 8px;
        padding: 5px;
        color: #dc3545;
        opacity: 0.7;
    }
    
    .cart-item .btn-link:hover {
        opacity: 1;
    }
    
    /* Gereksiz kolonları gizle */
    .cart-item .col-md-2:nth-child(4),
    .cart-item .col-md-2:last-child {
        display: none;
    }
}

/* Tablet düzenlemesi */
@media (min-width: 768px) and (max-width: 991px) {
    .cart-item img {
        width: 100px;
        height: 100px;
    }
    
    .cart-item .card-title {
        font-size: 1rem;
    }
    
    .cart-item .card-text {
        font-size: 0.85rem;
    }
}

/* Sepet Ürün Kartı Temel Stilleri */
.cart-item .card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.cart-item .card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cart-item .card-body {
    padding: 20px;
}

/* Ürün Resmi Stilleri */
.cart-item .col-md-2:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item img {
        width: 100%;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f9fa;
    padding: 5px;
}

/* Ürün Bilgileri Stilleri */
.cart-item .card-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.4;
}

.cart-item .card-text {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-item .card-text i {
    color: var(--primary-purple);
        font-size: 0.9rem;
}

/* Adet Seçici Stilleri */
.cart-item .quantity-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-item .quantity-selector .btn {
    padding: 4px 12px;
    font-size: 0.9rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
}

.cart-item .quantity-selector .form-control {
    width: 45px !important;
    height: 32px;
    text-align: center;
    font-size: 0.9rem;
    padding: 2px;
    border: 1px solid #dee2e6;
}

/* Fiyat Stilleri */
.cart-item .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-purple);
    white-space: nowrap;
}

/* Silme Butonu Stilleri */
.cart-item .btn-link {
    color: #dc3545;
    padding: 5px;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.cart-item .btn-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Mobil Düzenlemeler */
@media (max-width: 767px) {
    .cart-item .card-body {
        padding: 10px;
    }
    
    .cart-item img {
        height: 90px;
        width: 90px;
    }
    
    .cart-item .card-title {
        font-size: 0.85rem;
        padding-right: 25px;
    }
    
    .cart-item .card-text {
        font-size: 0.65rem;
    }
    
    .cart-item .quantity-price-container {
    display: flex;
        align-items: center;
    justify-content: space-between;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #eee;
    }
    
    .cart-item .quantity-selector .btn {
        padding: 2px 8px;
    }
    
    .cart-item .quantity-selector .form-control {
        width: 35px !important;
        height: 28px;
        font-size: 0.85rem;
    }
    
    .cart-item .price {
        font-size: 1rem;
        margin-left: 7px;
    }
    
    .cart-item .btn-link {
    position: absolute;
        top: 1px;
        right: 1px;
        padding: 4px;
    }
}

/* Tablet Düzenlemeler */
@media (min-width: 768px) and (max-width: 991px) {
    .cart-item img {
        width: 100px;
        height: 100px;
    }
    
    .cart-item .card-title {
    font-size: 1rem;
    }
    
    .cart-item .card-text {
        font-size: 0.75rem;
    }
}

/* Sepet Ürün Kartı Stilleri */
.cart-item .card-body {
    position: relative;
    min-height: 120px;
    padding-bottom: 10px; /* Alt kısımda fiyat için boşluk */
}

.cart-item .price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

/* Mobil görünüm için */
@media (max-width: 767.98px) {
    .cart-item .price {
        position: static;
        margin-top: 10px;
    }
}

/* Sipariş sayfası sepet ürünleri mobil görünüm */
@media (max-width: 767px) {
    .order-section .card-body h6 {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .order-section .text-muted.small {
        font-size: 0.7rem !important;
    }

    .order-section .fw-bold {
        font-size: 0.9rem;
    }

    .order-section .text-muted small {
        font-size: 0.7rem !important;
    }
}
/* Sepet Ürün Resmi Düzenlemesi */
.cart-item .card-body .img-fluid {
    width: 100%;
    height: 120px;
    object-fit: cover;
    max-width: 100%;
    border-radius: 8px;
}

.cart-item .col-md-2 {
    flex: 0 0 auto;
    width: 16.666667%;
    min-width: 120px;
}