/*
Theme Name: E-Ticaret Pro
Description: Tam özellikli e-ticaret WordPress teması. Responsive tasarım, özel menüler, widget alanları ve WooCommerce uyumluluğu ile birlikte gelir.
Author: Osman Islamoglu
Version: 2.2.3
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eticarettemam
Tags: e-commerce, responsive, woocommerce, custom-menu, custom-header, custom-background
*/

/*
CSS Custom Properties for Visual Customization
WordPress tema özelleştirmesi için bu değişkenleri kullanın.

Özelleştirme Yöntemleri:
1. WordPress Özel CSS (Appearance > Customize > Additional CSS)
2. Child tema oluşturup style.css'e ekleyin
3. Özel CSS dosyası ekleyin

Örnek özelleştirmeler:
/*
:root {
    --header-bg: #000000;
    --header-text-color: #ffffff;
    --header-link-color: #ffffff;
    --header-link-hover: #ff0000;
    --logo-title-color: #ffffff;
    --logo-title-span-color: #00ff00;
}

Mavi tema Ã¶rnei:
:root {
    --header-bg: #1e3a8a;
    --header-text-color: #ffffff;
    --header-link-color: #dbeafe;
    --header-link-hover: #3b82f6;
    --logo-title-color: #ffffff;
    --logo-title-span-color: #60a5fa;
}

Beyaz tema Ã¶rnei:
:root {
    --header-bg: rgba(255, 255, 255, 0.95);
    --header-text-color: #333;
    --header-link-color: #333;
    --header-link-hover: #e74c3c;
    --logo-title-color: #e74c3c;
    --logo-title-span-color: #3498db;
}
*/

/* GÃ¶rsel zelletirme CSS Deikenleri */
:root {
    /* Renk ÅemasÄ± Deikenleri */
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --surface-0: #ffffff;
    --surface-1: #f8fbff;
    --surface-2: #eef4ff;
    --ink-strong: #0f172a;
    --ink-soft: #475569;
    --line-soft: rgba(148, 163, 184, 0.18);
    --shadow-soft: 0 18px 48px rgba(15, 23, 42, 0.08);
    --shadow-medium: 0 24px 60px rgba(15, 23, 42, 0.12);
    --radius-panel: 24px;
    --radius-pill: 999px;

    /* Font Ailesi */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Sayfa Genilii */
    --container-width: 1200px;

    /* Grid DÃ¼zeni */
    --products-per-row: 3;

    /* Sidebar Pozisyonu */
    --sidebar-position: right;

    /* Navigasyon Animasyonu */
    --nav-animation-duration: 0.8s;

    /* Dark Mode Deikenleri */
    --bg-color: #ffffff;
    --text-color: #2c3e50;
    --card-bg: #ffffff;
    --border-color: #e9ecef;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Dark Mode */
body.dark-mode {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --card-bg: #2d2d2d;
    --border-color: #404040;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Renk ÅemalarÄ± */
.color-scheme-green {
    --primary-color: #27ae60;
    --secondary-color: #2ecc71;
    --accent-color: #58d68d;
}

.color-scheme-red {
    --primary-color: #e74c3c;
    --secondary-color: #c0392b;
    --accent-color: #ec7063;
}

.color-scheme-purple {
    --primary-color: #9b59b6;
    --secondary-color: #8e44ad;
    --accent-color: #bb8fce;
}

.color-scheme-orange {
    --primary-color: #e67e22;
    --secondary-color: #d35400;
    --accent-color: #f8c471;
}

.color-scheme-teal {
    --primary-color: #16a085;
    --secondary-color: #1abc9c;
    --accent-color: #73c6b6;
}

/* Genel Tema Stilleri */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Header */
.header {
    background: var(--header-bg);
    background-image: var(--header-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--header-text-color);
    isolation: isolate;
}

.header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
}

.header .container {
    position: relative;
    z-index: 1;
}

/* Mobil gÃ¶rÃ¼nÃ¼mde header sticky'yi kaldÄ±r */
@media (max-width: 768px) {
    .header {
        position: relative;
    }
}

/* Header background image support */
.header[style*="--header-bg-image:url"] {
    backdrop-filter: none !important;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 20px;
    gap: 1.5rem;
}

.logo h1 {
    font-size: clamp(1.9rem, 2.2vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin: 0;
    cursor: default;
    user-select: none;
    line-height: 0.98;
}

.logo h1 span {
    color: var(--logo-title-span-color);
}

/* Custom Logo Styles */
.custom-logo {
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
    margin-bottom: 0.5rem;
}

.custom-logo-wrapper {
    display: inline-block;
    max-width: var(--header-logo-size, 120px);
}

.custom-logo-wrapper .custom-logo {
    max-width: 100%;
    height: auto;
}

.header .site-title-wrapper h1 {
    color: var(--header-logo-title-color, var(--logo-title-color));
}

.site-description {
    color: var(--header-site-description-color, var(--header-text-color));
}

.header-widget-area,
.header-widget-area p,
.header-widget-area .textwidget,
.header-widget-area a,
.header-widget-area span {
    color: var(--header-text-color);
}

/* Adjust title and description when logo is present */
.logo.has-logo h1 {
    font-size: 1.5rem;
}

.logo.has-logo .site-description {
    font-size: 0.8rem;
}

/* Navigasyon */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

/* Desktop iÃ§in navigasyon animasyonu - Ã§ok spesifik selector'lar */
.main-nav .desktop-menu .primary-menu a,
.main-nav .desktop-menu .primary-menu li a,
.main-nav .desktop-menu .primary-menu .menu-item a,
.main-nav .desktop-menu .primary-menu .menu-item>a,
.main-nav .primary-menu a,
.main-nav .primary-menu li a,
.main-nav .primary-menu .menu-item a,
.main-nav .primary-menu .menu-item>a,
.main-nav ul.primary-menu a,
.main-nav ul.primary-menu li a,
.main-nav ul.primary-menu .menu-item a,
.main-nav ul.primary-menu .menu-item>a,
.main-nav .menu-item a,
.main-nav .menu-item>a,
.main-nav li.menu-item a,
.main-nav li.menu-item>a {
    text-decoration: none !important;
    color: var(--header-link-color) !important;
    font-weight: 600 !important;
    font-size: 0.98rem !important;
    letter-spacing: -0.01em;
    transition: color 0.3s ease, opacity 0.3s ease !important;
    animation: navButtonMove calc(var(--nav-animation-duration) / var(--nav-animation-speed)) ease-in-out infinite var(--nav-animation-enabled) !important;
    display: inline-block !important;
    opacity: 0.9;
}

/* Desktop iÃ§in hover efekti */
.main-nav .desktop-menu .primary-menu a:hover,
.main-nav .desktop-menu .primary-menu li a:hover,
.main-nav .desktop-menu .primary-menu .menu-item a:hover,
.main-nav .desktop-menu .primary-menu .menu-item>a:hover,
.main-nav .primary-menu a:hover,
.main-nav .primary-menu li a:hover,
.main-nav .primary-menu .menu-item a:hover,
.main-nav .primary-menu .menu-item>a:hover,
.main-nav ul.primary-menu a:hover,
.main-nav ul.primary-menu li a:hover,
.main-nav ul.primary-menu .menu-item a:hover,
.main-nav ul.primary-menu .menu-item>a:hover,
.main-nav .menu-item a:hover,
.main-nav .menu-item>a:hover,
.main-nav li.menu-item a:hover,
.main-nav li.menu-item>a:hover {
    color: var(--header-link-hover) !important;
    animation-play-state: paused !important;
}

/* SÃ¼rekli hareket animasyonu - daha belirgin ve sÃ¼rekli */
@keyframes navButtonMove {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    12.5% {
        transform: translateY(-8px) rotate(0.8deg) scale(1.03);
    }

    25% {
        transform: translateY(-10px) rotate(1.5deg) scale(1.04);
    }

    37.5% {
        transform: translateY(-8px) rotate(0.8deg) scale(1.03);
    }

    50% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    62.5% {
        transform: translateY(8px) rotate(-0.8deg) scale(1.03);
    }

    75% {
        transform: translateY(10px) rotate(-1.5deg) scale(1.04);
    }

    87.5% {
        transform: translateY(8px) rotate(-0.8deg) scale(1.03);
    }
}

/* Mobil MenÃ¼ Toggle Butonu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--header-link-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    min-width: 44px;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
    color: var(--header-link-hover);
    outline: none;
}

/* Mobil Responsive TasarÄ±m */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        position: relative;
        padding: 0.4rem 12px;
    }

    .mobile-menu-toggle {
        display: block;
        order: -1;
        margin-right: auto;
        margin-left: 0;
        position: relative;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 300px;
        background: var(--header-bg);
        backdrop-filter: blur(20px);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
        padding: 60px 0 0 0;
    }

    .main-nav.mobile-menu-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav::before {
        content: none;
        display: none;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        margin-top: 0;
        list-style: none;
    }

    .main-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        list-style: none;
        margin: 0;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a,
    .mobile-menu-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.3;
        white-space: normal;
        animation: navButtonMove calc(var(--nav-animation-duration) / var(--nav-animation-speed)) ease-in-out infinite var(--nav-animation-enabled);
    }

    .main-nav a:hover,
    .mobile-menu-links a:hover {
        animation-play-state: paused;
    }

    .main-nav a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Mobil menÃ¼ aÃ§Ä±kken body scroll'unu engelle */
    body.mobile-menu-active {
        overflow: hidden;
    }

    /* Mobil menÃ¼ toggle animasyonu */
    .mobile-menu-toggle.active i {
        transform: rotate(90deg);
    }

    /* Mobil menÃ¼ backdrop */
    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Modern Butonlar */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 18px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.24);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
}

.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: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    box-shadow: none;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* rÃ¼nler BÃ¶lÃ¼mÃ¼ */
.products-section {
    padding: 5rem 0;
    background-color: #fff;
}

/* ne Ä±kan rÃ¼nler Carousel - Modern ve Hareketli TasarÄ±m */
.featured-products-carousel {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.featured-products-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.02) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(1deg);
    }

    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

.featured-products-carousel>* {
    position: relative;
    z-index: 1;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

/* rÃ¼n Carousel BÃ¶lÃ¼mÃ¼ */
.featured-products-carousel {
    padding: 5rem 0;
    background-color: #fff;
    overflow-x: clip;
}

.products-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0 60px;
    min-width: 0;
}

.products-carousel-wrapper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.products-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.product-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    min-width: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.product-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.product-card-large {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    height: 486px;
    min-height: 486px;
    max-height: 486px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(102, 126, 234, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    animation: cardEntrance 0.8s ease-out;
    min-width: 0;
}

.product-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--product-card-large-bg-color, #f5f5f5);
    background-image: var(--product-card-large-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: var(--product-card-large-bg-opacity, 1);
    z-index: 0;
    border-radius: 20px;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateX(15deg) rotateY(10deg) translateY(50px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    to {
        opacity: 1;
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px);
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.1),
            0 8px 32px rgba(102, 126, 234, 0.08),
            0 0 0 1px rgba(255, 255, 255, 0.8);
    }
}

.product-card-large:hover {
    transform: perspective(1000px) rotateX(-5deg) rotateY(5deg) translateY(-20px) scale(1.02);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.15),
        0 20px 60px rgba(102, 126, 234, 0.15),
        0 0 0 1px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.product-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-large:hover::before {
    opacity: 1;
}

.product-content-large {
    display: flex;
    height: 100%;
    align-items: stretch;
    padding: 1rem;
    gap: 1rem;
    position: relative;
    z-index: 1;
    min-width: 0;
    overflow: hidden;
}

.product-image-large {
    flex: 0 1 46%;
    max-width: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    min-height: 0;
    height: 100%;
    min-width: 0;
}

.product-image-large img,
.product-emoji-large {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-image-large .product-gallery-slider,
.product-image-large .swiper {
    width: 100%;
    height: 100%;
}

.product-image-large .swiper-wrapper,
.product-image-large .swiper-slide {
    height: 100%;
}

.product-image-large .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-large .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
}

.product-image-large .gallery-item {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image-large .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
}

.product-image-large:hover img {
    transform: scale(1.05);
}

.product-emoji-large {
    font-size: 8rem;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.1));
}

.featured-products-carousel .product-card-large.featured .product-image-large {
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 0.75rem;
}

.featured-products-carousel .product-card-large.featured .product-gallery-slider,
.featured-products-carousel .product-card-large.featured .swiper,
.featured-products-carousel .product-card-large.featured .swiper-wrapper,
.featured-products-carousel .product-card-large.featured .swiper-slide,
.featured-products-carousel .product-card-large.featured .gallery-item {
    width: 100%;
    height: 100%;
}

.featured-products-carousel .product-card-large.featured .swiper-slide img,
.featured-products-carousel .product-card-large.featured .gallery-item img,
.featured-products-carousel .product-card-large.featured .product-image-large>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 14px;
}

.product-info-large {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.45rem;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    padding-right: 0;
}

