 /* Genel Stiller ve Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.3s ease;
}

a:hover {
    color: #004c99;
}

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #004c99;
}

.btn-small {
    padding: 5px 15px;
    font-size: 14px;
}

.section-title {
    text-align: center;
    margin: 30px 0;
    font-size: 28px;
    color: #333;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #0066cc;
    margin: 15px auto;
}

/* Top Bar */
.top-bar {
    background-color: #f1f2f3;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    margin-right: 15px;
    color: #666;
}

.contact-info i {
    margin-right: 5px;
}

.user-links a {
    margin-left: 15px;
    color: #666;
}

.user-links a:hover,
.contact-info a:hover {
    color: #0066cc;
}

/* Header */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo h1 {
    color: #0066cc;
    font-size: 32px;
    font-weight: 700;
}

.search-bar {
    flex: 1;
    margin: 0 20px;
}

.search-bar form {
    display: flex;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.search-bar button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.header-right {
    display: flex;
    align-items: center;
}

.favorites, .cart {
    margin-left: 20px;
}

.favorites a, .cart a {
    display: flex;
    align-items: center;
    color: #333;
    font-weight: 500;
}

.favorites i, .cart i {
    font-size: 20px;
    margin-right: 5px;
    color: #0066cc;
}

.cart-count {
    background-color: #0066cc;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

/* Main Navigation */
.main-nav {
    background-color: #0066cc;
    padding: 10px 0;
}

.categories {
    display: flex;
    align-items: center;
}

.categories li {
    position: relative;
}

.categories li a {
    color: #fff;
    padding: 10px 15px;
    display: block;
    font-weight: 500;
}

.categories li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 700px;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 20px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.category-columns {
    display: flex;
    justify-content: space-between;
}

.category-column {
    flex: 1;
    padding: 0 15px;
}

.category-column h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.category-column ul li {
    margin-bottom: 5px;
}

.category-column ul li a {
    color: #333;
    padding: 5px 0;
    font-weight: normal;
}

.category-column ul li a:hover {
    color: #0066cc;
    background-color: transparent;
}

/* Slider */
.slider {
    margin: 20px 0;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    max-width: 500px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.slide-content .btn {
    border: 2px solid #fff;
    background-color: transparent;
    transition: all 0.3s ease;
}

.slide-content .btn:hover {
    background-color: #fff;
    color: #0066cc;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #fff;
}

/* Category Boxes */
.category-boxes {
    padding: 30px 0;
}

.category-boxes .container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.category-box {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.category-box h3 {
    margin: 15px 0;
    font-size: 18px;
    color: #333;
}

.category-box .btn-small {
    margin-bottom: 15px;
}

/* Featured Products */
.featured-products {
    padding: 40px 0;
    background-color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #0066cc;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
    z-index: 5;
}

.product-thumb {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-quick-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-quick-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-quick-actions a {
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-quick-actions a:hover {
    background-color: #0066cc;
    color: #fff;
}

.product-info {
    padding: 15px;
}

.product-title {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

.product-title a {
    color: #333;
}

.product-title a:hover {
    color: #0066cc;
}

.product-price {
    margin-bottom: 10px;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #0066cc;
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
}

.rating {
    margin-bottom: 15px;
    color: #f8b739;
    font-size: 14px;
}

.rating span {
    color: #777;
    margin-left: 5px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #004c99;
}

.view-more {
    text-align: center;
    margin-top: 30px;
}

/* Campaign Banner */
.campaign-banner {
    padding: 30px 0;
}

.banner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.banner-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.banner-content p {
    margin-bottom: 15px;
    color: #666;
}

.coupon-code {
    display: inline-block;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border: 1px dashed #0066cc;
    color: #0066cc;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Best Sellers */
.best-sellers {
    padding: 40px 0;
}

/* Brands */
.brands {
    padding: 40px 0;
    background-color: #fff;
}

.brand-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.brand-item {
    flex: 1;
    text-align: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.brand-item img {
    max-height: 60px;
    max-width: 120px;
}

/* Advantages */
.advantages {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.advantages .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.advantage-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.advantage-item i {
    font-size: 40px;
    color: #0066cc;
    margin-bottom: 15px;
}

.advantage-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.advantage-item p {
    color: #666;
    font-size: 14px;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background-color: #0066cc;
    color: #fff;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
    background-color: #004c99;
}

.newsletter-form .btn:hover {
    background-color: #003366;
}

/* Footer */
.main-footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    padding: 0 15px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.footer-column h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #0066cc;
    margin-top: 10px;
}

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

.footer-column ul li a {
    color: #ccc;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #fff;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.contact-info li i {
    margin-right: 10px;
    color: #0066cc;
    font-size: 16px;
}

.social-media {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background-color: #0066cc;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.copyright {
    font-size: 14px;
    color: #999;
}

.payment-methods img {
    height: 24px;
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .main-header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .search-bar {
        order: 1;
        width: 100%;
        margin: 0 0 15px 0;
    }
    
    .header-right {
        order: 2;
        width: 100%;
        justify-content: center;
    }
    
    .category-boxes .container {
        flex-wrap: wrap;
    }
    
    .category-box {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 20px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        flex-wrap: wrap;
    }
    
    .footer-column {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .slider-container {
        height: 300px;
    }
    
    .slide img {
        height: 300px;
    }
    
    .slide-content {
        left: 20px;
        max-width: 80%;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .banner-content {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: none;
    }
    
    .advantages .container {
        flex-wrap: wrap;
    }
    
    .advantage-item {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form .btn {
        border-radius: 4px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 24px;
    }
    
    .categories {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .category-box {
        flex: 0 0 100%;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-slider {
        flex-wrap: wrap;
    }
    
    .brand-item {
        flex: 0 0 calc(33.33% - 15px);
        margin-bottom: 15px;
    }
    
    .advantage-item {
        flex: 0 0 100%;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
}

/* Animasyon ve Görsel İyileştirmeler */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Temel stillerden bazılarını değiştiriyoruz */
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Sayfa Yüklenme Animasyonu */
body {
    animation: fadeIn 0.8s ease-out;
}

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

/* Renk Gradyanları ve Daha Şık Logo */
.main-header {
    background: linear-gradient(to right, #fff, #f8f9ff);
}

.logo h1 {
    position: relative;
    display: inline-block;
    color: #0066cc;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.logo h1:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, #0066cc, #00b3e6);
    transition: width 0.3s ease;
}

.logo:hover h1:after {
    width: 100%;
}

/* Animasyonlu Butonlar */
.btn, .add-to-cart-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn:before, .add-to-cart-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover:before, .add-to-cart-btn:hover:before {
    left: 100%;
}

.btn:hover, .add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 102, 204, 0.2);
}

/* Ana Menü Hover Efektleri */
.main-nav .categories li a {
    position: relative;
    transition: color 0.3s ease;
}

.main-nav .categories li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 7px;
    left: 50%;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav .categories li a:hover:after {
    width: 70%;
}

/* Gelişmiş Slider Animasyonları */
.slide {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-content h2, .slide-content p, .slide-content .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.slide.active .slide-content h2 {
    animation: fadeUp 0.5s 0.3s forwards;
}

.slide.active .slide-content p {
    animation: fadeUp 0.5s 0.5s forwards;
}

.slide.active .slide-content .btn {
    animation: fadeUp 0.5s 0.7s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kategori Kutuları Gelişmiş Animasyonlar */
.category-box {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.category-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.category-box img {
    transition: all 0.8s ease;
}

.category-box:hover img {
    transform: scale(1.1);
}

.category-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(0,102,204,0.2), transparent);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.category-box:hover::before {
    height: 100%;
    opacity: 1;
}

.category-box h3, .category-box .btn-small {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

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

.category-box:hover .btn-small {
    background-color: #004c99;
    color: white;
    transform: translateY(-3px);
}

/* Ürün Kartları Gelişmiş Efektler */
.product-card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 14px 28px rgba(0,0,0,0.15);
    z-index: 5;
}

.product-quick-actions a {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-quick-actions a {
    transform: translateY(0);
    opacity: 1;
}

.product-quick-actions a:nth-child(1) {
    transition-delay: 0.1s;
}

.product-quick-actions a:nth-child(2) {
    transition-delay: 0.2s;
}

.product-quick-actions a:nth-child(3) {
    transition-delay: 0.3s;
}

.add-to-cart-btn {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.add-to-cart-btn:after {
    content: "\f07a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover:after {
    opacity: 1;
    right: 20px;
}

.product-title a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, #0066cc, #0066cc);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s ease;
}

.product-title a:hover {
    background-size: 100% 2px;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    background: #0066cc;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
}

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

/* Özel Rozetler */
.badge.new {
    background: linear-gradient(to right, #00b09b, #96c93d);
}

.badge.sale {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
}

.badge.hot {
    background: linear-gradient(to right, #f7971e, #ffd200);
}

/* Kampanya Banner Animasyonu */
.campaign-banner .banner {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    overflow: hidden;
}

.campaign-banner .banner img {
    transition: all 0.7s ease;
}

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

.campaign-banner .banner-content {
    transform: translateY(0);
    transition: all 0.5s ease;
}

.campaign-banner .banner:hover .banner-content {
    transform: translateY(-5px);
}

.coupon-code {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.coupon-code:hover {
    background-color: #e6f2ff;
    transform: scale(1.05);
}

.coupon-code:hover:after {
    content: 'Kopyalamak için tıkla';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #666;
    white-space: nowrap;
}

/* Avantajlar Bölümü Animasyonları */
.advantage-item {
    transform: translateY(0);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-item:hover {
    transform: translateY(-10px);
}

.advantage-item:before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0066cc, #00b3e6);
    transition: all 0.5s ease;
}

.advantage-item:hover:before {
    top: 0;
}

.advantage-item i {
    transition: all 0.5s ease;
}

.advantage-item:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #004c99;
}

/* Markalar Animasyonu */
.brand-item {
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.brand-item:hover {
    transform: scale(1.1);
    filter: grayscale(0);
    opacity: 1;
}

/* Footer İyileştirmeleri */
.main-footer {
    background: linear-gradient(to bottom, #222, #111);
}

.footer-column h3:after {
    content: '';
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #0066cc, #00b3e6);
    display: block;
    margin-top: 8px;
}

.social-media a {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.social-media a:hover {
    transform: translateY(-5px);
}

/* Sayfa Yükleme Animasyonu */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0066cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* İndirim ve Fiyat Vurgusu */
.old-price {
    position: relative;
}

.old-price:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #999;
    left: 0;
    top: 50%;
}

.price {
    position: relative;
    display: inline-block;
}

.price.discount:before {
    content: attr(data-discount);
    position: absolute;
    right: -45px;
    top: -10px;
    background-color: #ff4b2b;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
}

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

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

.scroll-to-top:hover {
    background-color: #004c99;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
