/**
 * E-Ticaret Sitesi - Ana Stil Dosyası
 * Tema: Siyah-Beyaz Minimalist
 */

/* ========================================
   CSS Variables
======================================== */
:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --bg-card: #0f0f0f;
    --bg-hover: #1a1a1a;

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    --border-color: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);

    --accent-color: #ffffff;
    --accent-hover: rgba(255, 255, 255, 0.9);

    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    --transition: all 0.3s ease;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-glow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* ========================================
   Reset & Base
======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--text-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* ========================================
   Typography
======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   Layout
======================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ========================================
   Announcement Bar
======================================== */
.announcement-bar {
    background: #000000;
    color: #ffffff;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0 0 12px 12px;
}

.announcement-bar a {
    color: #ffffff;
    text-decoration: underline;
}

/* ========================================
   Header
======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.header-top {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.75rem;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.header-contact a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.header-contact a:hover {
    color: var(--text-primary);
}

.header-contact i {
    margin-right: 0.35rem;
    font-size: 0.7rem;
}

.header-main {
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo img {
    height: 32px;
    width: auto;
}

.search-box {
    flex: 1;
    max-width: 450px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.6rem 0.9rem;
    padding-left: 2.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-primary);
    font-size: 0.8125rem;
    transition: var(--transition);
}

.search-box input::placeholder {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.search-box input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: var(--bg-tertiary);
}

.search-box i {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-primary);
    transition: var(--transition);
    border-radius: 50%;
}

.header-action:hover {
    color: var(--text-secondary);
    background: var(--glass-bg);
}

.header-action i {
    font-size: 1rem;
}

.header-action .cart-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.header-action .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent-color);
    color: var(--bg-primary);
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.1rem 0.3rem;
    border-radius: 50px;
    min-width: 16px;
    text-align: center;
    line-height: 1.2;
}

/* Cart Action - Ensure Visibility */
.cart-action {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-action:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.cart-action i {
    font-size: 1.125rem !important;
    color: var(--text-primary) !important;
}

/* Navigation */
.nav {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.nav-dropdown a:last-child {
    border-bottom: none;
}

.nav-dropdown a:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    padding: 1rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent-color);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--bg-primary);
}

.btn-success {
    background: var(--success-color);
    color: #fff;
}

.btn-danger {
    background: var(--danger-color);
    color: #fff;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   Cards
======================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: 1.25rem;
}

/* ========================================
   Product Cards
======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-secondary);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Always Visible Favorite Button */
.product-favorite-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: #ef4444;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-favorite-btn:hover {
    background: #ef4444;
    color: #fff;
    transform: scale(1.1);
}

.product-favorite-btn i.fas {
    color: #ef4444;
}

.product-favorite-btn:hover i.fas {
    color: #fff;
}

/* Image Slider */
.product-image-slider {
    width: 100%;
    height: 100%;
    position: relative;
    touch-action: pan-x;
}

.product-image-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.product-image-slide {
    min-width: 100%;
    height: 100%;
}

.product-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.375rem;
    z-index: 5;
}

.product-image-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-image-dot.active {
    background: #fff;
    width: 18px;
    border-radius: 3px;
}

/* Quick View Button */
.product-quick-view {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 5;
}

.product-card:hover .product-quick-view {
    opacity: 1;
    transform: translateY(0);
}

.product-quick-view:hover {
    background: #fff;
    color: #000;
}

.product-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 5;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.badge-discount {
    background: var(--danger-color);
    color: #fff;
}

.badge-new {
    background: var(--success-color);
    color: #fff;
}

.badge-digital {
    background: var(--info-color);
    color: #fff;
}

.product-actions {
    display: none;
}

.product-action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    transition: var(--transition);
}

.product-action-btn:hover {
    background: var(--accent-color);
    color: var(--bg-primary);
}