.product-title-large {
    font-size: clamp(1.2rem, 1.7vw, 1.6rem);
    font-weight: 800;
    margin-bottom: 0;
    color: #1f2a44;
    letter-spacing: -0.03em;
    line-height: 1.18;
    min-height: 2.2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.product-price-shipping-large {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 0.6rem 0.8rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid rgba(125, 211, 252, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    max-width: 100%;
}

.product-price-large {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0;
    flex-wrap: wrap;
    max-width: 100%;
    min-width: 0;
}

.current-price-large {
    font-size: clamp(1.55rem, 2.2vw, 2.1rem);
    font-weight: 800;
    color: #e74c3c;
    letter-spacing: -0.04em;
}

.old-price-large {
    font-size: clamp(0.95rem, 1.4vw, 1.2rem);
    color: #95a0bf;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.product-shipping-large {
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 0.88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    flex-shrink: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.product-shipping-large .shipping-free,
.product-shipping-large .shipping-paid {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-shipping-large .shipping-free {
    color: #1d8f4d;
}

.product-shipping-large .shipping-paid {
    color: #d97706;
}

.product-shipping-large .shipping-free i,
.product-shipping-large .shipping-paid i {
    margin-right: 0;
}

.product-stock-large {
    font-size: 0.84rem;
    font-weight: 800;
    padding: 0.48rem 0.85rem;
    border-radius: 14px;
    display: inline-block;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.product-stock-large.in-stock {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.product-stock-large.out-of-stock {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.product-description-large {
    color: var(--ink-soft);
    margin-bottom: 0;
    line-height: 1.45;
    font-size: 0.9rem;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-view-more-large {
    display: inline-block;
    color: #5166df;
    font-size: 0.9rem;
    margin-bottom: 0;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: color 0.3s ease, transform 0.3s ease;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.btn-view-more-large:hover {
    color: #5a67d8;
    transform: translateX(2px);
}

.product-actions-large {
    display: flex;
    gap: 1rem;
    margin-top: 0.45rem;
    padding-top: 0;
    min-width: 0;
}

.add-to-cart-btn-large {
    flex: 1;
    min-height: 58px;
    padding: 1rem 1.6rem;
    font-size: 1.02rem;
    font-weight: 800;
    border-radius: 18px;
    box-shadow: 0 18px 32px rgba(96, 115, 255, 0.18);
    transition: all 0.3s ease;
    min-width: 0;
    max-width: 100%;
}

.add-to-cart-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.product-info-large .product-type-large,
.product-info-large .product-type-info {
    margin-top: 0 !important;
    margin-bottom: 0;
}

/* Carousel Navigasyon ButonlarÄ± - Modern ve Hareketli */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.9));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #4f63de;
    border: 1px solid rgba(104, 123, 255, 0.18);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.32s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow:
        0 18px 36px rgba(46, 65, 130, 0.14),
        0 6px 18px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-nav-btn::before {
    content: '';
    position: absolute;
    inset: 7px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(111, 128, 255, 0.16), rgba(88, 204, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-nav-btn:hover::before {
    opacity: 1;
}

.carousel-nav-btn:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow:
        0 22px 42px rgba(65, 86, 175, 0.2),
        0 10px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    border-color: rgba(104, 123, 255, 0.3);
    color: #4658ca;
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.98);
    transition: all 0.1s ease;
}

.carousel-nav-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.24s ease;
}

.carousel-nav-btn:hover i {
    transform: scale(1.08);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Carousel Navigasyon - Mobil iÃ§in */
@media (max-width: 768px) {
    .carousel-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .carousel-nav-btn:hover {
        transform: translateY(-50%) scale(1.1) rotate(3deg);
    }
}

/* Carousel GÃ¶stergeleri - Modern ve Hareketli */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 0.8rem 1rem;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 999px;
    border: 1px solid rgba(104, 123, 255, 0.12);
    box-shadow: 0 14px 28px rgba(38, 54, 108, 0.1);
}

.indicator {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(126, 142, 196, 0.28);
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(104, 123, 255, 0.14);
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #7ec8ff 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.24s ease;
    opacity: 0;
    scale: 0.3;
}

.indicator.active {
    background: rgba(102, 126, 234, 0.18);
    transform: scale(1.08);
    box-shadow: 0 8px 18px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.28);
}

.indicator.active::before {
    opacity: 1;
    scale: 1;
}

.indicator:hover {
    background: rgba(102, 126, 234, 0.16);
    transform: scale(1.12);
    box-shadow: 0 8px 18px rgba(102, 126, 234, 0.2);
    border-color: rgba(118, 75, 162, 0.28);
}

.indicator:hover::before {
    opacity: 0.78;
    scale: 0.82;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(var(--products-per-row), 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ddd;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-price {
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    position: relative;
    overflow: hidden;
    padding: 4.25rem 0 1.25rem;
    background:
        radial-gradient(circle at top left, rgba(108, 123, 255, 0.16), transparent 24%),
        radial-gradient(circle at bottom right, rgba(93, 200, 255, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(2, 6, 23, 0.14)),
        var(--footer-bg-color, #0f1631);
    color: var(--footer-text-color, rgba(235, 241, 255, 0.92));
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(154, 173, 255, 0.35), transparent);
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.35rem;
    margin-bottom: 2.4rem;
}

.footer-widget-area,
.footer-section {
    position: relative;
    min-width: 0;
    padding: 1.45rem 1.35rem;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(154, 173, 255, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 20px 40px rgba(3, 8, 23, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.footer-widget-area::before,
.footer-section::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, #6073ff 0%, #5dc8ff 54%, #ff8ab4 100%);
    opacity: 0.85;
}

.footer h3,
.footer h4,
.footer-widget-area .widget-title,
.footer-section h3,
.footer-section h4 {
    margin: 0 0 1rem;
    color: var(--footer-text-color, #ffffff);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.footer p,
.footer li,
.footer span,
.footer .textwidget {
    color: var(--footer-text-color, rgba(223, 231, 252, 0.82));
    line-height: 1.72;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li+li {
    margin-top: 0.7rem;
}

.footer a {
    color: var(--footer-text-color, rgba(239, 244, 255, 0.94));
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.footer a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.footer .social-links a {
    width: 42px;
    height: 42px;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(154, 173, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer .social-links a:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(96, 115, 255, 0.28), rgba(93, 200, 255, 0.24));
}

.footer .contact-info li,
.footer .menu li,
.footer .widget_nav_menu li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer .contact-info i,
.footer .widget_recent_entries li::before,
.footer .widget_nav_menu li::before,
.footer .menu li::before {
    color: #8fdcff;
}

.footer .widget_recent_entries li::before,
.footer .widget_nav_menu li::before,
.footer .menu li::before {
    content: "•";
    margin-top: 0.2rem;
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem 1.2rem;
    margin-top: 0.5rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(154, 173, 255, 0.14);
    color: rgba(223, 231, 252, 0.74);
    font-size: 0.96rem;
}

.footer-bottom p {
    margin: 0;
}

.designer-credit a {
    font-weight: 700;
}

/* Sayfa BalÄ±Ä± */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.2rem;
    color: var(--page-header-title-color, white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--page-header-title-gradient, linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--page-header-title-fill, transparent);
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: brightness(1) saturate(1);
    }

    to {
        filter: brightness(1.1) saturate(1.2);
    }
}

.page-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Header Ä°statistikleri */
.header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: white;
    opacity: 0.9;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.stat .label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* rÃ¼n Arama BÃ¶lÃ¼mÃ¼ */
.product-search-section {
    margin-bottom: 2rem;
    padding: 2rem;
    background:
        radial-gradient(circle at top right, rgba(99, 102, 241, 0.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: var(--radius-panel);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line-soft);
}

.search-container {
    max-width: 920px;
    margin: 0 auto;
}

.product-search-form {
    display: flex;
    justify-content: center;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.product-search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.96);
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 20px rgba(15, 23, 42, 0.06);
}

.product-search-input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12), 0 12px 24px rgba(99, 102, 241, 0.12);
}

.search-submit-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 12px 22px rgba(102, 126, 234, 0.24);
}

.search-submit-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Arama autocomplete */
.search-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.autocomplete-results {
    padding: 0;
    margin: 0;
    list-style: none;
}

.autocomplete-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background-color: #f8f9fa;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-thumbnail {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.autocomplete-info {
    flex: 1;
}

.autocomplete-title {
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
    font-size: 14px;
}

.autocomplete-price {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 13px;
}

.autocomplete-category {
    color: #666;
    font-size: 12px;
}

.autocomplete-no-results {
    padding: 15px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.autocomplete-loading {
    padding: 15px;
    text-align: center;
    color: #666;
}

/* zel Widget'lar */
.product-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-categories-list li {
    margin-bottom: 8px;
}

.product-categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: var(--text-color);
    text-decoration: none;
}

.product-categories-list a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.category-count {
    opacity: 0.7;
    font-size: 0.9em;
}

/* Son rÃ¼nler Widget */
.recent-products-widget {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-product-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.recent-product-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.recent-product-item .product-link {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.recent-product-item .product-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-product-item .product-info {
    padding: 8px 12px;
    flex: 1;
}

.recent-product-item .product-title {
    font-size: 14px;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.recent-product-item .product-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
}

/* Ä°letiim Bilgileri Widget */
.contact-info-widget .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-widget .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.contact-info-widget .contact-item:hover {
    background-color: #f8f9fa;
}

.contact-info-widget .contact-item i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-info-widget .contact-item a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-widget .contact-item a:hover {
    color: var(--primary-color);
}

.contact-info-widget .contact-item.address span {
    color: var(--text-color);
}

/* Header Widget AlanÄ± */
.header-widget-area {
    margin-right: 2rem;
}

/* Footer Widget'lar */
.footer-widget-area {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
}

/* Mobil iÃ§in arama Ã§ubuu */
@media (max-width: 768px) {
    .footer {
        padding: 3.25rem 0 1rem;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.8rem;
    }

    .footer-widget-area,
    .footer-section {
        padding: 1.15rem 1rem;
        border-radius: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .product-search-section {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .search-input-wrapper {
        max-width: 100%;
        position: relative;
    }

    .product-search-input {
        padding: 0.8rem 2.5rem 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .search-submit-btn {
        width: 35px;
        height: 35px;
        right: 3px;
    }

    .search-autocomplete {
        position: absolute;
        left: 0;
        right: 0;
        max-height: 250px;
    }

    .header-widget-area {
        margin-right: 1rem;
    }

    .recent-product-item .product-link {
        flex-direction: column;
    }

    .recent-product-item .product-thumbnail {
        width: 100%;
        height: 120px;
    }
}

/* Touch-friendly butonlar ve mobil optimizasyonlar */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        padding: 12px 24px;
        font-size: 1rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hover efektleri ve micro-interactions */
.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    transition: all 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* Loading animasyonlarÄ± */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Sayfa geÃ§i animasyonlarÄ± */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    animation: pageEnter 0.6s ease forwards;
}

@keyframes pageEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil menÃ¼ aktif olduunda body scroll'u engelle */
body.mobile-menu-active {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Micro-interactions */
.checkbox-label input[type="checkbox"] {
    transform: scale(1);
    transition: transform 0.2s ease;
}

.checkbox-label input[type="checkbox"]:active {
    transform: scale(0.9);
}

.filter-btn {
    transform: scale(1);
    transition: all 0.2s ease;
}

.filter-btn:active {
    transform: scale(0.95);
}

/* Responsive tasarÄ±m gÃ¼ncellemeleri */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .filter-container {
        padding: 20px;
    }

    .price-inputs {
        flex-direction: column;
        gap: 10px;
    }

    .price-inputs input {
        width: 100%;
    }
}

/* rÃ¼nler SayfasÄ± */
.products-page-content {
    padding: 3rem 0;
}

.products-page-content>.container {
    width: min(1880px, calc(100vw - 24px)) !important;
    max-width: min(1880px, calc(100vw - 24px)) !important;
    padding-left: 12px;
    padding-right: 12px;
}

/* Galeri Ã¶esi hover efekti - daha az belirgin */
.gallery-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.product-card.wordpress-product .gallery-item {
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.product-card.wordpress-product .gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

@media (hover: none) and (pointer: coarse) {

    .gallery-item:hover,
    .gallery-item:hover img {
        transform: none;
        box-shadow: none;
    }

    .product-card.wordpress-product .gallery-item,
    .product-card.wordpress-product .gallery-item:hover {
        cursor: zoom-in;
        transform: none;
        box-shadow: none;
    }

    .product-card.wordpress-product:hover,
    .product-card.wordpress-product:hover .product-image img,
    .product-card.wordpress-product:hover::before {
        transform: none;
        box-shadow: none;
    }
}

.products-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.products-layout.sidebar-left {
    grid-template-columns: 300px 1fr;
}

.products-layout.sidebar-none {
    grid-template-columns: 1fr;
}

.products-layout.no-sidebar {
    grid-template-columns: 1fr;
}

.products-layout.no-sidebar,
.products-layout.sidebar-none,
.product-page-content,
.products-main-title-section {
    width: 100%;
    max-width: none;
}

.products-main {
    min-width: 0;
    width: 100%;
    max-width: none !important;
}

.products-page-content .products-layout.no-sidebar,
.products-page-content .product-page-content,
.products-page-content .products-main,
.products-page-content .products-main-title-section,
.products-page-content .product-search-section {
    width: 100% !important;
    max-width: none !important;
}

/* rÃ¼n Grid Demo */
.products-grid-demo {
    margin: 3rem 0;
}

.products-grid-demo h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

/* rÃ¼n KartlarÄ± Gelimi */
.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ddd;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.3;
}

.product-emoji {
    position: relative;
    z-index: 1;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-price {
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: none;
    min-height: 36px;
    line-height: 1.2;
}

.product-actions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.product-actions .btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.product-actions .btn i {
    margin-right: 4px;
    font-size: 0.85em;
}

.product-actions .whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #20b954 100%);
    color: white;
}

.product-actions .whatsapp-btn:hover {
    background: linear-gradient(135deg, #20b954 0%, #1da746 100%);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
}

.product-actions .btn-outline {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    border: 1px solid #dee2e6;
}

.product-actions .btn-outline:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #212529;
    border-color: #adb5bd;
}

.product-actions .order-form-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.product-actions .order-form-btn:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.25);
}

/* Kategori KartlarÄ± */
.product-categories {
    margin: 3rem 0;
}

.product-categories h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.category-card p {
    color: #666;
    margin-bottom: 1rem;
}

.category-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #2980b9;
}

/* zel Teklifler */
.special-offers {
    margin: 3rem 0;
}

.special-offers h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.offers-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.offer-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.offer-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.offer-timer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.timer {
    text-align: center;
}

.timer .time {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-bottom: 0.25rem;
}

.timer .label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Geri DÃ¶nÃ¼ Butonu */
.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

/* Bildirimler */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background-color: #27ae60;
}

.notification-error {
    background-color: #e74c3c;
}

/* Sidebar Stilleri */
.sidebar {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: #e74c3c;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .offers-banner {
        flex-direction: column;
        text-align: center;
    }

    .offer-timer {
        justify-content: center;
    }

    .back-to-top-btn {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .header-stats {
        gap: 1.5rem;
    }

    .stat .number {
        font-size: 2rem;
    }

}

/* Ana Sayfa Hero BÃ¶lÃ¼mÃ¼ */
.homepage-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
}

.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 100px;
    right: 20px;
    animation-delay: 0.5s;
}

.floating-card.card-3 {
    bottom: 120px;
    left: 20px;
    animation-delay: 1s;
}

.floating-card.card-4 {
    bottom: 50px;
    right: 50px;
    animation-delay: 1.5s;
}

.floating-card .emoji {
    font-size: 2rem;
}

.floating-card .text {
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* zellikler BÃ¶lÃ¼mÃ¼ */
.features-section {
    padding: 5rem 0;
    background-color: #fff;
    position: relative;
}

.features-section>* {
    position: relative;
    z-index: 1;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    overflow: hidden;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* BÃ¶lÃ¼m BalÄ±klarÄ± */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--section-title-color, #333);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--section-description-color, #666);
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.featured-products-empty-state {
    text-align: center;
    padding: 40px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: var(--shadow-soft);
}

.featured-products-empty-state h3 {
    margin-bottom: 0.65rem;
    color: var(--ink-strong);
}

.featured-products-empty-state p {
    color: var(--ink-soft);
}

/* Gelimi rÃ¼n KartlarÄ± */
.product-card.featured {
    position: relative;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.product-badge.badge-yeni {
    background-color: #27ae60;
}

.product-badge.badge-popÃ¼ler {
    background-color: #f39c12;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-price .current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
}

.product-price .old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #3498db;
    color: #3498db;
}

.btn-outline:hover {
    background-color: #3498db;
    color: white;
}

/* WhatsApp ButonlarÄ± */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* Sepet Ä°konu */
.cart-icon-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    animation: navButtonMove calc(var(--nav-animation-duration) / var(--nav-animation-speed)) ease-in-out infinite var(--nav-animation-enabled) !important;
}

.cart-icon-btn:hover {
    transform: scale(1.1);
    animation-play-state: paused !important;
}

.cart-icon-btn img,
.cart-icon-btn i {
    display: block;
}

.cart-icon-image {
    width: var(--header-cart-icon-size, 22px);
    height: var(--header-cart-icon-size, 22px);
    object-fit: contain;
}

.cart-icon-glyph {
    font-size: var(--header-cart-icon-size, 22px);
    color: var(--header-cart-icon-color, currentColor);
}

.mobile-toggle-image {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

/* Sepet SayacÄ± */
.cart-count {
    position: absolute;
    top: auto;
    bottom: -8px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-count.show {
    opacity: 1;
    visibility: visible;
    animation: cartCountPulse 2s ease-in-out;
}

@keyframes cartCountPulse {
    0% {
        transform: translateX(-50%) scale(0.8);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
        box-shadow: 0 0 0 5px rgba(231, 76, 60, 0);
    }

    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

/* Sepet Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.cart-modal.show {
    opacity: 1;
    visibility: visible;
}

.cart-modal .modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cart-modal.show .modal-content {
    transform: scale(1);
}

.cart-modal .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-modal .close-btn:hover {
    background: #f8f9fa;
    color: #333;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.cart-item:hover {
    background-color: #f8f9fa;
}

.cart-item-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1rem;
}

.cart-item-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.cart-item-total {
    text-align: right;
}

.cart-item-total .price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1rem;
}

.cart-item-total .remove-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    cursor: pointer;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.cart-item-total .remove-btn:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

.cart-total {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.cart-total h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cart-total .total-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cart-actions .btn {
    min-width: 150px;
    text-align: center;
}

/* Mobil Ä°Ã§in Sepet ButonlarÄ± */
@media (max-width: 480px) {
    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-actions .btn {
        width: 100%;
        padding: 1rem;
    }

    .whatsapp-btn {
        order: -1;
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    }
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Ä°ndirim Banner */
.discount-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 4rem 0;
}

.discount-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.discount-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.discount-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.discount-timer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.timer-item {
    text-align: center;
}

.timer-item .time {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.25rem;
}

.timer-item .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CanlÄ± Ä°ndirim Geri SayÄ±m Efektleri */
.timer-item .time {
    font-family: 'Courier New', Courier, monospace;
    transition: all 0.1s ease-in-out;
    position: relative;
}

.timer-item .time.countdown-flash {
    color: #2ecc71 !important;
    transform: scale(1.1);
    text-shadow:
        0 0 5px rgba(46, 204, 113, 0.5),
        0 0 10px rgba(46, 204, 113, 0.3),
        0 0 15px rgba(46, 204, 113, 0.2);
}

@keyframes countdownPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Geriye doru canlÄ± sayma efekti iÃ§in belirgin vurgu */
.timer-item .time.countdown-active {
    background: linear-gradient(45deg, #2ecc71, #27ae60) !important;
    border-radius: 5px;
    color: white !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

/* Geri sayÄ±m kutularÄ± canlÄ± efekt */
.timer-item {
    position: relative;
}

.timer-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 8px;
    opacity: 0;
    animation: timerShine 5s linear infinite;
}

.timer-item:nth-child(2)::after {
    animation-delay: 0.5s;
}

.timer-item:nth-child(3)::after {
    animation-delay: 1s;
}

.timer-item:nth-child(4)::after {
    animation-delay: 1.5s;
}

@keyframes timerShine {

    0%,
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }

    50% {
        opacity: 0.3;
        transform: translateX(100%);
    }
}

/* Aktif geri sayÄ±m vurgusu */
.timer-item .time.active {
    color: #2ecc71;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

/* Responsive GÃ¼ncellemeler */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .discount-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .timer-item .time {
        font-size: 2rem;
    }
}

/* letiim Kartlar */
.contact-cards,
.social-contact,
.contact-map {
    margin-bottom: 2rem;
}

.contact-map h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.map-embed {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    background: white;
}

.map-embed iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}

.map-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
}

.map-content {
    text-align: center;
    color: var(--contact-map-text-color, #666);
}

.map-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.map-content p {
    margin-bottom: 1rem;
}

/* Ä°letiim Formu */
.contact-form-main {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-content {
    position: relative;
    overflow: hidden;
    background-color: var(--contact-page-bg-color, #f7f9ff);
}

.contact-content.contact-content-has-bg {
    background-image: var(--contact-page-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-shell {
    display: grid;
    gap: 2rem;
}

.contact-primary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: stretch;
}

.contact-panel {
    background-color: var(--contact-panel-bg-color, rgba(255, 255, 255, 0.92));
    background-image: var(--contact-panel-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(126, 151, 255, 0.14);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 24px 50px rgba(18, 28, 68, 0.08);
}

.contact-panel-heading {
    margin-bottom: 1rem;
}

.contact-panel-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--contact-panel-kicker-color, #5261c8);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.contact-panel-heading h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    color: var(--contact-panel-title-color, #1d2948);
}

.contact-panel-description {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.75;
}

.contact-info-panel .contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    background: transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    min-width: 0;
    background: linear-gradient(180deg, rgba(247, 250, 255, 0.96) 0%, rgba(238, 244, 255, 0.92) 100%);
    border: 1px solid rgba(124, 141, 240, 0.14);
    border-radius: 22px;
    padding: 1.2rem;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.16) 0%, rgba(118, 75, 162, 0.12) 100%);
    color: #5162ca;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-details h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    color: var(--contact-card-title-color, #1d2948);
    line-height: 1.35;
}

.contact-details {
    min-width: 0;
}

.contact-details p {
    margin: 0;
    color: var(--contact-card-text-color, #58627c);
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-details a {
    color: var(--contact-card-link-color, #3753d4);
    text-decoration: none;
    font-weight: 600;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-details a:hover {
    color: var(--contact-card-link-hover-color, #243aa6);
}

.contact-support-panel {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-returns-highlight {
    background: linear-gradient(135deg, rgba(237, 242, 255, 0.98) 0%, rgba(230, 245, 255, 0.92) 100%);
    border: 1px solid rgba(110, 129, 255, 0.18);
    border-radius: 22px;
    padding: 1.25rem 1.35rem;
}

.contact-returns-highlight h3 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
}

.contact-returns-highlight p {
    margin: 0;
    line-height: 1.75;
}

.contact-process-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.contact-process-list li {
    position: relative;
    padding-left: 1.65rem;
    color: var(--contact-process-text-color, #45506a);
    line-height: 1.65;
}

.contact-process-list li::before {
    content: '';
    position: absolute;
    top: 0.68rem;
    left: 0;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #667eea 0%, #ff6b9d 100%);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
}

.contact-support-cta {
    align-self: flex-start;
}

.contact-map-panel .contact-map {
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.contact-corporate-panel {
    display: grid;
    gap: 1.2rem;
}

.contact-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-meta-card {
    background: linear-gradient(180deg, rgba(250, 251, 255, 0.98) 0%, rgba(242, 246, 255, 0.92) 100%);
    border: 1px solid rgba(122, 141, 240, 0.14);
    border-radius: 22px;
    padding: 1.2rem 1.25rem;
    min-width: 0;
}

.contact-meta-label {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--contact-corporate-label-color, var(--contact-panel-kicker-color, #5261c8));
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-meta-value {
    color: var(--contact-corporate-value-color, var(--contact-card-text-color, #58627c));
    font-weight: 600;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-payment-delivery-panel {
    display: grid;
    gap: 1.5rem;
}

.contact-payment-delivery-hero,
.contact-payment-delivery-grid,
.contact-payment-delivery-note-grid {
    display: grid;
    gap: 1rem;
}

.contact-payment-delivery-hero,
.contact-payment-delivery-grid,
.contact-payment-delivery-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-payment-delivery-copy,
.contact-payment-delivery-highlight,
.contact-payment-delivery-card,
.contact-payment-delivery-note-card {
    background: linear-gradient(180deg, rgba(250, 251, 255, 0.98) 0%, rgba(242, 246, 255, 0.92) 100%);
    border: 1px solid rgba(122, 141, 240, 0.14);
    border-radius: 24px;
    padding: 1.4rem;
}

.contact-payment-delivery-copy h2,
.contact-payment-delivery-card h3,
.contact-payment-delivery-note-card h3 {
    margin: 0 0 0.85rem;
    color: var(--contact-panel-title-color, #1d2948);
}

.contact-payment-delivery-copy p,
.contact-payment-delivery-highlight li,
.contact-payment-delivery-note-card li,
.contact-payment-delivery-note-card p,
.contact-payment-delivery-card p {
    color: var(--contact-card-text-color, #58627c);
    line-height: 1.7;
}

.contact-payment-delivery-highlight ul,
.contact-payment-delivery-note-card ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
}

.contact-payment-delivery-note-card .btn {
    margin-top: 1rem;
}

@media (max-width: 1440px) {
    .contact-info-panel .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .contact-meta-grid {
        grid-template-columns: 1fr;
    }

    .contact-payment-delivery-hero,
    .contact-payment-delivery-grid,
    .contact-payment-delivery-note-grid {
        grid-template-columns: 1fr;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background-color: #3498db;
    border-color: #3498db;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.btn-full {
    width: 100%;
}

.form-messages {
    margin-top: 1rem;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* SSS BÃ¶lÃ¼mÃ¼ */
.faq-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Responsive GÃ¼ncellemeler */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .discount-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .timer-item .time {
        font-size: 2rem;
    }

    .contact-layout,
    .contact-primary-grid,
    .contact-info-panel .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .contact-support-cta {
        width: 100%;
        justify-content: center;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .achievement-item {
        flex-direction: column;
        text-align: center;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-links {
        justify-content: center;
    }
}

/* Badge BÃ¶lÃ¼m Sistemi */
.badge-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.badge-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 20px 20px 0 0;
}

.badge-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.badge-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.badge-title i {
    font-size: 2.5rem;
    color: #e74c3c;
}

.badge-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.badge-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-badge i {
    margin-right: 0.25rem;
    font-size: 0.9em;
}

.product-badge.badge-Ã§ok-satan,
.product-badge.badge-Ã§ok-satan i {
    background-color: #e74c3c;
}

.product-badge.badge-indirimde,
.product-badge.badge-indirimde i {
    background-color: #f39c12;
}

.product-badge.badge-yeni,
.product-badge.badge-yeni i {
    background-color: #27ae60;
}

.product-badge.badge-popÃ¼ler,
.product-badge.badge-popÃ¼ler i {
    background-color: #9b59b6;
}

.btn-secondary {
    background-color: #666;
    color: white;
    border-radius: 25px;
}

.btn-secondary:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 102, 102, 0.3);
}

/* Badge BÃ¶lÃ¼mÃ¼ AnimasyonlarÄ± */
.badge-section:not(.badge-visible) {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.badge-section.badge-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Badge BÃ¶lÃ¼mÃ¼ Hover Efektleri */
.badge-section:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.badge-section:hover::before {
    height: 6px;
    transition: height 0.3s ease;
}

/* Responsive Badge BÃ¶lÃ¼mleri */
@media (max-width: 768px) {
    .badge-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .badge-title h3 {
        font-size: 1.5rem;
    }

    .badge-title i {
        font-size: 2rem;
    }

    .badge-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .badge-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .section-header h2 {
        font-size: 2rem;
    }


    .discount-text h2 {
        font-size: 2rem;
    }

    .team-stats {
        grid-template-columns: 1fr;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .badge-section {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .badge-title {
        flex-direction: column;
        gap: 0.5rem;
    }

    .badge-title h3 {
        font-size: 1.3rem;
        text-align: center;
    }

    .badge-title i {
        font-size: 1.8rem;
    }

    .badge-description {
        font-size: 0.9rem;
    }

    .badge-grid {
        grid-template-columns: 1fr;
    }
}

/* Stok durumu stilleri */
.product-stock {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-stock.in-stock {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.product-stock.low-stock {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.product-stock.out-of-stock {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Sayfa Arkaplan Resimleri Ä°Ã§in Genel Stiller */
body.has-background-image {
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Ä°Ã§erik Okunabilirlii Ä°Ã§in Overlay */
.page-header,
.features-section,
.faq-section,
.why-choose-us {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 2rem auto;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-content {
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Ana Sayfa Hero BÃ¶lÃ¼mÃ¼ */
.homepage-hero {
    background: rgba(102, 126, 234, 0.9) !important;
    backdrop-filter: blur(10px);
    border-radius: 0;
    margin: 0;
}

/* rÃ¼nler BÃ¶lÃ¼mÃ¼ */
.products-section,
.special-offers {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 2rem auto;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* letiim Kartlar */
.contact-cards,
.social-contact,
.contact-map {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Ä°letiim Formu */
.contact-form-main {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Mobil Ä°Ã§in Ayarlar */
@media (max-width: 768px) {

    .page-header,
    .features-section,
    .faq-section,
    .why-choose-us,
    .products-section,
    .special-offers {
        margin: 1rem;
        padding: 1.5rem;
        border-radius: 10px;
    }

    .contact-content {
        margin: 1rem;
        padding: 1.5rem;
        border-radius: 10px;
    }

    .contact-cards,
    .social-contact,
    .contact-map {
        margin: 1rem 0;
        padding: 1.5rem;
        border-radius: 10px;
    }
}

/* rÃ¼n Filtreleri Stilleri */
.product-filters {
    margin: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.product-filters h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-filters h4 i {
    color: #667eea;
    font-size: 1.2rem;
}

/* Fiyat AralÄ±Ä± Filtresi */
.price-range-filter {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.price-range-filter h4 {
    color: #e74c3c;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
}

.price-inputs {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.price-inputs input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.price-inputs input:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    transform: translateY(-1px);
}

.price-inputs span {
    font-weight: 600;
    color: #666;
    font-size: 1.1rem;
}

.price-inputs button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.price-inputs button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* SÄ±ralama SeÃ§enekleri */
.sorting-options {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.sorting-options h4 {
    color: #f39c12;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 0.5rem;
}

.sorting-options select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sorting-options select:focus {
    outline: none;
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
    transform: translateY(-1px);
}

/* Premium Filtreler */
.products-catalog-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
    margin: 2rem 0 0;
}

.products-catalog-sidebar {
    position: sticky;
    top: 110px;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
}

.products-catalog-sidebar::-webkit-scrollbar {
    width: 6px;
}

.products-catalog-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.products-catalog-sidebar::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.products-catalog-sidebar::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.products-catalog-results {
    min-width: 0;
    width: 100%;
    max-width: none;
    padding-left: 0.35rem;
}

.filters-shell {
    background:
        radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    margin-bottom: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.discount-text h2 {
    color: var(--discount-title-color, inherit);
}

.discount-text p {
    color: var(--discount-description-color, inherit);
}

.products-filter-toggle {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.85rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.products-filter-toggle__title {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink-strong);
    font-size: 1.04rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.products-filter-toggle__title span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.products-filter-toggle__title i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.14), rgba(244, 87, 138, 0.14));
    color: var(--products-filter-button-bg, #667eea);
    box-shadow: 0 10px 24px var(--products-filter-button-shadow-soft, rgba(102, 126, 234, 0.2));
}

.products-filter-toggle__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    width: 100%;
    margin-left: 0;
}

.products-filter-toggle__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.04));
    color: #334155;
    font-size: 0.92rem;
    font-weight: 700;
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
    text-align: center;
}

.products-filter-toggle__icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    margin-top: -4px;
}

.products-filter-toggle[aria-expanded="true"] .products-filter-toggle__icon {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.products-filter-panel {
    display: none;
    padding-top: 1.5rem;
}

.products-filter-panel.is-open {
    display: block;
}

.products-filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.products-filter-section {
    padding: 0.9rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 14px 28px rgba(148, 163, 184, 0.08);
}

.products-filter-section__title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 0.8rem;
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 800;
    flex: 1;
    min-width: 0;
}

.products-filter-section__title span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.products-filter-section__title i {
    color: var(--products-filter-button-bg, #667eea);
}

.products-filter-price-inputs {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
}

.products-filter-price-inputs input,
.products-filter-section select {
    width: 100%;
    min-height: 44px;
    padding: 0.7rem 0.9rem;
    border: 1px solid #dbe4f0;
    border-radius: 14px;
    background: #fff;
    color: #0f172a;
    font-size: 0.93rem;
    transition: all 0.25s ease;
}

.products-filter-price-inputs input:focus,
.products-filter-section select:focus {
    outline: none;
    border-color: var(--products-filter-button-bg, #667eea);
    box-shadow: 0 0 0 4px var(--products-filter-button-shadow-soft, rgba(102, 126, 234, 0.12));
}

.products-filter-separator {
    color: #64748b;
    font-weight: 700;
}

#apply-price-filter {
    min-height: 52px;
    padding: 0.9rem 1.25rem;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--products-filter-button-bg, #667eea) 0%, #8b5cf6 100%);
    color: var(--products-filter-button-text, #fff);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 32px var(--products-filter-button-shadow-soft, rgba(102, 126, 234, 0.22));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#apply-price-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px var(--products-filter-button-shadow, rgba(102, 126, 234, 0.28));
}

.category-checkboxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.category-checkboxes label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.6rem 0.65rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.9);
    font-weight: 600;
    min-width: 0;
    font-size: 0.94rem;
}

.category-checkbox-option {
    min-width: 0;
}

.category-checkbox-option--all .category-name--all {
    color: var(--category-all-products-color, #334155);
    font-weight: 700;
}

.category-checkboxes label:hover {
    background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
    transform: translateX(3px);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.07);
}

.category-checkboxes input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #27ae60;
    cursor: pointer;
    flex-shrink: 0;
}

.category-icon {
    font-size: 1.2rem;
    color: #666;
}

.category-name {
    flex: 1;
    color: #333;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    font-size: 0.95rem;
}

.category-count {
    opacity: 0.7;
    font-size: 0.85em;
    color: #666;
    font-weight: 500;
    flex-shrink: 0;
}

.products-filter-actions {
    margin-top: 1.25rem;
}

.products-catalog-results .products-grid {
    margin-top: 0;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .products-filter-panel {
        display: block !important;
        padding-top: 1.25rem;
    }

    .products-filter-toggle {
        cursor: default;
    }

    .products-catalog-layout {
        grid-template-columns: 265px minmax(0, 1fr);
        gap: 1.8rem;
    }

    .products-catalog-results {
        padding-left: 0.6rem;
    }

    .products-filter-toggle__icon {
        display: none;
    }

    .products-catalog-sidebar .products-filter-grid {
        grid-template-columns: 1fr;
    }

    .products-catalog-sidebar .products-filter-section {
        padding: 0.9rem;
    }

    .products-catalog-sidebar .products-filter-price-inputs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .products-catalog-sidebar .products-filter-separator {
        display: none;
    }

    .products-catalog-sidebar #apply-price-filter {
        width: 100%;
    }

    .products-catalog-results .products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }

    .products-catalog-results .product-card.wordpress-product {
        display: grid;
        grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
        align-items: stretch;
        min-height: 180px;
        width: 100%;
        max-width: none;
    }

    .products-catalog-results .product-card.wordpress-product:hover {
        transform: translateY(-6px);
    }

    .products-catalog-results .product-card.wordpress-product .product-image {
        height: 100%;
        min-height: 180px;
    }

    .products-catalog-results .product-card.wordpress-product .product-info {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 260px;
        grid-template-areas:
            "title side"
            "price side"
            "shipping side"
            "stock side"
            "desc side"
            "more actions";
        align-content: start;
        gap: 0.3rem 1.2rem;
        padding: 0.85rem 1.2rem;
        min-width: 0;
    }

    .products-catalog-results .product-card.wordpress-product .product-title {
        grid-area: title;
        font-size: 0.95rem;
        margin-bottom: 0.1rem;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 1.3;
    }

    .products-catalog-results .product-card.wordpress-product .product-price {
        grid-area: price;
        margin-bottom: 0.08rem;
    }

    .products-catalog-results .product-card.wordpress-product .product-price .current-price {
        font-size: 1.2rem;
    }

    .products-catalog-results .product-card.wordpress-product .product-price .old-price {
        font-size: 0.85rem;
    }

    .products-catalog-results .product-card.wordpress-product .product-description {
        grid-area: desc;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0.1rem;
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .products-catalog-results .product-card.wordpress-product .product-shipping {
        grid-area: shipping;
        margin-top: 0.1rem;
        margin-bottom: 0.05rem;
        font-size: 0.82rem;
    }

    .products-catalog-results .product-card.wordpress-product .product-stock {
        grid-area: stock;
        margin-top: 0.1rem;
        margin-bottom: 0.08rem;
        font-size: 0.82rem;
    }

    .products-catalog-results .product-card.wordpress-product .product-type-info {
        grid-area: side;
        align-self: start;
        padding: 0.6rem;
        margin-top: 0;
        margin-left: auto;
        width: 100%;
        max-width: 260px;
    }

    .products-catalog-results .product-card.wordpress-product .product-type-info__label {
        margin-bottom: 0.4rem;
        font-size: 0.8rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .products-catalog-results .product-card.wordpress-product .product-type-info__badges {
        gap: 0.3rem;
    }

    .products-catalog-results .product-card.wordpress-product .product-size-badge {
        min-height: 26px;
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }

    .products-catalog-results .product-card.wordpress-product .product-actions {
        grid-area: actions;
        margin-top: 0.15rem;
    }

    .products-catalog-results .product-card.wordpress-product .product-actions .btn {
        padding: 9px 12px;
        font-size: 0.8rem;
    }

    .products-catalog-results .product-card.wordpress-product .btn-view-more {
        grid-area: more;
        margin-bottom: 0.1rem !important;
    }
}

#apply-category-filter {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--products-filter-button-bg, #667eea) 0%, #8b5cf6 100%);
    color: var(--products-filter-button-text, #fff);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 14px 32px var(--products-filter-button-shadow-soft, rgba(102, 126, 234, 0.22));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#apply-category-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px var(--products-filter-button-shadow, rgba(102, 126, 234, 0.28));
}

#apply-category-filter i {
    font-size: 1rem;
}

/* AÃ§Ä±lÄ± Resmi Stilleri */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--splash-screen-bg, #ffffff);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: var(--splash-screen-cursor, default);
}

.splash-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    display: none;
}

.splash-image.active {
    opacity: 1;
    display: block;
}

.splash-image:not(.active) {
    opacity: 0;
}

.splash-placeholder {
    text-align: center;
    color: #666;
    font-size: 24px;
    padding: 20px;
}

.splash-placeholder i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ccc;
}

/* Ana Sayfa Slayt GÃ¶sterisi */
.homepage-slideshow {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: white;
}

.slide-text {
    max-width: 600px;
    text-align: left;
}

.slide-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out;
}

.slide-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out 0.2s both;
}

.slide-buttons {
    animation: slideInLeft 1s ease-out 0.4s both;
}

.slide-buttons .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slide-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Slayt GÃ¶sterisi Navigasyon */
.slideshow-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: white;
    transform: scale(1.1);
}

/* nceki/Sonraki ButonlarÄ± */
.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 4;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-prev {
    left: 20px;
}

.slideshow-next {
    right: 20px;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Animasyonlar */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobil iÃ§in slayt gÃ¶sterisi */
@media (max-width: 768px) {
    .homepage-slideshow {
        height: 80vh;
        min-height: 500px;
    }

    .slide-text h1 {
        font-size: 2.5rem;
    }

    .slide-text p {
        font-size: 1.1rem;
    }

    .slide-buttons .btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .slideshow-prev,
    .slideshow-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slideshow-prev {
        left: 10px;
    }

    .slideshow-next {
        right: 10px;
    }

    .slideshow-dots {
        bottom: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slide-text h1 {
        font-size: 2rem;
    }

    .slide-text p {
        font-size: 1rem;
    }

    .slide-text {
        padding: 0 1rem;
    }
}

/* rÃ¼nler SayfasÄ± Slayt GÃ¶sterisi */
.products-page-slideshow {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.products-page-slideshow .slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.products-page-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.products-page-slideshow .slide.active {
    opacity: 1;
    z-index: 2;
}

.products-page-slideshow .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.products-page-slideshow .slide-content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: white;
}

.products-page-slideshow .slide-text {
    max-width: 600px;
    text-align: left;
}

.products-page-slideshow .slide-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out;
}

.products-page-slideshow .slide-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out 0.2s both;
}

/* rÃ¼nler sayfasÄ± slayt navigasyon */
.products-page-slideshow .slideshow-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.products-page-slideshow .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.products-page-slideshow .dot.active {
    background: white;
    transform: scale(1.2);
}

.products-page-slideshow .dot:hover {
    background: white;
    transform: scale(1.1);
}

/* rÃ¼nler sayfasÄ± Ã¶nceki/sonraki butonlarÄ± */
.products-page-slideshow .slideshow-prev,
.products-page-slideshow .slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 4;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-page-slideshow .slideshow-prev {
    left: 20px;
}

.products-page-slideshow .slideshow-next {
    right: 20px;
}

.products-page-slideshow .slideshow-prev:hover,
.products-page-slideshow .slideshow-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* rÃ¼nler sayfasÄ± slayt gÃ¶sterisi mobil */
@media (max-width: 768px) {
    .products-page-slideshow {
        height: 60vh;
        min-height: 400px;
    }

    .products-page-slideshow .slide-text h1 {
        font-size: 2.2rem;
    }

    .products-page-slideshow .slide-text p {
        font-size: 1.1rem;
    }

    .products-page-slideshow .slideshow-prev,
    .products-page-slideshow .slideshow-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .products-page-slideshow .slideshow-prev {
        left: 10px;
    }

    .products-page-slideshow .slideshow-next {
        right: 10px;
    }

    .products-page-slideshow .slideshow-dots {
        bottom: 20px;
    }

    .products-page-slideshow .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .products-page-slideshow .slide-text h1 {
        font-size: 1.8rem;
    }

    .products-page-slideshow .slide-text p {
        font-size: 1rem;
    }

    .products-page-slideshow .slide-text {
        padding: 0 1rem;
    }
}

/* Sipari Formu Modal Stilleri */
.order-form-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.order-form-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.order-form-modal-content h3 {
    margin-top: 0;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.order-form-modal-content .product-info {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 4px solid #667eea;
    font-weight: 500;
}

.order-form-modal-content form {
    margin: 0;
}

.order-form-modal-content label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.85rem;
}

.order-form-modal-content input,
.order-form-modal-content textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.order-form-modal-content input:focus,
.order-form-modal-content textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.order-form-modal-content textarea {
    resize: vertical;
    min-height: 80px;
}

.order-form-modal-content .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.order-form-modal-content .btn-cancel {
    padding: 0.75rem 2rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.order-form-modal-content .btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.order-form-modal-content .btn-submit {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-form-modal-content .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.order-form-modal-content .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.order-form-modal-content .btn-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Mobil iÃ§in sipari formu */
@media (max-width: 768px) {
    .order-form-modal-overlay {
        padding: 1rem;
        align-items: flex-end !important;
    }

    .order-form-modal-content {
        padding: 1.5rem;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0;
        border-radius: 20px 20px 0 0 !important;
        max-height: 85vh !important;
    }

    .order-form-modal-content h3 {
        font-size: 1.3rem;
    }

    .order-form-modal-content .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .order-form-modal-content .btn-cancel,
    .order-form-modal-content .btn-submit {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        font-size: 1rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    /* Mobil klavye iÃ§in input optimizasyonlarÄ± */
    .order-form-modal-content input,
    .order-form-modal-content textarea {
        font-size: 16px !important;
        /* Zoom Ã¶nleme */
        padding: 0.875rem !important;
        min-height: 44px;
        touch-action: manipulation;
    }

    .order-form-modal-content textarea {
        min-height: 88px;
    }

    /* Mobil cihazlarda daha iyi scrolling */
    .order-form-modal-content {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
}


/* Kargo bilgisi stilleri */
.product-shipping {
    margin-top: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.shipping-free {
    color: #28a745;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.shipping-free i {
    font-size: 1rem;
}

.shipping-paid {
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.shipping-paid i {
    font-size: 1rem;
    color: #667eea;
}

/* TAM SAYFA AILIÅ RESMÄ° STÄ°LLERÄ° */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.splash-screen .splash-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.splash-screen .splash-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.splash-screen .splash-placeholder {
    color: #666;
    font-size: 24px;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.splash-screen .splash-placeholder i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #667eea;
    display: block;
}

.splash-screen .splash-placeholder p {
    margin: 0;
    font-weight: 500;
}

/* AÃ§Ä±lÄ± resmi animasyonlarÄ± */
@keyframes splashFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes splashSlideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes splashSlideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(100%);
    }
}

@keyframes splashZoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

/* AÃ§Ä±lÄ± resmi animasyon sÄ±nÄ±flarÄ± */
.splash-screen.fade-out {
    animation: splashFadeOut 0.5s ease-out forwards;
}

.splash-screen.slide-up {
    animation: splashSlideUp 0.5s ease-out forwards;
}

.splash-screen.slide-down {
    animation: splashSlideDown 0.5s ease-out forwards;
}

.splash-screen.zoom-out {
    animation: splashZoomOut 0.5s ease-out forwards;
}

@keyframes splashFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Mobil iÃ§in aÃ§Ä±lÄ± resmi */
@media (max-width: 768px) {
    .splash-screen .splash-image {
        max-width: 90%;
        max-height: 90%;
        border-radius: 8px;
    }

    .splash-screen .splash-placeholder {
        font-size: 20px;
        padding: 15px;
        border-radius: 10px;
    }

    .splash-screen .splash-placeholder i {
        font-size: 36px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .splash-screen .splash-image {
        max-width: 95%;
        max-height: 95%;
        border-radius: 5px;
    }

    .splash-screen .splash-placeholder {
        font-size: 18px;
        padding: 12px;
    }

    .splash-screen .splash-placeholder i {
        font-size: 30px;
        margin-bottom: 12px;
    }
}

/* AÃ§Ä±lÄ± resmi iÃ§in cursor stilleri */
.splash-screen[style*="cursor: pointer"] {
    cursor: pointer;
}

.splash-screen[style*="cursor: default"] {
    cursor: default;
}

/* rÃ¼n Detay SayfasÄ± Galeri */
.product-gallery {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.product-gallery .product-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.product-gallery .swiper {
    max-width: 400px;
}

/* rÃ¼n Sayfa Navigasyonu ve Ä°lgili rÃ¼nler */
.product-navigation {
    margin-top: 50px;
    text-align: center;
}

.related-products {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/* rÃ¼n Sayfa Mobil Responsive */
@media (max-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-title h1 {
        font-size: 2rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-large {
        min-width: auto;
    }

    .product-gallery {
        max-width: 100%;
    }
}

/* Mobil iÃ§in carousel stilleri - Modern ve Hareketli */
@media (max-width: 768px) {
    .products-carousel-container {
        padding: 0 30px;
        touch-action: pan-y pinch-zoom;
    }

    .carousel-nav-btn {
        width: 48px;
        height: 48px;
        font-size: 1.05rem;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(104, 123, 255, 0.18);
        box-shadow:
            0 10px 24px rgba(102, 126, 234, 0.18),
            0 4px 12px rgba(0, 0, 0, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }

    .carousel-nav-btn:hover {
        transform: translateY(-50%) scale(1.05);
        box-shadow:
            0 14px 28px rgba(102, 126, 234, 0.24),
            0 6px 15px rgba(0, 0, 0, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .product-content-large {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        flex-direction: column;
    }

    .product-title-large {
        font-size: 2rem;
        line-height: 1.3;
    }

    .current-price-large {
        font-size: 2rem;
    }

    .old-price-large {
        font-size: 1.5rem;
    }

    .product-card-large {
        min-height: 500px;
        border-radius: 15px;
        box-shadow:
            0 15px 50px rgba(0, 0, 0, 0.12),
            0 6px 25px rgba(102, 126, 234, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.9);
    }

    .product-card-large:hover {
        transform: perspective(1000px) rotateX(-3deg) rotateY(3deg) translateY(-15px) scale(1.01);
        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.18),
            0 15px 40px rgba(102, 126, 234, 0.18),
            0 0 0 1px rgba(102, 126, 234, 0.25);
    }

    .product-image-large {
        padding: 1rem;
    }

    .featured-products-carousel .product-card-large.featured .product-image-large {
        min-height: 480px;
        padding: 0.65rem;
    }

    .product-image-large img,
    .product-emoji-large {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 12px;
        object-fit: cover;
    }

    .product-description-large {
        font-size: 1rem;
        line-height: 1.6;
    }

    .add-to-cart-btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 10px;
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
    }

    .carousel-indicators {
        gap: 0.55rem;
        padding: 0.68rem 0.82rem;
        margin-top: 1.6rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(126, 142, 196, 0.32);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(104, 123, 255, 0.16);
    }

    .indicator.active {
        background: rgba(102, 126, 234, 0.18);
        transform: scale(1.1);
        box-shadow: 0 6px 14px rgba(102, 126, 234, 0.28);
        border-color: rgba(102, 126, 234, 0.28);
    }

    .indicator:hover {
        background: rgba(102, 126, 234, 0.16);
        transform: scale(1.08);
        box-shadow: 0 6px 14px rgba(102, 126, 234, 0.22);
    }
}

@media (max-width: 480px) {
    .footer .social-links a {
        width: 38px;
        height: 38px;
    }

    .products-carousel-container {
        padding: 0 15px;
        touch-action: pan-y pinch-zoom;
    }

    .carousel-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
        border: 1px solid rgba(104, 123, 255, 0.16);
    }

    .carousel-nav-btn:hover {
        transform: translateY(-50%) scale(1.03);
    }

    .product-content-large {
        padding: 1.5rem 1rem;
        gap: 1.2rem;
    }

    .product-title-large {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .current-price-large {
        font-size: 1.8rem;
    }

    .old-price-large {
        font-size: 1.3rem;
    }

    .product-card-large {
        min-height: 420px;
        border-radius: 12px;
        box-shadow:
            0 12px 40px rgba(0, 0, 0, 0.1),
            0 5px 20px rgba(102, 126, 234, 0.08),
            0 0 0 1px rgba(255, 255, 255, 0.9);
    }

    .product-card-large:hover {
        transform: perspective(1000px) rotateX(-2deg) rotateY(2deg) translateY(-10px) scale(1.005);
        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.15),
            0 12px 30px rgba(102, 126, 234, 0.15),
            0 0 0 1px rgba(102, 126, 234, 0.2);
    }

    .product-image-large {
        padding: 0.8rem;
    }

    .featured-products-carousel .product-card-large.featured .product-image-large {
        min-height: 360px;
        padding: 0.5rem;
    }

    .product-image-large img,
    .product-emoji-large {
        max-height: none;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
    }

    .product-description-large {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .add-to-cart-btn-large {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
    }

    .carousel-indicators {
        gap: 0.45rem;
        padding: 0.55rem 0.72rem;
        margin-top: 1.4rem;
    }

    .indicator {
        width: 9px;
        height: 9px;
        border: 1px solid rgba(104, 123, 255, 0.16);
    }

    .indicator.active {
        transform: scale(1.08);
        box-shadow: 0 5px 12px rgba(102, 126, 234, 0.26);
    }

    .indicator:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 12px rgba(102, 126, 234, 0.2);
    }

    /* Mobil Kategori Filtesi */
    .filter-container {
        padding: 15px !important;
        margin-bottom: 20px !important;
        border-radius: 10px !important;
    }

    .filter-buttons {
        gap: 8px !important;
    }

    .filter-btn {
        padding: 8px 12px !important;
        font-size: 12px !important;
        border-radius: 20px !important;
    }

    .price-range-filter {
        margin-bottom: 15px !important;
    }

    .price-range-filter input {
        font-size: 12px !important;
        padding: 6px 8px !important;
    }

    #apply-price-filter {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }

    /* Mobil rÃ¼n KartlarÄ± */
    .products-main {
        padding: 1rem !important;
        margin-top: 0.5rem !important;
        border-radius: 16px !important;
    }

    .products-grid {
        gap: 10px !important;
    }

    .product-card.wordpress-product {
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
    }

    .product-card.wordpress-product .product-image {
        height: 180px !important;
    }

    .product-card.wordpress-product .product-info {
        padding: 0.8rem !important;
    }

    .product-card.wordpress-product .product-title {
        font-size: 0.85rem !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.3 !important;
    }

    .product-card.wordpress-product .product-price {
        margin-bottom: 0.5rem !important;
        gap: 0.4rem !important;
    }

    .product-card.wordpress-product .product-price .current-price {
        font-size: 1.2rem !important;
    }

    .product-card.wordpress-product .product-price .old-price {
        font-size: 0.85rem !important;
    }

    .product-card.wordpress-product .product-stock {
        font-size: 0.65rem !important;
        padding: 0.2rem 0.5rem !important;
        margin-bottom: 0.3rem !important;
    }

    .product-card.wordpress-product .product-actions .btn {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2) !important;
    }

    .product-card.wordpress-product:hover {
        transform: translateY(-6px) scale(1.01) !important;
    }

    .product-card.wordpress-product .product-badge {
        font-size: 0.6rem !important;
        padding: 0.3rem 0.6rem !important;
    }
}

/* Touch-friendly carousel navigasyonu */
@media (hover: none) and (pointer: coarse) {
    .carousel-nav-btn {
        min-width: 48px;
        min-height: 48px;
    }

    .indicator {
        min-width: 44px;
        min-height: 44px;
        margin: 0 2px;
    }
}

/* ============================================
   RNLER SAYFASI MODERN E-TÄ°CARET STÄ°LLERÄ°
   ============================================ */

/* Modern rÃ¼n KartlarÄ± - E-Ticaret GÃ¶rÃ¼nÃ¼mÃ¼ */
.product-card.wordpress-product {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-radius: 24px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08), 0 3px 14px rgba(102, 126, 234, 0.05);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.85);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.product-card.wordpress-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}

.product-card.wordpress-product:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2), 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
}

.product-card.wordpress-product:hover::before {
    transform: scaleX(1);
}

.product-card.wordpress-product .product-image,
.product-card.wordpress-product .product-image-large {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Products page card image behavior */
.products-page-content .product-card.wordpress-product .product-image-large {
    height: auto;
    min-height: 320px;
    padding: 0.45rem;
    align-self: stretch;
}

.products-page-content .product-card.wordpress-product .product-image-large .product-gallery-slider,
.products-page-content .product-card.wordpress-product .product-image-large .swiper,
.products-page-content .product-card.wordpress-product .product-image-large .gallery-item {
    height: 100%;
}

.product-image-hint {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.product-image-hint i {
    font-size: 13px;
    color: #667eea;
}

.product-card.wordpress-product .product-image img,
.product-card.wordpress-product .product-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-page-content .product-card.wordpress-product .product-image-large img,
.products-page-content .product-card.wordpress-product .product-image-large .gallery-item img,
.products-page-content .product-card.wordpress-product .product-image-large .swiper-slide img {
    height: 100%;
    object-fit: contain;
}

.product-card.wordpress-product:hover .product-image img,
.product-card.wordpress-product:hover .product-image-large img {
    transform: scale(1.1);
}

.product-image-large,
.product-gallery {
    position: relative;
}

.product-card.wordpress-product .product-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
    gap: 0.4rem;
}

.product-card.wordpress-product .product-title {
    font-size: 1.16rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
    color: var(--ink-strong);
    line-height: 1.4;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.product-card.wordpress-product .product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card.wordpress-product:hover .product-title a {
    color: #667eea;
}

.product-card.wordpress-product .product-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-card.wordpress-product .product-price .current-price {
    color: #e74c3c;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.product-card.wordpress-product .product-price .old-price {
    color: #999;
    font-size: 1.15rem;
    text-decoration: line-through;
    font-weight: 500;
}

.product-card.wordpress-product .product-actions .btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.product-card.wordpress-product .product-actions .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-card.wordpress-product .product-actions .btn:hover::before {
    width: 400px;
    height: 400px;
}

.product-card.wordpress-product .product-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* rÃ¼nler SayfasÄ± Arka Plan */
.products-page-content {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.products-main {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
    margin-top: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.products-main-title-section {
    margin-bottom: 1.4rem;
}

/* rÃ¼n Grid Animasyonu */
.products-grid {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Badge Stilleri */
.product-card.wordpress-product .product-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
    }
}

/* Rating YÄ±ldÄ±zlarÄ± */
/* Stok Durumu */
.product-card.wordpress-product .product-stock {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 18px;
    display: inline-block;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.product-card.wordpress-product .product-stock.in-stock {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    box-shadow: 0 2px 10px rgba(21, 87, 36, 0.2);
}

.product-card.wordpress-product .product-stock.out-of-stock {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    box-shadow: 0 2px 10px rgba(114, 28, 36, 0.2);
}

/* Urun olcu bilgisi */
.product-card.wordpress-product .product-type-large,
.product-card.wordpress-product .product-type-info {
    margin-top: 0.65rem !important;
    margin-bottom: 0.85rem;
}

.product-card.wordpress-product .product-type-large .product-type-info,
.product-card.wordpress-product .product-type-info .product-type-info {
    margin: 0;
}

.product-card.wordpress-product .product-type-info {
    padding: 0.8rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(92, 118, 255, 0.08), rgba(17, 183, 216, 0.08));
    border: 1px solid rgba(92, 118, 255, 0.14);
    box-shadow: 0 12px 24px rgba(61, 87, 180, 0.07);
}

.product-card.wordpress-product .product-type-info__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #33406d;
}

.product-card.wordpress-product .product-type-info__label i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(92, 118, 255, 0.14);
    color: #4b5fd6;
    margin-right: 0;
}

.product-card.wordpress-product .product-type-info__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-card.wordpress-product .product-size-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(92, 118, 255, 0.12);
    box-shadow: 0 8px 18px rgba(42, 59, 114, 0.05);
    color: #41507f;
    font-size: 0.78rem;
    line-height: 1.3;
}

.product-info-large .product-type-large,
.product-info-large .product-type-info {
    margin-top: 0.1rem !important;
    margin-bottom: 0.35rem;
}

.product-info-large .product-type-large .product-type-info,
.product-info-large .product-type-info .product-type-info {
    margin: 0;
}

.product-info-large .product-type-info {
    padding: 0.72rem 0.8rem;
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.6), transparent 28%),
        linear-gradient(135deg, rgba(92, 118, 255, 0.09), rgba(17, 183, 216, 0.12));
    border: 1px solid rgba(92, 118, 255, 0.16);
    box-shadow: 0 14px 28px rgba(61, 87, 180, 0.10);
    min-width: 0;
    max-width: 100%;
    max-height: 148px;
    overflow: hidden;
}

.product-info-large .product-type-info__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #31406f;
}

.product-info-large .product-type-info__label i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(92, 118, 255, 0.14);
    color: #4b5fd6;
}

.product-info-large .product-type-info__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
}

.product-info-large .product-size-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(92, 118, 255, 0.12);
    box-shadow: 0 10px 20px rgba(42, 59, 114, 0.06);
    color: #41507f;
    font-size: 0.76rem;
    line-height: 1.25;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Kargo Bilgisi */
.product-card.wordpress-product .product-shipping {
    margin-top: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 14px;
    display: inline-block;
    border: 1px solid rgba(125, 211, 252, 0.22);
}

/* Responsive */
@media (max-width: 768px) {
    .product-card.wordpress-product .product-image {
        height: 240px;
    }

    .product-image-hint {
        font-size: 11px;
        padding: 5px 9px;
        bottom: 8px;
    }

    .product-card.wordpress-product .product-info {
        padding: 1rem 0.95rem 1.1rem;
        gap: 0.7rem;
        display: flex;
        flex-direction: column;
    }

    .product-card.wordpress-product .product-price .current-price {
        font-size: 1.5rem;
    }

    .product-card.wordpress-product .product-title {
        font-size: 1rem;
        line-height: 1.35;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-card.wordpress-product .product-price {
        margin-bottom: 0;
        gap: 0.45rem;
    }

    .product-card.wordpress-product .product-price .old-price {
        font-size: 0.92rem;
    }

    .product-card.wordpress-product .product-shipping {
        margin-top: 0 !important;
        padding: 0.55rem 0.75rem;
        width: 100%;
        border-radius: 12px;
        font-size: 0.82rem !important;
        line-height: 1.35;
    }

    .product-card.wordpress-product .product-type-info {
        padding: 0.75rem;
        border-radius: 16px;
        margin-top: 0 !important;
        margin-bottom: 0.2rem;
        width: 100%;
        max-width: 100%;
    }

    .product-card.wordpress-product .product-type-info__label {
        width: 100%;
        margin-bottom: 8px;
        font-size: 0.78rem;
        white-space: normal;
    }

    .product-card.wordpress-product .product-type-info__badges {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .product-card.wordpress-product .product-size-badge {
        min-height: 0;
        width: 100%;
        justify-content: flex-start;
        padding: 7px 10px;
        font-size: 0.72rem;
        line-height: 1.35;
        border-radius: 16px;
        box-shadow: 0 6px 14px rgba(42, 59, 114, 0.05);
    }

    .product-card.wordpress-product .product-stock {
        margin-top: 0;
        margin-bottom: 0;
        font-size: 0.7rem;
        padding: 0.38rem 0.7rem;
    }

    .product-card.wordpress-product .product-description {
        margin-bottom: 0;
        font-size: 0.82rem;
        line-height: 1.45;
        color: #64748b;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-card.wordpress-product .btn-view-more {
        margin-bottom: 0 !important;
        font-size: 0.82rem !important;
    }

    .product-card.wordpress-product .product-actions {
        margin-top: 0.2rem;
    }

    .product-card.wordpress-product .product-actions .btn {
        width: 100%;
        min-height: 42px;
        padding: 11px 14px;
        font-size: 0.88rem;
    }

    .product-info-large .product-type-info {
        padding: 0.85rem;
    }

    .product-info-large .product-type-info__label {
        font-size: 0.88rem;
        margin-bottom: 10px;
    }

    .product-info-large .product-type-info__badges {
        gap: 8px;
    }

    .product-info-large .product-size-badge {
        min-height: 32px;
        padding: 6px 11px;
        font-size: 0.78rem;
    }
}

/* Tek Urun Sayfasi */
body.single-eticaret_urun .page-header {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 30%),
        linear-gradient(135deg, #1f2f98 0%, #3756e8 52%, #11b7d8 100%);
    color: #fff;
    padding: 58px 0 48px;
}

body.single-eticaret_urun .page-header::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -140px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(8px);
    pointer-events: none;
}

body.single-eticaret_urun .page-title {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

body.single-eticaret_urun .page-title h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
}

body.single-eticaret_urun .breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    list-style: none;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow-wrap: anywhere;
}

body.single-eticaret_urun .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

body.single-eticaret_urun .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.72);
}

body.single-eticaret_urun .breadcrumb-item,
body.single-eticaret_urun .breadcrumb-item a,
body.single-eticaret_urun .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.92);
}

body.single-eticaret_urun .single-product {
    position: relative;
    padding: 72px 0 84px;
    background:
        radial-gradient(circle at top left, rgba(55, 86, 232, 0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(17, 183, 216, 0.09), transparent 26%),
        linear-gradient(180deg, #f5f8ff 0%, #eef3fb 100%);
}

body.single-eticaret_urun .single-product .container,
body.single-eticaret_urun .product-detail-layout,
body.single-eticaret_urun .product-gallery,
body.single-eticaret_urun .product-info-section,
body.single-eticaret_urun .product-pricing,
body.single-eticaret_urun .product-payment-options,
body.single-eticaret_urun .product-description,
body.single-eticaret_urun .related-products,
body.single-eticaret_urun .related-products .container {
    min-width: 0;
}

body.single-eticaret_urun .product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}

body.single-eticaret_urun .product-gallery,
body.single-eticaret_urun .product-info-section {
    min-width: 0;
}

body.single-eticaret_urun .main-image,
body.single-eticaret_urun .product-gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(145deg, #ffffff, #eef3ff);
    border: 1px solid rgba(88, 115, 255, 0.14);
    box-shadow: 0 28px 60px rgba(25, 45, 100, 0.14);
}

body.single-eticaret_urun .main-image,
body.single-eticaret_urun .product-gallery-slider,
body.single-eticaret_urun .placeholder-image {
    aspect-ratio: 4 / 3;
}

body.single-eticaret_urun .main-image img,
body.single-eticaret_urun .product-gallery-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.single-eticaret_urun .product-gallery-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff, #eff4ff);
}

body.single-eticaret_urun .product-gallery-slider .swiper-pagination {
    bottom: 18px !important;
}

body.single-eticaret_urun .product-gallery-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.78);
    opacity: 1;
}

body.single-eticaret_urun .product-gallery-slider .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.15);
}

body.single-eticaret_urun .product-gallery-slider .swiper-button-prev,
body.single-eticaret_urun .product-gallery-slider .swiper-button-next {
    color: #fff;
    background: rgba(18, 33, 73, 0.42);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, background 0.25s ease;
}

body.single-eticaret_urun .product-gallery-slider .swiper-button-prev:hover,
body.single-eticaret_urun .product-gallery-slider .swiper-button-next:hover {
    background: rgba(18, 33, 73, 0.72);
    transform: scale(1.05);
}

body.single-eticaret_urun .product-gallery-slider .swiper-button-prev {
    left: 18px;
}

body.single-eticaret_urun .product-gallery-slider .swiper-button-next {
    right: 18px;
}

body.single-eticaret_urun .product-gallery-slider .swiper-button-prev::after,
body.single-eticaret_urun .product-gallery-slider .swiper-button-next::after {
    font-size: 15px;
    font-weight: 700;
}

body.single-eticaret_urun .placeholder-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff, #eef3ff);
    border: 1px solid rgba(88, 115, 255, 0.14);
    border-radius: 28px;
    box-shadow: 0 28px 60px rgba(25, 45, 100, 0.14);
    font-size: clamp(3rem, 8vw, 5rem);
}

body.single-eticaret_urun .product-info-section {
    padding: clamp(22px, 3vw, 34px);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(120, 140, 210, 0.18);
    box-shadow: 0 24px 60px rgba(26, 43, 92, 0.1);
    backdrop-filter: blur(10px);
}

body.single-eticaret_urun .product-header {
    margin-bottom: 16px;
}

body.single-eticaret_urun .product-title {
    margin: 0 0 14px;
    color: #16203b;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
}

body.single-eticaret_urun .product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 0.98rem;
}

body.single-eticaret_urun .categories-label {
    color: #6b7692;
    font-weight: 600;
}

body.single-eticaret_urun .category-link {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(67, 95, 207, 0.08);
    color: #3650b7;
    border: 1px solid rgba(67, 95, 207, 0.12);
    pointer-events: none;
    cursor: default;
    max-width: 100%;
    overflow-wrap: anywhere;
}

body.single-eticaret_urun .product-pricing,
body.single-eticaret_urun .product-description,
body.single-eticaret_urun .product-payment-options {
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
    border: 1px solid rgba(120, 140, 210, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.single-eticaret_urun .product-pricing {
    margin: 0 0 22px;
    padding: clamp(20px, 2.4vw, 28px);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 18px 36px rgba(38, 54, 108, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body.single-eticaret_urun .product-pricing::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6173ff 0%, #5dd6ff 52%, #ff8ab4 100%);
    opacity: 0.95;
}

body.single-eticaret_urun .price-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-bottom: 14px;
}

body.single-eticaret_urun .old-price {
    font-size: 1.1rem;
    color: #8a93ad;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

body.single-eticaret_urun .current-price {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    color: #e14d3d;
    letter-spacing: -0.03em;
}

body.single-eticaret_urun .discount-percentage {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #17a34a, #14906f);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 20px rgba(20, 144, 111, 0.18);
}

body.single-eticaret_urun .product-shipping,
body.single-eticaret_urun .product-type-info {
    color: #5a6684;
}

body.single-eticaret_urun .product-shipping {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 0.78rem 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid rgba(125, 211, 252, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    font-size: 0.98rem;
    font-weight: 700;
    max-width: max-content;
}

body.single-eticaret_urun .product-shipping i {
    color: #f59e0b;
}

body.single-eticaret_urun .product-type-info {
    margin-top: 16px !important;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(92, 118, 255, 0.08), rgba(17, 183, 216, 0.08));
    border: 1px solid rgba(92, 118, 255, 0.14);
}

body.single-eticaret_urun .product-type-info__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #31406f;
}

body.single-eticaret_urun .product-type-info__label i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(92, 118, 255, 0.14);
    color: #4b5fd6;
}

body.single-eticaret_urun .product-type-info__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.single-eticaret_urun .product-size-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(92, 118, 255, 0.12);
    box-shadow: 0 10px 20px rgba(42, 59, 114, 0.06);
    color: #40507f;
    font-size: 0.95rem;
    line-height: 1.35;
}

body.single-eticaret_urun .product-free-shipping-note {
    margin-top: 16px !important;
    padding: 16px 18px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, #fff7dc, #fffdf4) !important;
    border: 1px solid #f7d36c !important;
    color: #8b5a07 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body.single-eticaret_urun .product-free-shipping-note strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
}

body.single-eticaret_urun .product-free-shipping-note span {
    display: block;
    font-size: 0.95rem;
    line-height: 1.55;
}

body.single-eticaret_urun .product-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    max-width: 100%;
    margin-top: 16px !important;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    overflow-wrap: anywhere;
}

body.single-eticaret_urun .product-stock.in-stock {
    background: rgba(34, 197, 94, 0.12);
    color: #147a3f;
    border: 1px solid rgba(34, 197, 94, 0.18);
}

body.single-eticaret_urun .product-stock.out-of-stock {
    background: rgba(239, 68, 68, 0.1);
    color: #b33030;
    border: 1px solid rgba(239, 68, 68, 0.18);
}

body.single-eticaret_urun .product-description {
    margin: 0 0 22px;
    padding: clamp(20px, 2.2vw, 28px);
}

body.single-eticaret_urun .product-description h3 {
    margin: 0 0 14px;
    color: #16203b;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

body.single-eticaret_urun .description-content {
    max-width: 100%;
    color: #4e5874;
    line-height: 1.8;
    overflow-wrap: anywhere;
    word-break: break-word;
}

body.single-eticaret_urun .description-content>*:first-child {
    margin-top: 0;
}

body.single-eticaret_urun .description-content>*:last-child {
    margin-bottom: 0;
}

body.single-eticaret_urun .description-content img,
body.single-eticaret_urun .description-content iframe,
body.single-eticaret_urun .description-content table {
    max-width: 100%;
}

body.single-eticaret_urun .description-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

body.single-eticaret_urun .product-payment-options {
    padding: clamp(20px, 2.2vw, 28px) !important;
    overflow: hidden;
}

body.single-eticaret_urun .product-payment-options-title {
    margin-bottom: 10px !important;
    color: #16203b !important;
}

body.single-eticaret_urun .product-payment-option-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0 !important;
    overflow-wrap: anywhere;
}

body.single-eticaret_urun .product-payment-option-label,
body.single-eticaret_urun .product-payment-option-price,
body.single-eticaret_urun .product-payment-note,
body.single-eticaret_urun .product-type-info,
body.single-eticaret_urun .product-shipping,
body.single-eticaret_urun .description-content p,
body.single-eticaret_urun .description-content li {
    overflow-wrap: anywhere;
    word-break: break-word;
}

body.single-eticaret_urun .product-payment-option-label {
    flex: 1 1 auto;
}

body.single-eticaret_urun .product-payment-option-price {
    flex: 0 0 auto;
    white-space: nowrap;
}

body.single-eticaret_urun .product-actions {
    display: flex;
    margin: 0;
    position: sticky;
    bottom: 16px;
    z-index: 4;
}

body.single-eticaret_urun .product-actions .btn,
body.single-eticaret_urun .product-actions .btn-large,
body.single-eticaret_urun .product-actions .add-to-cart-btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 18px 24px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #6073ff 0%, #5dc8ff 100%);
    box-shadow: 0 20px 36px rgba(88, 116, 255, 0.24);
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

body.single-eticaret_urun .product-actions .btn:hover,
body.single-eticaret_urun .product-actions .btn-large:hover,
body.single-eticaret_urun .product-actions .add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 38px rgba(88, 116, 255, 0.3);
    filter: saturate(1.05);
}

body.single-eticaret_urun .related-products {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid rgba(120, 140, 210, 0.16);
}

body.single-eticaret_urun .related-products h2 {
    margin-bottom: 32px;
    text-align: center;
    color: #16203b;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    letter-spacing: -0.03em;
}

body.single-eticaret_urun .related-products .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

body.single-eticaret_urun .related-products .product-card.related {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(120, 140, 210, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 249, 255, 0.94));
    box-shadow: 0 20px 40px rgba(33, 49, 97, 0.1);
    overflow: hidden;
}

body.single-eticaret_urun .related-products .product-card.related::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #6073ff 0%, #5dc8ff 54%, #ff8ab4 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

body.single-eticaret_urun .related-products .product-card.related:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 28px 48px rgba(33, 49, 97, 0.14);
}

body.single-eticaret_urun .related-products .product-card.related:hover::before {
    opacity: 1;
}

body.single-eticaret_urun .related-products .product-card.related .product-image {
    height: 220px;
    padding: 16px;
    background: linear-gradient(145deg, #ffffff, #eef3ff);
}

body.single-eticaret_urun .related-products .product-card.related .product-image a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.single-eticaret_urun .related-products .product-card.related .product-image img,
body.single-eticaret_urun .related-products .product-card.related .product-emoji {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}

body.single-eticaret_urun .related-products .product-card.related .product-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.15rem 1.15rem 1.25rem;
    flex: 1;
}

body.single-eticaret_urun .related-products .product-card.related .product-title {
    margin: 0;
    color: var(--ink-strong);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

body.single-eticaret_urun .related-products .product-card.related .product-title a {
    color: inherit;
    text-decoration: none;
}

body.single-eticaret_urun .related-products .product-card.related .product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.45rem 0.7rem;
    margin: 0;
}

body.single-eticaret_urun .related-products .product-card.related .product-price .current-price {
    color: #e14d3d;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

body.single-eticaret_urun .related-products .product-card.related .product-price .old-price {
    color: #95a0bf;
    font-size: 0.98rem;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

body.single-eticaret_urun .related-products .product-card.related .product-actions {
    position: static;
    margin-top: auto;
}

body.single-eticaret_urun .related-products .product-card.related .product-actions .btn {
    min-height: 50px;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #6073ff 0%, #5dc8ff 100%);
    box-shadow: 0 16px 28px rgba(88, 116, 255, 0.2);
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

body.single-eticaret_urun .related-products .product-card.related .product-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px rgba(88, 116, 255, 0.26);
}

@media (min-width: 992px) {
    body.single-eticaret_urun .product-info-section {
        position: sticky;
        top: 120px;
    }
}

@media (max-width: 991px) {
    body.single-eticaret_urun .product-detail-layout {
        grid-template-columns: 1fr;
    }

    body.single-eticaret_urun .product-info-section {
        position: static;
    }
}

@media (max-width: 768px) {
    body.single-eticaret_urun .page-header {
        padding: 30px 0 24px;
    }

    body.single-eticaret_urun .single-product {
        padding: 30px 0 42px;
    }

    body.single-eticaret_urun .single-product .container {
        width: min(100% - 22px, 100%);
        padding-left: 0;
        padding-right: 0;
    }

    body.single-eticaret_urun .page-title h1 {
        font-size: 1.85rem;
    }

    body.single-eticaret_urun .breadcrumb {
        display: flex;
        border-radius: 18px;
        padding: 10px 12px;
        font-size: 0.92rem;
        gap: 6px;
    }

    body.single-eticaret_urun .breadcrumb-item+.breadcrumb-item::before {
        margin-right: 6px;
    }

    body.single-eticaret_urun .product-detail-layout {
        gap: 20px;
    }

    body.single-eticaret_urun .main-image,
    body.single-eticaret_urun .product-gallery-slider,
    body.single-eticaret_urun .placeholder-image,
    body.single-eticaret_urun .product-info-section,
    body.single-eticaret_urun .product-pricing,
    body.single-eticaret_urun .product-description,
    body.single-eticaret_urun .product-payment-options {
        border-radius: 22px;
    }

    body.single-eticaret_urun .product-info-section {
        padding: 20px 16px;
    }

    body.single-eticaret_urun .product-gallery-slider .swiper-button-prev,
    body.single-eticaret_urun .product-gallery-slider .swiper-button-next {
        width: 38px;
        height: 38px;
    }

    body.single-eticaret_urun .product-gallery-slider .swiper-button-prev::after,
    body.single-eticaret_urun .product-gallery-slider .swiper-button-next::after {
        font-size: 13px;
    }

    body.single-eticaret_urun .product-title {
        font-size: 1.85rem;
    }

    body.single-eticaret_urun .product-categories {
        gap: 8px;
        font-size: 0.92rem;
    }

    body.single-eticaret_urun .category-link {
        min-height: 32px;
        padding: 6px 12px;
    }

    body.single-eticaret_urun .current-price {
        font-size: 2rem;
    }

    body.single-eticaret_urun .product-type-info {
        padding: 14px;
    }

    body.single-eticaret_urun .product-type-info__badges {
        gap: 8px;
    }

    body.single-eticaret_urun .product-size-badge {
        min-height: 34px;
        padding: 7px 12px;
        font-size: 0.88rem;
    }

    body.single-eticaret_urun .product-payment-option-row {
        flex-wrap: wrap;
    }

    body.single-eticaret_urun .product-payment-option-price {
        white-space: normal;
    }

    body.single-eticaret_urun .product-actions .btn,
    body.single-eticaret_urun .product-actions .btn-large,
    body.single-eticaret_urun .product-actions .add-to-cart-btn {
        padding: 16px 18px;
    }

    body.single-eticaret_urun .related-products .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    body.single-eticaret_urun .single-product .container {
        width: min(100% - 16px, 100%);
    }

    body.single-eticaret_urun .page-title h1 {
        font-size: 1.55rem;
    }

    body.single-eticaret_urun .breadcrumb {
        border-radius: 16px;
        padding: 9px 11px;
        font-size: 0.86rem;
    }

    body.single-eticaret_urun .product-title {
        font-size: 1.6rem;
    }

    body.single-eticaret_urun .rating-text,
    body.single-eticaret_urun .product-shipping,
    body.single-eticaret_urun .product-type-info,
    body.single-eticaret_urun .product-payment-option-label,
    body.single-eticaret_urun .product-payment-option-price,
    body.single-eticaret_urun .product-payment-note {
        font-size: 0.95rem !important;
    }

    body.single-eticaret_urun .product-pricing,
    body.single-eticaret_urun .product-description,
    body.single-eticaret_urun .product-payment-options {
        padding: 16px !important;
    }

    body.single-eticaret_urun .related-products .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    body.single-eticaret_urun .related-products .product-card.related {
        border-radius: 20px;
    }

    body.single-eticaret_urun .related-products .product-card.related .product-image {
        height: 190px;
        padding: 12px;
    }

    body.single-eticaret_urun .related-products .product-card.related .product-info {
        padding: 1rem;
        gap: 0.7rem;
    }

    body.single-eticaret_urun .related-products .product-card.related .product-title {
        font-size: 1rem;
    }

    body.single-eticaret_urun .related-products .product-card.related .product-price .current-price {
        font-size: 1.45rem;
    }
}

/* Ana Sayfa Inline CSS Tasinan Parcalar */
.homepage-marquee {
    position: relative;
    z-index: 100;
}

.homepage-marquee .marquee-content {
    display: inline-block;
}

.homepage-marquee .marquee-content span {
    display: inline-block;
    padding: 0 50px;
}

.homepage-marquee .marquee-left {
    animation: marquee-left var(--homepage-marquee-speed, 20s) linear infinite;
}

.homepage-marquee .marquee-right {
    animation: marquee-right var(--homepage-marquee-speed, 20s) linear infinite;
}

@keyframes marquee-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.homepage-marquee:hover .marquee-content {
    animation-play-state: paused;
}

.homepage-slideshow .slide {
    background-size: var(--homepage-slide-bg-size, cover) !important;
}

.slideshow-bottom-marquee {
    position: relative;
    z-index: 99;
}

.slideshow-bottom-marquee .slideshow-marquee-content {
    display: inline-block;
}

.slideshow-bottom-marquee .slideshow-marquee-content span {
    display: inline-block;
    padding: 0 40px;
}

.slideshow-bottom-marquee .slideshow-marquee-left {
    animation: slideshow-marquee-left var(--slideshow-marquee-speed, 25s) linear infinite;
}

.slideshow-bottom-marquee .slideshow-marquee-right {
    animation: slideshow-marquee-right var(--slideshow-marquee-speed, 25s) linear infinite;
}

@keyframes slideshow-marquee-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes slideshow-marquee-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.slideshow-bottom-marquee:hover .slideshow-marquee-content {
    animation-play-state: paused;
}

/* Urunler Sayfasi Inline CSS Tasinan Parcalar */
body.page-template-page-products .products-top-marquee {
    position: relative;
    z-index: 98;
}

body.page-template-page-products .products-top-marquee-content {
    display: inline-block;
}

body.page-template-page-products .products-top-marquee-content span {
    display: inline-block;
    padding: 0 40px;
}

body.page-template-page-products .products-top-marquee-left {
    animation: products-top-marquee-left var(--products-top-marquee-speed, 20s) linear infinite;
}

body.page-template-page-products .products-top-marquee-right {
    animation: products-top-marquee-right var(--products-top-marquee-speed, 20s) linear infinite;
}

@keyframes products-top-marquee-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes products-top-marquee-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

body.page-template-page-products .products-top-marquee:hover .products-top-marquee-content {
    animation-play-state: paused;
}

body.page-template-page-products .products-bottom-marquee {
    position: relative;
    z-index: 97;
}

body.page-template-page-products .products-bottom-marquee-content {
    display: inline-block;
}

body.page-template-page-products .products-bottom-marquee-content span {
    display: inline-block;
    padding: 0 35px;
}

body.page-template-page-products .products-bottom-marquee-left {
    animation: products-bottom-marquee-left var(--products-bottom-marquee-speed, 22s) linear infinite;
}

body.page-template-page-products .products-bottom-marquee-right {
    animation: products-bottom-marquee-right var(--products-bottom-marquee-speed, 22s) linear infinite;
}

@keyframes products-bottom-marquee-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes products-bottom-marquee-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

body.page-template-page-products .products-bottom-marquee:hover .products-bottom-marquee-content {
    animation-play-state: paused;
}

body.page-template-page-products .filter-container {
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

body.page-template-page-products .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

body.page-template-page-products .filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    background: #fff;
    color: #6c757d;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

body.page-template-page-products .filter-btn.active {
    background: linear-gradient(135deg, var(--products-filter-button-bg, #667eea), var(--products-filter-button-bg-hover, #667eea));
    color: var(--products-filter-button-text, #fff);
    border-color: var(--products-filter-button-bg, #667eea);
    box-shadow: 0 4px 15px var(--products-filter-button-shadow, rgba(102, 126, 234, 0.3));
    transform: translateY(-2px);
}

body.page-template-page-products .filter-btn:hover {
    border-color: var(--products-filter-button-bg, #667eea);
    color: var(--products-filter-button-bg, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--products-filter-button-shadow-soft, rgba(102, 126, 234, 0.2));
}

body.page-template-page-products .filter-btn.active:hover {
    background: linear-gradient(135deg, var(--products-filter-button-bg-hover, #667eea), var(--products-filter-button-bg-soft, #667eea));
    color: var(--products-filter-button-text, #fff);
}

body.page-template-page-products .category-icon {
    margin-right: 8px;
    font-size: 16px;
}

body.page-template-page-products .category-count {
    opacity: 0.7;
    margin-left: 5px;
}

@media (max-width: 768px) {
    body.page-template-page-products .filter-container {
        padding: 10px !important;
        margin-bottom: 12px !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    }

    body.page-template-page-products .filter-container h4 {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }

    body.page-template-page-products .filter-buttons {
        gap: 4px !important;
        margin-bottom: 8px !important;
    }

    body.page-template-page-products .filter-btn {
        padding: 5px 8px !important;
        font-size: 11px !important;
        border-radius: 15px !important;
        border-width: 1px !important;
    }

    body.page-template-page-products .category-icon {
        margin-right: 2px !important;
        font-size: 11px !important;
    }

    body.page-template-page-products .category-count {
        margin-left: 2px !important;
        font-size: 10px !important;
    }

    body.page-template-page-products .category-checkboxes {
        grid-template-columns: 1fr !important;
        gap: 4px !important;
        margin-bottom: 8px !important;
    }

    body.page-template-page-products .category-checkboxes label {
        padding: 4px !important;
        font-size: 12px !important;
    }

    body.page-template-page-products .price-range-filter {
        margin-bottom: 10px !important;
    }

    body.page-template-page-products .price-inputs {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        grid-auto-rows: auto !important;
        gap: 8px !important;
        align-items: center !important;
    }

    body.page-template-page-products .price-inputs input {
        width: 100% !important;
        min-width: 110px !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
        height: 38px !important;
        border-radius: 10px !important;
    }

    body.page-template-page-products .price-inputs span {
        font-size: 11px !important;
    }

    body.page-template-page-products #apply-price-filter {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        justify-self: stretch !important;
        padding: 8px 12px !important;
        font-size: 12px !important;
        height: 38px !important;
        min-width: 0 !important;
        border-radius: 10px !important;
    }

    body.page-template-page-products .sorting-options {
        margin-bottom: 10px !important;
    }

    body.page-template-page-products .sorting-options h4 {
        font-size: 12px !important;
        margin-bottom: 6px !important;
    }

    body.page-template-page-products .sorting-options select {
        width: 100% !important;
        padding: 6px !important;
        font-size: 12px !important;
        height: 32px !important;
    }

    body.page-template-page-products .product-filters {
        padding: 0 !important;
        margin: 0 0 15px 0 !important;
    }

}

/* Siparis Takip Sayfasi */
.order-tracking-page {
    padding: 56px 0 84px;
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.08), transparent 22%),
        radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.08), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.order-tracking-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 420px);
    gap: 28px;
    align-items: stretch;
}

.order-tracking-copy,
.order-tracking-card,
.tracking-summary-card,
.tracking-panel {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.order-tracking-copy {
    padding: 34px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 28%),
        linear-gradient(135deg, #111827 0%, #312e81 52%, #ec4899 100%);
    color: #fff;
}

.tracking-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.order-tracking-copy h1 {
    margin: 18px 0 14px;
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.order-tracking-copy p {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    line-height: 1.75;
}

.tracking-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.tracking-benefits span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.order-tracking-card {
    padding: 28px;
}

.tracking-form {
    display: grid;
    gap: 16px;
}

.tracking-form label {
    display: grid;
    gap: 8px;
    color: #334155;
    font-weight: 700;
}

.tracking-form input {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid #d6deea;
    background: #f8fbff;
    color: #0f172a;
    font: inherit;
}

.tracking-form .btn {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    min-height: 56px;
    font-size: 1rem;
    font-weight: 800;
}

.tracking-help {
    margin: 14px 2px 0;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
}

.tracking-alert {
    margin: 24px 0 0;
    padding: 16px 18px;
    border-radius: 20px;
    font-weight: 700;
}

.tracking-alert.is-error {
    background: linear-gradient(135deg, #fff1f2, #fff7ed);
    border: 1px solid rgba(244, 63, 94, 0.18);
    color: #be123c;
}

.tracking-result-shell {
    display: grid;
    gap: 24px;
    margin-top: 26px;
}

.tracking-summary-card {
    padding: 26px 28px;
}

.tracking-summary-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.tracking-label {
    display: block;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tracking-summary-top strong {
    font-size: clamp(1.5rem, 2.6vw, 2.4rem);
    color: #0f172a;
    letter-spacing: 0.06em;
}

.tracking-badge {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
}

.tracking-badge.is-pending {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

.tracking-badge.is-processing {
    background: rgba(99, 102, 241, 0.12);
    color: #4338ca;
}

.tracking-badge.is-shipped {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.tracking-badge.is-completed {
    background: rgba(34, 197, 94, 0.14);
    color: #15803d;
}

.tracking-badge.is-cancelled {
    background: rgba(244, 63, 94, 0.14);
    color: #be123c;
}

.tracking-progress {
    margin-top: 22px;
}

.tracking-progress-bar {
    width: 100%;
    height: 12px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.tracking-progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #4f46e5 0%, #ec4899 100%);
}

.tracking-progress small {
    display: block;
    margin-top: 10px;
    color: #64748b;
    line-height: 1.6;
}

.tracking-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.tracking-meta-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.tracking-meta-item span {
    display: block;
    margin-bottom: 7px;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 700;
}

.tracking-meta-item strong {
    color: #0f172a;
    line-height: 1.5;
}

.tracking-columns {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
}

.tracking-panel {
    padding: 24px;
}

.tracking-panel h2 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.tracking-timeline {
    display: grid;
    gap: 14px;
}

.tracking-step {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.tracking-step-dot {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    border-radius: 999px;
    background: #cbd5e1;
    box-shadow: inset 0 0 0 4px #fff;
}

.tracking-step.is-active .tracking-step-dot {
    background: linear-gradient(135deg, #4f46e5, #ec4899);
}

.tracking-step strong {
    display: block;
    color: #0f172a;
    margin-bottom: 4px;
}

.tracking-step small {
    color: #64748b;
    line-height: 1.55;
    display: block;
}

.tracking-step-time {
    margin-top: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #475569;
}

.payment-delivery-page {
    padding: clamp(48px, 7vw, 88px) 0;
    background:
        radial-gradient(circle at top left, rgba(102, 126, 234, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(244, 114, 182, 0.16), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.payment-delivery-hero,
.payment-delivery-grid,
.payment-delivery-note-grid {
    display: grid;
    gap: 24px;
}

.payment-delivery-hero,
.payment-delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 24px;
}

.payment-delivery-copy,
.payment-delivery-highlight,
.payment-delivery-card,
.payment-delivery-note-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(207, 222, 243, 0.95);
    border-radius: 32px;
    box-shadow: 0 24px 60px rgba(77, 104, 158, 0.14);
    backdrop-filter: blur(12px);
    padding: clamp(24px, 4vw, 36px);
}

.payment-delivery-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.1);
    color: #4338ca;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.payment-delivery-copy h1 {
    margin: 18px 0 14px;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.payment-delivery-copy p,
.payment-option-item p,
.delivery-step p,
.payment-delivery-note-card p {
    margin: 0;
    color: #475569;
    line-height: 1.75;
}

.payment-delivery-highlight ul,
.payment-delivery-note-card ul {
    margin: 18px 0 0;
    padding-left: 20px;
    color: #0f172a;
}

.payment-delivery-highlight li,
.payment-delivery-note-card li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.payment-delivery-badge {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f46e5, #ec4899);
    color: #fff;
    font-weight: 800;
}

.payment-delivery-card h2,
.payment-delivery-note-card h3 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.payment-option-list,
.delivery-steps {
    display: grid;
    gap: 16px;
}

.payment-option-item,
.delivery-step {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 22px;
    background: #f8fbff;
    border: 1px solid #dbe7f6;
}

.payment-option-item strong,
.delivery-step strong {
    color: #0f172a;
    font-size: 1.02rem;
}

.delivery-step {
    grid-template-columns: 48px 1fr;
    align-items: start;
}

.delivery-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    font-weight: 800;
}

.payment-delivery-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-delivery-note-card .btn {
    margin-top: 16px;
}

@media (max-width: 900px) {

    .payment-delivery-hero,
    .payment-delivery-grid,
    .payment-delivery-note-grid {
        grid-template-columns: 1fr;
    }
}

.tracking-product-card,
.tracking-item-row,
.tracking-note-box,
.tracking-total-row {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: #f8fbff;
}

.tracking-product-card,
.tracking-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
}

.tracking-items-list {
    display: grid;
    gap: 12px;
}

.tracking-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
}

.tracking-item-row small {
    display: block;
    margin-top: 5px;
    color: #64748b;
}

.tracking-total-row {
    margin-top: 14px;
    background: linear-gradient(135deg, #eef2ff, #fdf2f8);
}

.tracking-note-box {
    margin-top: 14px;
    padding: 16px 18px;
}

.tracking-note-box strong {
    display: block;
    margin-bottom: 8px;
    color: #312e81;
}

.tracking-note-box p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

@media (max-width: 991px) {

    .order-tracking-hero,
    .tracking-columns,
    .tracking-meta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .order-tracking-page {
        padding: 26px 0 46px;
    }

    .order-tracking-hero {
        gap: 18px;
    }

    .order-tracking-copy,
    .order-tracking-card,
    .tracking-summary-card,
    .tracking-panel {
        border-radius: 22px;
    }

    .order-tracking-copy,
    .order-tracking-card,
    .tracking-summary-card,
    .tracking-panel {
        padding: 20px 18px;
    }

    .tracking-summary-top,
    .tracking-product-card,
    .tracking-item-row,
    .tracking-total-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .tracking-summary-top strong {
        font-size: 1.45rem;
    }
}

/* Products Page Responsive Stabilization */
@media (max-width: 991px) {
    body.page-template-page-products .products-page-content {
        padding: 1rem 0;
    }

    body.page-template-page-products .products-page-content>.container {
        width: min(100vw - 4px, 100%) !important;
        max-width: min(100vw - 4px, 100%) !important;
        padding-left: 2px;
        padding-right: 2px;
    }

    body.page-template-page-products .products-layout.no-sidebar {
        display: block !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0;
    }

    body.page-template-page-products .products-main,
    body.page-template-page-products .product-page-content,
    body.page-template-page-products .products-main-title-section,
    body.page-template-page-products .product-search-section {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    body.page-template-page-products .products-main {
        padding: 0.9rem;
        border-radius: 16px;
        margin-top: 0.65rem;
    }

    body.page-template-page-products .products-catalog-layout {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 0.85rem;
        margin-top: 1rem;
    }

    body.page-template-page-products .products-catalog-sidebar,
    body.page-template-page-products .products-catalog-results,
    body.page-template-page-products .filters-shell,
    body.page-template-page-products .products-filter-panel,
    body.page-template-page-products .products-filter-toggle,
    body.page-template-page-products .products-filter-grid {
        width: 100% !important;
        max-width: none !important;
    }

    body.page-template-page-products .products-catalog-sidebar {
        position: static;
    }

    body.page-template-page-products .products-catalog-results {
        min-width: 0;
        padding-left: 0;
    }

    body.page-template-page-products .filters-shell {
        padding: 0.95rem;
        border-radius: 18px;
    }

    body.page-template-page-products .products-filter-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    body.page-template-page-products .products-filter-section,
    body.page-template-page-products .products-filter-price-inputs,
    body.page-template-page-products .products-filter-actions {
        width: 100%;
        max-width: 100%;
    }

    body.page-template-page-products .products-filter-price-inputs {
        grid-template-columns: 1fr;
    }

    body.page-template-page-products .products-filter-separator {
        display: none;
    }

    body.page-template-page-products #apply-price-filter,
    body.page-template-page-products #apply-category-filter {
        width: 100%;
    }

    body.page-template-page-products .products-catalog-results .products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.85rem;
        width: 100%;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: none;
        min-height: 0;
        border-radius: 18px;
        overflow: hidden;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-image,
    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-image-large,
    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-info,
    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-title,
    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-price,
    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-shipping,
    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-type-info,
    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-stock,
    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-description,
    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .btn-view-more,
    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-actions {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-info {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        min-width: 0;
        padding: 1rem 0.95rem 1.1rem;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-type-info__badges {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-size-badge {
        width: 100%;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    body.page-template-page-products .products-page-content>.container {
        width: min(100vw - 8px, 100%) !important;
        max-width: min(100vw - 8px, 100%) !important;
        padding-left: 4px;
        padding-right: 4px;
    }

    body.page-template-page-products .products-main {
        padding: 0.9rem;
        border-radius: 14px;
        margin-top: 1rem;
    }

    body.page-template-page-products .products-catalog-layout {
        gap: 0.75rem;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product {
        display: grid;
        grid-template-columns: minmax(138px, 44%) minmax(0, 1fr);
        align-items: stretch;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-image-large {
        height: 100%;
        min-height: 224px;
        padding: 0.45rem;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-info {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0.72rem 0.72rem 0.8rem;
        gap: 0.45rem;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-title {
        font-size: 0.86rem;
        -webkit-line-clamp: 2;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-price .current-price {
        font-size: 1.12rem;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-price .old-price {
        font-size: 0.76rem;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-shipping {
        padding: 0.38rem 0.52rem;
        font-size: 0.7rem !important;
        border-radius: 10px;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-type-info {
        margin-top: 0 !important;
        margin-bottom: 0.1rem;
        padding: 0.55rem;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-type-info__label {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-type-info__badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-size-badge {
        min-height: 0;
        padding: 5px 7px;
        font-size: 0.62rem;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-stock,
    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-description,
    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .btn-view-more {
        display: none;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-actions {
        margin-top: auto;
    }
}

@media (max-width: 480px) {
    body.page-template-page-products .products-catalog-results .product-card.wordpress-product {
        grid-template-columns: minmax(126px, 42%) minmax(0, 1fr);
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-image-large {
        min-height: 204px;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-info {
        padding: 0.68rem 0.65rem 0.78rem;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-type-info {
        border-radius: 14px;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-type-info__badges {
        gap: 3px;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .product-size-badge {
        padding: 5px 6px;
        font-size: 0.6rem;
    }
}

/* Mobile Header Premium Polish */
@media (max-width: 768px) {
    .header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
    }

    .header .container {
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 14px;
    }

    .logo {
        min-width: 0;
        gap: 8px;
    }

    .logo h1 {
        font-size: 1.55rem;
        line-height: 1;
    }

    .site-description {
        font-size: 0.78rem;
        opacity: 0.82;
        margin-top: 0.28rem;
    }

    .custom-logo-wrapper {
        max-width: 50px !important;
    }

    .custom-logo {
        max-width: 50px !important;
        height: auto;
    }

    .header-widget-area {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    }

    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:focus,
    .mobile-menu-toggle:active {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.16);
        box-shadow: 0 14px 26px rgba(15, 23, 42, 0.22);
    }

    .mobile-menu-toggle.active {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(236, 72, 153, 0.86));
        color: #fff;
        transform: none;
    }

    .hamburger-box {
        width: 18px;
        height: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hamburger-inner {
        position: relative;
        width: 18px;
        height: 14px;
        display: block;
    }

    .hamburger-bun,
    .hamburger-patty {
        position: absolute;
        left: 0;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
    }

    .hamburger-bun {
        top: 0;
    }

    .hamburger-patty {
        top: 6px;
    }

    .hamburger-bun.bottom-bun {
        top: 12px;
    }

    .mobile-menu-toggle.active .hamburger-bun {
        top: 6px;
        transform: rotate(45deg);
    }

    .mobile-menu-toggle.active .hamburger-patty {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-bun.bottom-bun {
        top: 6px;
        transform: rotate(-45deg);
    }

    .mobile-menu-backdrop {
        background: rgba(2, 6, 23, 0.5);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .main-nav.mobile-menu-open {
        position: fixed;
        top: calc(env(safe-area-inset-top, 0px) + 12px);
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
        height: auto;
        max-height: calc(100vh - 24px);
        overflow: auto;
        padding: 1rem;
        border-radius: 26px;
        background:
            radial-gradient(circle at top right, rgba(99, 102, 241, 0.16), transparent 32%),
            linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.94) 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 30px 80px rgba(2, 6, 23, 0.42);
        z-index: 1002;
    }

    .main-nav.mobile-menu-open .desktop-menu {
        display: none;
    }

    .main-nav.mobile-menu-open .mobile-menu-links {
        display: grid;
        gap: 0.7rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .main-nav.mobile-menu-open .mobile-menu-links li {
        margin: 0;
    }

    .main-nav.mobile-menu-open .mobile-menu-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 1rem 1rem;
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: #f8fafc !important;
        font-size: 0.98rem;
        font-weight: 700 !important;
        letter-spacing: -0.01em;
        text-decoration: none !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
        transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    }

    .main-nav.mobile-menu-open .mobile-menu-links a::after {
        content: '\203A';
        font-size: 1.1rem;
        opacity: 0.72;
    }

    .main-nav.mobile-menu-open .mobile-menu-links a:hover,
    .main-nav.mobile-menu-open .mobile-menu-links a:focus {
        transform: translateX(4px);
        background: linear-gradient(180deg, rgba(99, 102, 241, 0.18), rgba(236, 72, 153, 0.12));
        border-color: rgba(255, 255, 255, 0.14);
    }

    .cart-icon-btn {
        width: 42px;
        height: 42px;
        padding: 0.25rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
    }

    .cart-icon-btn img,
    .cart-icon-btn i {
        width: 20px !important;
        height: 20px !important;
    }

    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 10px;
        top: auto;
        bottom: -6px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

/* Desktop Header Premium Polish */
@media (min-width: 769px) {
    .header {
        position: sticky;
        top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow:
            0 18px 38px rgba(15, 23, 42, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .header .container {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 1rem;
        padding: 0.95rem 22px;
    }

    .logo {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        min-width: 0;
    }

    .site-title-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0.18rem;
        min-width: 0;
    }

    .logo h1 {
        margin: 0;
        font-size: clamp(1.8rem, 2vw, 2.2rem);
        font-weight: 800;
        letter-spacing: -0.045em;
    }

    .site-description {
        margin: 0;
        font-size: 0.83rem;
        line-height: 1.35;
        opacity: 0.86;
        letter-spacing: -0.01em;
    }

    .custom-logo-wrapper {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        display: flex;
        justify-content: center;
        min-width: 0;
    }

    .main-nav .desktop-menu {
        max-width: 100%;
        padding: 0.38rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 14px 28px rgba(15, 23, 42, 0.12);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .main-nav .desktop-menu .primary-menu,
    .main-nav ul.primary-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.3rem;
        margin: 0;
    }

    .main-nav .desktop-menu .primary-menu a,
    .main-nav .desktop-menu .primary-menu li a,
    .main-nav .desktop-menu .primary-menu .menu-item a,
    .main-nav .desktop-menu .primary-menu .menu-item>a,
    .main-nav .primary-menu a,
    .main-nav .primary-menu li a,
    .main-nav .primary-menu .menu-item a,
    .main-nav .primary-menu .menu-item>a,
    .main-nav ul.primary-menu a,
    .main-nav ul.primary-menu li a,
    .main-nav ul.primary-menu .menu-item a,
    .main-nav ul.primary-menu .menu-item>a,
    .main-nav .menu-item a,
    .main-nav .menu-item>a,
    .main-nav li.menu-item a,
    .main-nav li.menu-item>a {
        padding: 0.82rem 1.02rem;
        border-radius: 999px;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        letter-spacing: -0.01em;
        line-height: 1;
        opacity: 0.95;
        transition:
            color 0.25s ease,
            background-color 0.25s ease,
            transform 0.25s ease,
            box-shadow 0.25s ease !important;
    }

    .main-nav .desktop-menu .primary-menu a:hover,
    .main-nav .desktop-menu .primary-menu li a:hover,
    .main-nav .desktop-menu .primary-menu .menu-item a:hover,
    .main-nav .desktop-menu .primary-menu .menu-item>a:hover,
    .main-nav .primary-menu a:hover,
    .main-nav .primary-menu li a:hover,
    .main-nav .primary-menu .menu-item a:hover,
    .main-nav .primary-menu .menu-item>a:hover,
    .main-nav ul.primary-menu a:hover,
    .main-nav ul.primary-menu li a:hover,
    .main-nav ul.primary-menu .menu-item a:hover,
    .main-nav ul.primary-menu .menu-item>a:hover,
    .main-nav .menu-item a:hover,
    .main-nav .menu-item>a:hover,
    .main-nav li.menu-item a:hover,
    .main-nav li.menu-item>a:hover {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .main-nav .current-menu-item>a,
    .main-nav .current_page_item>a,
    .main-nav .current_page_parent>a,
    .main-nav .current-menu-parent>a {
        background: linear-gradient(135deg, rgba(96, 115, 255, 0.28), rgba(93, 200, 255, 0.2));
        color: #ffffff !important;
        box-shadow: 0 10px 20px rgba(59, 93, 215, 0.18);
    }

    .header-widget-area {
        margin-right: 0;
        padding: 0.45rem 0.7rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 12px 24px rgba(15, 23, 42, 0.12);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .header-widget-area p,
    .header-widget-area .textwidget {
        margin: 0;
        font-size: 0.92rem;
        line-height: 1.35;
    }

    .cart-section {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .cart-icon-btn {
        width: 54px;
        height: 54px;
        padding: 0;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
        box-shadow:
            0 16px 32px rgba(15, 23, 42, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
        transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            background-color 0.25s ease;
    }

    .cart-icon-btn:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow:
            0 22px 38px rgba(15, 23, 42, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }

    .cart-icon-btn img,
    .cart-icon-btn i {
        display: block;
        width: 22px;
        height: 22px;
    }

    .cart-count {
        top: -5px;
        right: -5px;
        left: auto;
        bottom: auto;
        transform: none;
        width: 22px;
        height: 22px;
        border: 2px solid rgba(255, 255, 255, 0.9);
        box-shadow: 0 8px 16px rgba(239, 68, 68, 0.22);
        font-size: 11px;
        font-weight: 800;
    }

    .mobile-menu-toggle {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .featured-products-carousel .product-card-large,
    .featured-products-carousel .product-card-large.featured {
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .featured-products-carousel .product-slide,
    .featured-products-carousel .product-slide.active,
    .featured-products-carousel .product-content-large {
        height: auto;
    }

    .featured-products-carousel .product-content-large {
        padding: 1.25rem 1rem;
        gap: 0.9rem;
    }

    .featured-products-carousel .product-card-large.featured .product-image-large {
        min-height: 300px;
        padding: 0.55rem;
    }

    .featured-products-carousel .product-title-large {
        font-size: 1.24rem;
        line-height: 1.24;
        min-height: 0;
    }

    .featured-products-carousel .current-price-large {
        font-size: 1.5rem;
    }

    .featured-products-carousel .old-price-large {
        font-size: 0.95rem;
    }

    .featured-products-carousel .product-price-shipping-large {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
        padding: 0.7rem 0.8rem;
    }

    .featured-products-carousel .product-shipping-large {
        width: 100%;
        font-size: 0.82rem;
        flex-shrink: 1;
    }

    .featured-products-carousel .product-description-large {
        -webkit-line-clamp: 2;
        font-size: 0.84rem;
    }

    .featured-products-carousel .product-info-large .product-type-info {
        max-height: none;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .btn-view-more {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        width: auto;
        margin-top: 0.1rem;
        font-size: 0.76rem !important;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .featured-products-carousel .product-content-large {
        padding: 1rem 0.85rem;
        gap: 0.75rem;
    }

    .featured-products-carousel .product-card-large.featured .product-image-large {
        min-height: 250px;
    }

    .featured-products-carousel .product-title-large {
        font-size: 1.08rem;
    }

    .featured-products-carousel .current-price-large {
        font-size: 1.32rem;
    }

    .featured-products-carousel .old-price-large {
        font-size: 0.86rem;
    }

    .featured-products-carousel .product-price-shipping-large {
        padding: 0.62rem 0.7rem;
    }

    .featured-products-carousel .product-stock-large {
        font-size: 0.75rem;
        padding: 0.42rem 0.7rem;
    }

    body.page-template-page-products .products-catalog-results .product-card.wordpress-product .btn-view-more {
        font-size: 0.72rem !important;
    }
}

/* ==========================================================================
   WHEEL OF FORTUNE (ÇARKIFELEK) STYLES
   ========================================================================== */
.wheel-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.wheel-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.wheel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.wheel-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 2;
}

.wheel-modal.show .wheel-container {
    transform: scale(1) translateY(0);
}

.wheel-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.wheel-close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.wheel-header {
    margin-bottom: 30px;
}

.wheel-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
}

.wheel-header p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.wheel-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 320px;
    margin: 0 auto;
}

.wheel-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #f8fafc;
    border: 8px solid #ffffff;
    box-shadow: 0 0 0 6px #e2e8f0, 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    /* CSS transition for spinning is generally handled by JS with transitions */
    transition: transform cubic-bezier(0.2, 0, 0, 1);
}

#wheel-slices-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    /* gradient applied via JS inline */
}

.wheel-slice-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
}

.wheel-slice-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 20px;
    margin-top: -10px;
    transform-origin: 0% 50%;
    text-align: right;
    padding-right: 25px;
    box-sizing: border-box;
    font-weight: 700;
    font-size: 13px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    pointer-events: none;
    line-height: 20px;
    white-space: nowrap;
}

.wheel-spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    z-index: 10;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
}

.wheel-spin-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.wheel-spin-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.wheel-spin-btn:disabled {
    background: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
    transform: translate(-50%, -50%);
}

.wheel-result {
    margin-top: 30px;
    animation: wheelSlideUpFade 0.4s ease forwards;
}

.wheel-success-text {
    font-size: 18px;
    font-weight: 800;
    color: #10b981;
    margin: 0 0 15px 0;
}

.wheel-coupon-box {
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 12px;
    font-family: monospace;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    user-select: all;
}

.wheel-retry-text {
    font-size: 14px;
    color: #f59e0b;
    margin: 10px 0;
    font-weight: 600;
}

.wheel-action-buttons .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

@keyframes wheelSlideUpFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