.product-info {
    padding: 1rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.product-title {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a:hover {
    color: var(--text-secondary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.price-current {
    font-size: 1.125rem;
    font-weight: 700;
}

.price-old {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.product-rating i {
    color: #fbbf24;
}

.add-to-cart {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}

.add-to-cart:hover {
    background: var(--accent-color);
    color: var(--bg-primary);
    border-color: var(--accent-color);
}

/* ========================================
   Section Headers
======================================== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.section-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.section-link:hover {
    color: var(--text-primary);
}

/* ========================================
   Slider
======================================== */
.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y pinch-zoom;
}

.slider-container:active {
    cursor: grabbing;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    pointer-events: none;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.slider-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent-color);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--bg-primary);
}

.slider-arrow.prev {
    left: 1rem;
}

.slider-arrow.next {
    right: 1rem;
}

/* ========================================
   Logo Slider
======================================== */
.logo-slider {
    padding: 2rem 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.logo-slider-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
}

.logo-slider-track img {
    height: 40px;
    width: auto;
    opacity: 0.85;
    transition: var(--transition);
}

.logo-slider-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   Banner Section
======================================== */
.banner-section {
    padding: 2rem 0;
}

.banner-grid {
    display: grid;
    gap: 1rem;
}

.banner-grid.single {
    grid-template-columns: 1fr;
}

.banner-grid.double {
    grid-template-columns: repeat(2, 1fr);
}

.banner-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.banner-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: var(--transition);
}

.banner-item:hover img {
    transform: scale(1.02);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.banner-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* ========================================
   Forms
======================================== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent-color);
    background: var(--bg-tertiary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

.form-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.form-error {
    color: var(--danger-color);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* ========================================
   Alerts
======================================== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--success-color);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--danger-color);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--warning-color);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--info-color);
}

/* ========================================
   Popup
======================================== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.popup-overlay.active .popup {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.popup-close:hover {
    background: var(--accent-color);
    color: var(--bg-primary);
}

.popup-image img {
    width: 100%;
    height: auto;
}

.popup-content {
    padding: 2rem;
    text-align: center;
}

.popup-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.popup-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links a {
    display: block;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-contact-item i {
    width: 20px;
    color: var(--text-primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--bg-primary);
    border-color: var(--accent-color);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-payments {
    display: flex;
    gap: 0.5rem;
}

.footer-payments img {
    height: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

/* ========================================
   Cart & Checkout
======================================== */
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--bg-hover);
}

.quantity-input {
    width: 50px;
    text-align: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    padding: 0.5rem;
}

.cart-item-remove {
    color: var(--danger-color);
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove:hover {
    opacity: 0.7;
}

.cart-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.cart-summary-row.total {
    font-size: 1.125rem;
    font-weight: 600;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

/* ========================================
   WhatsApp Button
======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ========================================
   Loading
======================================== */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .search-box {
        order: 3;
        max-width: 100%;
        margin-top: 0.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .header-top {
        display: none;
    }

    .header-main {
        padding: 0.5rem 0;
    }

    .header-content {
        gap: 0.75rem;
    }

    .logo img {
        height: 26px;
    }

    .search-box {
        margin-top: 0.5rem;
    }

    .search-box input {
        padding: 0.5rem 0.75rem;
        padding-left: 2.25rem;
        font-size: 0.75rem;
    }

    .search-box i {
        left: 0.75rem;
        font-size: 0.7rem;
    }

    .header-actions {
        gap: 0.25rem;
    }

    .header-action {
        width: 32px;
        height: 32px;
    }

    .header-action i {
        font-size: 0.875rem;
    }

    .nav-list {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 0.5rem;
    }

    .nav-link {
        white-space: nowrap;
        padding: 0.6rem 0.75rem;
        font-size: 0.75rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .banner-grid.double {
        grid-template-columns: 1fr;
    }

    .banner-item img {
        height: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-info {
        padding: 0.625rem;
    }

    .product-title {
        font-size: 0.8125rem;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }

    .product-category {
        font-size: 0.625rem;
    }

    .price-current {
        font-size: 0.875rem;
        font-weight: 700;
    }

    .price-old {
        font-size: 0.6875rem;
    }

    .product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.125rem;
        margin-bottom: 0.5rem;
    }

    .product-rating {
        font-size: 0.625rem;
        margin-bottom: 0.5rem;
    }

    .add-to-cart {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .product-favorite-btn {
        width: 28px;
        height: 28px;
        top: 0.5rem;
        right: 0.5rem;
    }

    .product-quick-view {
        width: 28px;
        height: 28px;
        bottom: 0.5rem;
        right: 0.5rem;
    }

    .product-badges {
        top: 0.5rem;
        left: 0.5rem;
    }

    .badge {
        padding: 0.125rem 0.5rem;
        font-size: 0.625rem;
    }

    .cart-item {
        flex-direction: column;
    }

    .cart-item-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1rem;
        right: 1rem;
    }
}

/* ========================================
   Glassmorphism & Modern Premium Styles
======================================== */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* ========================================
   Premium Hero Section - Glassmorphism
======================================== */
.hero.premium-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-glass-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

/* Neon Glowing Icon */
.hero-neon-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    position: relative;
    animation: neonPulse 2s ease-in-out infinite;
}

.hero-neon-icon i {
    font-size: 2rem;
    color: var(--neon-color, #00ff88);
    filter: drop-shadow(0 0 10px var(--neon-color, #00ff88));
}

.hero-neon-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-color, #00ff88), transparent 60%);
    opacity: 0.4;
    animation: neonRotate 4s linear infinite;
}

@keyframes neonPulse {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(var(--neon-color, #00ff88), 0.3),
            inset 0 0 20px rgba(var(--neon-color, #00ff88), 0.1);
    }

    50% {
        box-shadow:
            0 0 40px var(--neon-color, #00ff88),
            inset 0 0 30px rgba(var(--neon-color, #00ff88), 0.2);
    }
}

@keyframes neonRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hero Title with Gradient Effect */
.hero-title-gradient {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Glass Subtitle */
.hero-subtitle-glass {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary Button with Neon Glow */
.hero-btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.hero-btn-icon {
    margin-right: 0.5rem;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 3px var(--neon-color, #00ff88));
    }

    50% {
        filter: drop-shadow(0 0 8px var(--neon-color, #00ff88));
    }
}

/* Secondary Button (Kayıt Ol) */
.hero-btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hero Image with Glass Effect */
.hero-image-glass {
    margin-top: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-image-glass img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-glass:hover img {
    transform: scale(1.02);
}

/* Mobile Responsive Hero */
@media (max-width: 768px) {
    .hero.premium-hero {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .hero-glass-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }

    .hero-neon-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .hero-neon-icon i {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero-btn-primary i,
    .hero-btn-secondary i {
        font-size: 0.875rem;
    }
}

/* Glassmorphism Header */
.header.glass-header {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.header-top.glass {
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
}

.header-main.glass {
    background: transparent;
}

/* Modern Search Box */
.search-box.glass input {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-box.glass input:focus {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--glass-glow);
}

/* Modern Navigation */
.nav.glass-nav {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 80%;
}

/* Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.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 ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Modern Cards - Glassmorphism */
.product-card.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.product-card.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--glass-shadow), var(--glass-glow);
}

/* Hero Section Enhancements */
.hero.modern-hero {
    position: relative;
    overflow: hidden;
}

.hero.modern-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Modern Footer */
.footer.modern-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.footer.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-title {
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
}

.footer-social a {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Footer Cards Section */
.footer-contact-section {
    min-width: 280px;
}

.footer-contact-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 1rem;
    flex-wrap: nowrap !important;
}

.footer-contact {
    flex: 1;
    min-width: 0;
}

.footer-cards-image {
    display: none;
}

@media (min-width: 992px) {
    .footer-cards-image {
        display: flex !important;
        flex-shrink: 0 !important;
        width: 120px !important;
        height: auto;
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: var(--glass-shadow);
        transition: transform 0.3s ease;
        align-self: center;
    }

    .footer-cards-image:hover {
        transform: scale(1.05);
    }

    .footer-cards-image img {
        width: 100% !important;
        height: auto !important;
        display: block;
        object-fit: contain;
    }
}

/* Footer Credits (Above Line) */
.footer-credits {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-credits p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-avanory {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Modern Footer Bottom */
.footer-bottom.modern {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 2rem;
}

/* Stacked Payment Cards */
.footer-payments.stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-payments.stacked img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-payments.stacked img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-avanory {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.footer-paytr {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-paytr img {
    height: 32px;
    filter: none !important;
    opacity: 1 !important;
    transition: transform 0.3s ease;
}

.footer-paytr img:hover {
    transform: scale(1.1);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-payments img {
    height: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-payments img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive Footer Bottom */
@media (max-width: 768px) {
    .footer-bottom.modern {
        padding: 1.5rem 0;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-paytr {
        order: 1;
    }

    .footer-payment-methods {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        order: 2;
        width: 100%;
    }

    .footer-payments.stacked {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-payments.stacked img {
        height: 20px;
    }

    .footer-kartlar {
        display: flex;
        align-items: center;
    }

    .footer-kartlar img {
        height: 45px;
        width: auto;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    }
}

/* Desktop Footer Payment Layout */
@media (min-width: 769px) {
    .footer-payment-methods {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2.5rem;
    }

    .footer-kartlar {
        display: flex;
        align-items: center;
        margin-left: 1rem;
    }

    .footer-kartlar img {
        height: 70px;
        width: auto;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
        transition: transform 0.3s ease;
    }

    .footer-kartlar img:hover {
        transform: scale(1.08);
    }
}

/* Hover Animations for Links */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

/* Header Action Buttons Animation */
.header-action {
    position: relative;
}

.header-action::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: width 0.3s ease;
}

.header-action:hover::after {
    width: 100%;
}

/* Smooth scroll behavior enhancement */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus-visible,
.nav-link:focus-visible,
.header-action:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* ========================================
   Mobile Menu Button (Hamburger)
======================================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ========================================
   Mobile Sidebar - Modern White Theme
======================================== */
.mobile-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar.light-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 4px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    overflow-y: auto;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mobile-sidebar.light-sidebar.active {
    left: 0;
}

/* Sidebar Header */
.mobile-sidebar.light-sidebar .sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-brand {
    display: flex;
    align-items: center;
}

.sidebar-brand img {
    height: 28px;
    width: auto;
    filter: brightness(1.1);
}

.sidebar-brand span {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.3px;
    font-family: 'Poppins', sans-serif;
}

.mobile-sidebar.light-sidebar .sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-sidebar.light-sidebar .sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Sidebar Navigation */
.mobile-sidebar.light-sidebar .sidebar-nav {
    padding: 1rem 0;
}

.mobile-sidebar.light-sidebar .sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.2s ease;
}

.mobile-sidebar.light-sidebar .sidebar-link:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 1.75rem;
}

.mobile-sidebar.light-sidebar .sidebar-link i {
    width: 22px;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    transition: color 0.2s ease;
}

.mobile-sidebar.light-sidebar .sidebar-link:hover i {
    color: rgba(255, 255, 255, 0.9);
}

/* Sidebar Sections */
.sidebar-section {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
}

.sidebar-section-header i {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Accordion Styles */
.sidebar-accordion {
    margin: 0;
}

.sidebar-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-accordion-trigger:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.sidebar-accordion-trigger .accordion-icon {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease, color 0.2s ease;
}

.sidebar-accordion-trigger.active .accordion-icon {
    transform: rotate(90deg);
    color: rgba(255, 255, 255, 0.8);
}

.sidebar-accordion-content {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    transition: max-height 0.3s ease;
}

.sidebar-accordion-content.active {
    max-height: 500px;
}

.sidebar-sublink {
    display: block;
    padding: 0.625rem 1.5rem 0.625rem 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
    position: relative;
}

.sidebar-sublink::before {
    content: '';
    position: absolute;
    left: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sidebar-sublink:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    padding-left: 2.75rem;
}

.sidebar-sublink:hover::before {
    opacity: 1;
}

/* Link Items with Colorful Icons */
.sidebar-link-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.2s ease;
}

.sidebar-link-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding-left: 1.75rem;
}

.sidebar-link-item i {
    width: 20px;
    font-size: 0.9375rem;
    text-align: center;
}

/* All Icons - Single Color (Gray/White) */
.sidebar-link-item i {
    width: 20px;
    font-size: 0.9375rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.sidebar-link-item:hover i {
    color: rgba(255, 255, 255, 0.9);
}

.sidebar-link-item.logout {
    color: rgba(239, 68, 68, 0.9);
}

.sidebar-link-item.logout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.sidebar-link-item.logout i {
    color: #ef4444;
}

/* Mobile Search Styles */
.mobile-search {
    display: none;
}

.desktop-search {
    display: flex;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .desktop-search {
        display: none;
    }

    .mobile-search {
        display: flex;
        width: 100%;
        margin-top: 0.75rem;
        max-width: 100%;
    }

    .mobile-search input {
        width: 100%;
        padding: 0.75rem 1rem;
        padding-left: 2.75rem;
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        color: var(--text-primary);
        font-size: 0.875rem;
        transition: var(--transition);
    }

    .mobile-search input::placeholder {
        color: var(--text-muted);
    }

    .mobile-search input:focus {
        border-color: rgba(255, 255, 255, 0.3);
        background: var(--bg-tertiary);
    }

    .mobile-search i {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        font-size: 0.875rem;
    }
}

/* Hide hamburger menu on desktop */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }

    .mobile-sidebar,
    .mobile-sidebar-overlay {
        display: none;
    }
}

/* ========================================
   Hero Section Redesign - Compact Premium Layout
======================================== */
.hero-layout {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    min-height: auto;
}

.hero-left {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    flex: 1;
    display: none;
}

@media (min-width: 1024px) {
    .hero-right {
        display: block;
    }
}

/* Hero Title - Poppins Font (same as sidebar) */
.hero-title-premium {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.hero-subtitle-compact {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Hero Glass Card */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem;
}

/* ========================================
   Super Fırsat Panel - Glass Effect with Horizontal Products
======================================== */
.super-firsat-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.super-firsat-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.super-firsat-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.super-firsat-header i {
    color: #f59e0b;
    font-size: 1rem;
    animation: pulse-fire 1.5s ease-in-out infinite;
}

@keyframes pulse-fire {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.super-firsat-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Horizontal Product Grid */
.super-firsat-products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    flex: 1;
}

/* Mini Product Card - Same style as product-card but smaller */
.super-firsat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.super-firsat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.super-firsat-item-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.super-firsat-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.super-firsat-item:hover .super-firsat-item-image img {
    transform: scale(1.05);
}

.super-firsat-item-discount {
    position: absolute;
    top: 0.375rem;
    left: 0.375rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.super-firsat-item-info {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.super-firsat-item-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.super-firsat-item-prices {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-top: auto;
}

.super-firsat-item-price {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #22c55e;
}

.super-firsat-item-old-price {
    font-family: 'Poppins', sans-serif;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

/* Empty State */
.super-firsat-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    text-align: center;
    padding: 1rem;
}

.super-firsat-empty i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   Enhanced Product Cards
======================================== */

/* Enhanced Discount Badge */
.badge-discount-enhanced {
    background: linear-gradient(135deg, #FF6B6B 0%, #ee5a5a 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(238, 90, 90, 0.4);
    animation: pulse-discount 1.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-discount-enhanced i {
    font-size: 0.625rem;
}

@keyframes pulse-discount {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Low Stock Warning */
.badge-low-stock {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-low-stock i {
    font-size: 0.625rem;
}

/* Product Rating - Always Visible */
.product-rating-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.product-rating-stars i {
    font-size: 0.75rem;
    color: #fbbf24;
}

.product-rating-stars i.empty {
    color: rgba(255, 255, 255, 0.2);
}

.product-rating-stars span {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

/* Favorites Button - Below Add to Cart */
.product-actions-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-favorite-bottom {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.625rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-favorite-bottom:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.btn-favorite-bottom.active {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #ef4444;
}

.btn-favorite-bottom.active i {
    font-weight: 900;
}

.btn-favorite-bottom i {
    font-size: 0.875rem;
}

/* Stock Warning Text */
.product-stock-warning {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #f59e0b;
    margin-top: 0.5rem;
    padding: 0.375rem 0.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 6px;
}

.product-stock-warning i {
    font-size: 0.6875rem;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Enhanced Product Card Hover */
.product-card {
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(145deg, transparent 40%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

/* Mobile Product Card Optimizations */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-info {
        padding: 0.75rem;
    }

    .product-title {
        font-size: 0.8125rem;
    }

    .price-current {
        font-size: 1rem;
    }

    .add-to-cart {
        padding: 0.625rem;
        font-size: 0.8125rem;
    }

    .product-rating-stars i {
        font-size: 0.625rem;
    }

    .btn-favorite-bottom {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .btn-favorite-bottom span {
        display: none;
    }

    .product-stock-warning {
        font-size: 0.6875rem;
        padding: 0.25rem 0.375rem;
    }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-layout {
        flex-direction: column;
        min-height: auto;
        gap: 1rem;
    }

    .hero-title-premium {
        font-size: 1.5rem;
        text-align: center;
    }

    .hero-subtitle-compact {
        font-size: 0.875rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* ========================================
   Hero Layout & Super Fırsat Panel
======================================== */
.hero-layout {
    display: flex;
    gap: 1.25rem;
    min-height: 280px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    width: 420px;
    flex-shrink: 0;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title-premium {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle-compact {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 8px;
}

/* ========================================
   Efsane Fırsatlar Panel - Altın Sarısı Tema
======================================== */
.efsane-firsat-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Başlık üst kenarda ortalanmış */
.efsane-firsat-header {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    z-index: 10;
}

.efsane-firsat-header i {
    font-size: 0.875rem;
    color: #d4af37;
    animation: fireGlow 1.5s ease-in-out infinite alternate;
}

.efsane-firsat-header h3 {
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4af37;
    white-space: nowrap;
}

@keyframes fireGlow {
    from {
        text-shadow: 0 0 5px rgba(255, 100, 0, 0.8);
    }

    to {
        text-shadow: 0 0 15px rgba(255, 150, 0, 1);
    }
}

.efsane-firsat-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.375rem;
    padding: 1rem 0.375rem 0.375rem;
    overflow: hidden;
}

.efsane-firsat-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.25s ease;
    text-decoration: none;
    position: relative;
}

.efsane-firsat-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

/* AVANTAJLI Badge - Daha Büyük */
.efsane-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.95) 0%, rgba(244, 208, 63, 0.95) 100%);
    color: #000;
    font-size: 0.5rem;
    font-weight: 800;
    padding: 3px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.efsane-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 18px;
}

.efsane-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.efsane-firsat-card:hover .efsane-card-image img {
    transform: scale(1.05);
}

.efsane-discount {
    position: absolute;
    bottom: 2px;
    left: 2px;
    background: #d4af37;
    color: #000;
    font-size: 0.4375rem;
    font-weight: 700;
    padding: 1px 3px;
    border-radius: 3px;
}

.efsane-card-info {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.efsane-card-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.efsane-card-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.efsane-card-rating i {
    font-size: 0.5625rem;
    color: #d4af37;
}

.efsane-card-rating span {
    font-size: 0.5625rem;
    color: rgba(212, 175, 55, 0.8);
    margin-left: 3px;
}

.efsane-card-price {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: auto;
}

.efsane-old-price {
    font-size: 0.5625rem;
    color: #888;
    text-decoration: line-through;
    line-height: 1;
}

.efsane-new-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1.2;
}

/* Sepete Ekle Butonu */
.efsane-add-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.375rem;
    margin-top: 0.375rem;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.9) 0%, rgba(244, 208, 63, 0.9) 100%);
    border: none;
    border-radius: 6px;
    color: #000;
    font-size: 0.625rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.efsane-add-cart:hover {
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.efsane-add-cart i {
    font-size: 0.625rem;
}

/* Ürün ismi link stili */
a.efsane-card-name {
    text-decoration: none;
    transition: color 0.2s ease;
}

a.efsane-card-name:hover {
    color: #d4af37;
}

.efsane-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: rgba(212, 175, 55, 0.5);
}

.efsane-empty i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.efsane-empty span {
    font-size: 0.75rem;
}

/* Hide Efsane Panel on Mobile */
@media (max-width: 992px) {
    .hero-right {
        display: none;
    }

    .hero-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-glass-card {
        padding: 1.25rem;
    }

    .hero-title-premium {
        font-size: 1.375rem;
        text-align: center;
    }

    .hero-subtitle-compact {
        font-size: 0.8125rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* ========================================
   Logo Slider - Markalar
======================================== */
.logo-slider {
    background: var(--bg-secondary);
    padding: 0.5rem 0;
    overflow: hidden;
    position: relative;
}

.logo-slider .container {
    overflow: visible;
    max-width: 100%;
    padding: 0.5rem 0;
}

.logo-slider-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: logoScroll 25s linear infinite;
    padding: 0.5rem 0;
}

.logo-slider-track img {
    height: 45px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
    /* Hafif beyaz parlama */
    filter: brightness(0) invert(1) drop-shadow(0 0 3px rgba(255, 255, 255, 0.25));
}

.logo-slider-track img:hover {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
    transform: scale(1.1);
}

.logo-slider-track a {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.5rem;
}

/* Kesintisiz sonsuz döngü animasyonu */
@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobilde 1.25x hızlı */
@media (max-width: 768px) {
    .logo-slider-track {
        animation-duration: 20s;
        gap: 2.5rem;
    }

    .logo-slider-track img {
        height: 35px;
    }
}

/* ========================================
   Checkout Page - Premium Design
======================================== */
.checkout-page {
    min-height: 100vh;
    padding: 2rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.checkout-page .container {
    max-width: 1200px;
}

/* Checkout Header */
.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.checkout-header::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 2px;
}

.checkout-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.checkout-subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* Progress Steps */
.checkout-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.progress-step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.progress-step.active .progress-step-number {
    background: #ffffff;
    border-color: #ffffff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.progress-step.completed .progress-step-number {
    background: var(--success-color);
    border-color: var(--success-color);
    color: #fff;
}

.progress-step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.progress-step.active .progress-step-label {
    color: var(--text-primary);
}

.progress-line {
    width: 60px;
    height: 2px;
    background: var(--border-color);
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
}

.progress-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--success-color), #ffffff);
    transition: width 0.5s ease;
}

.progress-line.completed::after {
    width: 100%;
}

/* Checkout Layout */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}

/* Checkout Card (Form Sections) */
.checkout-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.checkout-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.checkout-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    font-size: 1.125rem;
    color: #fff;
}

.checkout-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.checkout-card-body {
    padding: 1.5rem;
}

/* Enhanced Form Fields */
.checkout-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkout-form-row.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.checkout-form-group {
    margin-bottom: 1.25rem;
}

.checkout-form-group:last-child {
    margin-bottom: 0;
}

.checkout-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.025em;
}

.checkout-form-label .required {
    color: var(--danger-color);
    margin-left: 0.25rem;
}

.checkout-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.checkout-input:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.checkout-input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.checkout-input::placeholder {
    color: var(--text-muted);
}

textarea.checkout-input {
    min-height: 90px;
    resize: vertical;
}

select.checkout-input {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(255, 255, 255, 0.03);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
    color: #fff;
}

select.checkout-input:focus {
    background-color: rgba(255, 255, 255, 0.05);
}

select.checkout-input option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 0.75rem 1rem;
}

select.checkout-input option:hover,
select.checkout-input option:focus,
select.checkout-input option:checked {
    background-color: #2a2a2a;
    color: #fff;
}

/* Payment Method Selection */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.payment-method.selected {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-method-radio {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.payment-method.selected .payment-method-radio {
    border-color: #fff;
}

.payment-method.selected .payment-method-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: radioScale 0.2s ease;
}

@keyframes radioScale {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.payment-method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.payment-method-icon.card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.payment-method-icon.bank {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.payment-method-logo {
    width: 70px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.payment-method-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.payment-method-info {
    flex: 1;
}

.payment-method-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.125rem;
}

.payment-method-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.payment-method-badge {
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--success-color) 0%, #10b981 100%);
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Order Summary Card */
.order-summary {
    position: sticky;
    top: 100px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.order-summary-header {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-summary-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.order-summary-title i {
    font-size: 1rem;
    opacity: 0.7;
}

.order-summary-items {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.order-summary-items::-webkit-scrollbar {
    width: 4px;
}

.order-summary-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.order-summary-items::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.order-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.order-item-image {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-quantity {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.order-item-info {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.order-item-details {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.order-item-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Summary Totals */
.order-summary-totals {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-label {
    color: var(--text-secondary);
}

.summary-value {
    font-weight: 500;
    color: var(--text-primary);
}

.summary-value.free {
    color: var(--success-color);
    font-weight: 600;
}

.summary-value.discount {
    color: var(--success-color);
}

.summary-row.total {
    padding-top: 1rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.125rem;
}

.summary-row.total .summary-label {
    color: var(--text-primary);
    font-weight: 600;
}

.summary-row.total .summary-value {
    font-size: 1.375rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Submit Button */
.order-summary-action {
    padding: 1.5rem;
    padding-top: 0;
}

.checkout-submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.checkout-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.checkout-submit-btn:hover::before {
    left: 100%;
}

.checkout-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.checkout-submit-btn:active {
    transform: translateY(0);
}

.checkout-submit-btn i {
    font-size: 1rem;
}

/* Security Notice */
.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.security-notice i {
    color: var(--success-color);
}

/* Terms Notice */
.terms-notice {
    text-align: center;
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.5;
}

.terms-notice a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.terms-notice a:hover {
    color: var(--text-primary);
}

/* Saved Addresses Dropdown */
.saved-addresses-select {
    position: relative;
    margin-bottom: 1.25rem;
}

.saved-address-badge {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Checkout Responsive */
@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .order-summary {
        position: static;
        order: -1;
    }

    .order-summary-items {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .checkout-page {
        padding: 1rem 0 2rem;
    }

    .checkout-header {
        margin-bottom: 2rem;
    }

    .checkout-title {
        font-size: 1.75rem;
    }

    .checkout-progress {
        margin-bottom: 1.5rem;
        gap: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 0.5rem;
    }

    .progress-step-number {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .progress-step-label {
        font-size: 0.6875rem;
        display: none;
    }

    .progress-step.active .progress-step-label {
        display: block;
    }

    .progress-line {
        width: 30px;
    }

    .checkout-form-row {
        grid-template-columns: 1fr;
    }

    .checkout-form-row.three-cols {
        grid-template-columns: 1fr;
    }

    .checkout-card {
        border-radius: 12px;
    }

    .checkout-card-header {
        padding: 1rem 1.25rem;
    }

    .checkout-card-body {
        padding: 1.25rem;
    }

    .checkout-card-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .payment-method {
        padding: 0.75rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .payment-method-radio {
        width: 18px;
        height: 18px;
    }

    .payment-method-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .payment-method-logo {
        width: 55px;
        height: 36px;
    }

    .payment-method-info {
        flex: 1;
        min-width: 100px;
    }

    .payment-method-name {
        font-size: 0.8125rem;
    }

    .payment-method-desc {
        font-size: 0.6875rem;
    }

    .payment-method-badge {
        font-size: 0.5625rem;
        padding: 0.2rem 0.5rem;
    }

    /* Order Item Mobile Fixes */
    .order-item {
        gap: 0.75rem;
    }

    .order-item-image {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 8px;
    }

    .order-item-image img {
        width: 50px;
        height: 50px;
        min-width: 50px;
        object-fit: cover;
        display: block;
    }

    .order-item-quantity {
        width: 18px;
        height: 18px;
        font-size: 0.5625rem;
        bottom: -3px;
        right: -3px;
    }

    .order-item-name {
        font-size: 0.8125rem;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }

    .order-item-details {
        font-size: 0.6875rem;
    }

    .order-item-price {
        font-size: 0.8125rem;
    }

    .order-summary {
        border-radius: 16px;
    }

    .order-summary-header,
    .order-summary-items,
    .order-summary-totals,
    .order-summary-action {
        padding: 1rem;
    }

    .order-summary-action {
        padding-top: 0;
    }
}

/* Checkout Alert Styles */
.checkout-alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.checkout-alert i {
    font-size: 1.25rem;
    color: var(--danger-color);
}

.checkout-alert-text {
    font-size: 0.875rem;
    color: var(--danger-color);
}