/**
 * E-Ticaret E-Ticaret - Turuncu Tema
 * Mobile-first responsive tasarım
 */

/* ============ CSS DEĞİŞKENLERİ ============ */
:root {
    --orange-primary: #FF6B00;
    --orange-dark: #E55D00;
    --orange-light: #FF8C33;
    --orange-pale: #FFF3E8;
    --orange-gradient: linear-gradient(135deg, #FF6B00, #FF8C33);

    --dark: #1A1D23;
    --dark-secondary: #2D3436;
    --gray-dark: #636E72;
    --gray: #B2BEC3;
    --gray-light: #DFE6E9;
    --gray-lighter: #F5F6FA;
    --white: #FFFFFF;

    --success: #00B894;
    --danger: #E74C3C;
    --warning: #FDCB6E;
    --info: #0984E3;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-orange: 0 4px 15px rgba(255, 107, 0, 0.3);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============ RESET & GLOBAL ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--dark);
    background: var(--gray-lighter);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--orange-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--orange-dark);
}

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

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

.bg-orange {
    background: var(--orange-primary) !important;
    color: white !important;
}

.btn-orange {
    background: var(--orange-gradient);
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

.btn-orange:hover {
    background: var(--orange-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-orange-outline {
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    background: transparent;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

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

/* ============ ÜST BAR ============ */
.top-bar {
    background: var(--dark);
    color: var(--gray);
    padding: 6px 0;
    font-size: 12px;
}

.top-bar a {
    color: var(--gray);
}

.top-bar a:hover {
    color: var(--orange-light);
}

.top-bar-left span,
.top-bar-right span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-bar i {
    color: var(--orange-primary);
}

/* ============ ANA HEADER ============ */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    align-items: center;
    padding: 12px 0;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 32px;
    color: var(--orange-primary);
}

.logo-name {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.logo-slogan {
    display: block;
    font-size: 10px;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Arama Kutusu */
.search-box {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-form {
    display: flex;
    border: 2px solid var(--orange-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.search-form:focus-within {
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.search-input {
    flex: 1;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    outline: none;
    background: var(--white);
}

.search-btn {
    background: var(--orange-gradient);
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--orange-dark);
}

/* Arama Sonuçları Dropdown */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
    cursor: pointer;
}

.search-result-item:hover {
    background: var(--orange-pale);
}

.search-result-item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.search-result-item .result-info {
    flex: 1;
}

.search-result-item .result-name {
    font-weight: 500;
    font-size: 13px;
    color: var(--dark);
}

.search-result-item .result-price {
    font-weight: 700;
    color: var(--orange-primary);
    font-size: 14px;
}

/* Header Butonları */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    color: var(--dark-secondary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.header-action-btn:hover {
    color: var(--orange-primary);
    background: var(--orange-pale);
}

.header-action-btn i {
    font-size: 20px;
}

.action-label {
    font-size: 11px;
    font-weight: 500;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 6px;
    background: var(--orange-primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
    background: none;
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--orange-primary);
    color: white;
}

/* ============ KATEGORİ NAV ============ */
.category-nav {
    background: var(--dark);
    border-top: 3px solid var(--orange-primary);
}

.category-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.category-menu-item>a {
    display: block;
    padding: 12px 16px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.category-menu-item>a:hover,
.category-menu-item.has-mega>a:hover {
    background: var(--orange-primary);
    color: white;
}

.category-menu-item.has-mega>a {
    background: var(--orange-primary);
    font-weight: 600;
}

/* Mega Menü */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 30px 0;
    display: none;
    z-index: 999;
    border-top: 3px solid var(--orange-primary);
}

.category-menu-item.has-mega:hover .mega-menu {
    display: block;
    animation: fadeDown 0.3s ease;
}

.mega-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.mega-col h6 {
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--orange-pale);
}

.mega-col h6 a {
    color: var(--dark);
}

.mega-col h6 a:hover {
    color: var(--orange-primary);
}

.mega-col ul {
    list-style: none;
    padding: 0;
}

.mega-col ul li a {
    display: block;
    padding: 4px 0;
    color: var(--gray-dark);
    font-size: 13px;
}

.mega-col ul li a:hover {
    color: var(--orange-primary);
    padding-left: 5px;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

/* ============ MOBİL MENÜ ============ */
.mobile-nav-list {
    list-style: none;
    padding: 0;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-light);
    font-weight: 500;
}

.mobile-nav-list li a:hover {
    color: var(--orange-primary);
}

.mobile-nav-list li a i {
    width: 20px;
    text-align: center;
    color: var(--orange-primary);
}

.badge.bg-orange {
    background: var(--orange-primary) !important;
}

/* ============ ANA İÇERİK ============ */
.main-content {
    min-height: 60vh;
}

/* ============ PREMIUM HERO SLIDER ============ */
.hero-premium {
    position: relative;
    overflow: hidden;
}

.hero-slide-premium {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.min-vh-hero {
    min-height: 520px;
}

/* Floating Shapes */
.hero-floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: white;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: 10%;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    animation: floatShape 6s ease-in-out infinite 1s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 25%;
    animation: floatShape 7s ease-in-out infinite 0.5s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    animation: slideUp 0.6s ease-out;
}

/* Hero Title */
.hero-title-xl {
    font-size: 52px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: slideUp 0.8s ease-out;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    max-width: 500px;
    line-height: 1.7;
    animation: slideUp 1s ease-out;
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: slideUp 1.1s ease-out;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: white;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: var(--orange-dark);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    color: white;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 32px;
    animation: slideUp 1.3s ease-out;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.hero-stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Icon Display */
.hero-icon-display {
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 3s ease-in-out infinite;
}

.hero-icon-display i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Image Frame - Sağ taraftaki görsel */
.hero-image-frame {
    width: 100%;
    max-width: 400px;
    max-height: 350px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 107, 0, 0.15);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 14px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

@media (max-width: 991px) {
    .hero-image-frame {
        max-width: 220px;
        max-height: 180px;
        padding: 8px;
        border-radius: 14px;
        margin: 0 auto;
    }

    .hero-image-frame img {
        max-height: 160px;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px 10px rgba(255, 255, 255, 0.08);
    }
}

/* Custom Nav Buttons */
.hero-nav-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: var(--transition);
}

.hero-nav-btn:hover {
    background: var(--orange-primary);
    transform: scale(1.1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 1;
}

/* Progress Indicators */
.hero-indicators {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 10;
}

.hero-indicator-track {
    display: flex;
    gap: 8px;
}

.hero-indicator {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-indicator-fill {
    display: block;
    height: 100%;
    width: 0;
    background: white;
    border-radius: 4px;
    transition: none;
}

.hero-indicator.active .hero-indicator-fill {
    animation: indicatorProgress 6s linear;
}

@keyframes indicatorProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Slider Responsive */
@media (max-width: 991px) {
    .hero-slide-premium {
        min-height: auto;
        padding: 40px 0;
        overflow: visible;
    }

    .min-vh-hero {
        min-height: auto;
    }

    .hero-title-xl {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat strong {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .hero-slide-premium {
        min-height: auto;
        padding: 30px 0;
    }

    .min-vh-hero {
        min-height: auto;
    }

    .hero-title-xl {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 12px 24px;
        font-size: 13px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat strong {
        font-size: 18px;
    }

    .hero-indicator {
        width: 40px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* ============ ÜRÜN KARTLARI ============ */
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--gray-lighter);
}

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

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

/* Badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.badge-sale {
    background: var(--danger);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
}

.badge-new {
    background: var(--success);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
}

/* Hızlı Ekle */
.product-quick-add {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    padding: 10px;
    transition: var(--transition);
}

.product-card:hover .product-quick-add {
    bottom: 0;
}

.quick-add-btn {
    width: 100%;
    padding: 10px;
    background: var(--orange-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.quick-add-btn:hover {
    background: var(--orange-dark);
}

.product-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-brand {
    font-size: 11px;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-card-title a {
    color: var(--dark);
}

.product-card-title a:hover {
    color: var(--orange-primary);
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 18px;
    font-weight: 800;
    color: var(--orange-primary);
}

.price-old {
    font-size: 13px;
    color: var(--gray);
    text-decoration: line-through;
}

.price-discount {
    font-size: 11px;
    font-weight: 700;
    color: var(--danger);
    background: #fde8e5;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Ürün Puanı */
.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.product-rating i {
    font-size: 12px;
    color: var(--warning);
}

.product-rating .rating-count {
    font-size: 11px;
    color: var(--gray-dark);
}

/* ============ BÖLÜM BAŞLIKLARI ============ */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    position: relative;
    padding-left: 16px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--orange-gradient);
    border-radius: 2px;
}

.section-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--orange-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-link:hover {
    gap: 8px;
}

/* ============ KATEGORİ KARTLARI ============ */
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    background: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid var(--orange-primary);
}

.category-card i {
    font-size: 32px;
    color: var(--orange-primary);
    margin-bottom: 10px;
    transition: var(--transition);
}

.category-card:hover i {
    transform: scale(1.2);
}

.category-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

/* ============ MARKA GÖSTERİMİ ============ */
.brand-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.brand-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.brand-card img {
    max-height: 60px;
    opacity: 0.7;
    transition: var(--transition);
}

.brand-card:hover img {
    opacity: 1;
}

/* ============ ÜRÜN DETAY ============ */
.product-detail-gallery {
    position: relative;
}

.main-product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
}

.product-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.product-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

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

.product-detail-info {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
}

.product-detail-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-detail-sku {
    font-size: 13px;
    color: var(--gray-dark);
    margin-bottom: 16px;
}

.product-detail-price-box {
    background: var(--orange-pale);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.detail-price-current {
    font-size: 32px;
    font-weight: 800;
    color: var(--orange-primary);
}

.detail-price-old {
    font-size: 18px;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 12px;
}

.product-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.meta-item i {
    color: var(--orange-primary);
    width: 16px;
    text-align: center;
}

.stock-available {
    color: var(--success);
    font-weight: 600;
}

.stock-out {
    color: var(--danger);
    font-weight: 600;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}

.qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--gray-light);
    border-left: none;
    border-right: none;
    font-weight: 600;
    font-size: 16px;
    outline: none;
}

.add-to-cart-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ============ SAYFA BREADCRUMB ============ */
.page-breadcrumb {
    background: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 24px;
}

.breadcrumb {
    margin: 0;
    font-size: 13px;
}

.breadcrumb-item a {
    color: var(--gray-dark);
}

.breadcrumb-item a:hover {
    color: var(--orange-primary);
}

.breadcrumb-item.active {
    color: var(--dark);
    font-weight: 500;
}

/* ============ SEPET SAYFASI ============ */
.cart-table {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    background: var(--dark);
    color: white;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
}

.cart-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-light);
    vertical-align: middle;
}

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-product-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-product-name {
    font-weight: 600;
    color: var(--dark);
}

.cart-remove-btn {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.cart-remove-btn:hover {
    transform: scale(1.2);
}

.cart-summary {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.cart-summary h4 {
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange-pale);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.summary-total {
    font-size: 20px;
    font-weight: 800;
    color: var(--orange-primary);
    border-top: 2px solid var(--dark);
    padding-top: 12px;
    margin-top: 12px;
}

/* ============ KATEGORİ LİSTE SAYFASI ============ */
.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 20px;
}

.filter-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 13px;
}

.filter-option input[type="checkbox"] {
    accent-color: var(--orange-primary);
    width: 16px;
    height: 16px;
}

.price-range-inputs {
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-range-inputs input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 13px;
    outline: none;
    transition: var(--transition);
}

.price-range-inputs input:focus {
    border-color: var(--orange-primary);
}

.price-range-inputs span {
    color: var(--gray);
    font-weight: 600;
}

/* Mobilde filtreleri gizle */
@media (max-width: 991px) {
    .filter-sidebar {
        position: static;
    }
}

/* Sıralama Barkı */
.sort-bar {
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.product-count {
    font-size: 13px;
    color: var(--gray-dark);
}

.sort-select {
    padding: 6px 12px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 13px;
    outline: none;
}

/* ============ GİRİŞ / KAYIT ============ */
.auth-container {
    max-width: 480px;
    margin: 40px auto;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.auth-card h2 {
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: var(--dark);
}

.auth-card .auth-subtitle {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 30px;
}

.auth-card .form-control {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-light);
    transition: var(--transition);
}

.auth-card .form-control:focus {
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.auth-card .form-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--dark-secondary);
}

/* ============ HESABIM ============ */
.account-sidebar {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.account-sidebar .user-info {
    background: var(--orange-gradient);
    color: white;
    padding: 20px;
    text-align: center;
}

.account-sidebar .user-info i {
    font-size: 40px;
    margin-bottom: 8px;
}

.account-sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-light);
    font-weight: 500;
}

.account-sidebar .nav-link:hover,
.account-sidebar .nav-link.active {
    color: var(--orange-primary);
    background: var(--orange-pale);
}

.account-sidebar .nav-link i {
    width: 20px;
    text-align: center;
}

/* ============ SİPARİŞ DETAY ============ */
.order-status-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 30px 0;
}

.order-status-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gray-light);
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-step .step-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 18px;
}

.timeline-step.completed .step-icon {
    background: var(--success);
    color: white;
}

.timeline-step.active .step-icon {
    background: var(--orange-primary);
    color: white;
    box-shadow: var(--shadow-orange);
}

.timeline-step .step-label {
    font-size: 12px;
    font-weight: 600;
}

/* ============ FOOTER ============ */
.site-footer {
    margin-top: 60px;
}

.footer-top {
    background: var(--dark);
    color: var(--gray);
    padding: 50px 0;
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    color: white;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: var(--gray);
    font-size: 13px;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--orange-light);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.footer-contact li i {
    color: var(--orange-primary);
    margin-top: 3px;
}

.footer-contact li a {
    color: var(--gray);
}

.footer-contact li a:hover {
    color: var(--orange-light);
}

.footer-features {
    background: var(--dark-secondary);
    padding: 20px 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

.feature-item i {
    font-size: 24px;
    color: var(--orange-primary);
}

.feature-item span {
    font-size: 12px;
    font-weight: 600;
}

.footer-bottom {
    background: #111;
    color: var(--gray-dark);
    padding: 14px 0;
    font-size: 13px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse-wp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse-wp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============ SAYFALAMA ============ */
.pagination .page-link {
    color: var(--dark);
    border-color: var(--gray-light);
    font-weight: 500;
    transition: var(--transition);
}

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

.pagination .page-link:hover {
    background: var(--orange-pale);
    color: var(--orange-primary);
    border-color: var(--orange-primary);
}

/* ============ ALERT MESAJLAR ============ */
.alert-warning {
    background: var(--orange-pale);
    border-color: var(--orange-light);
    color: var(--dark);
}

/* ============ EMPTY STATE ============ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 64px;
    color: var(--gray);
    margin-bottom: 20px;
}

.empty-state h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--gray-dark);
    margin-bottom: 24px;
}

/* ============ İLETİŞİM SAYFASI ============ */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-card i {
    font-size: 36px;
    color: var(--orange-primary);
    margin-bottom: 16px;
}

.contact-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .search-box {
        display: none;
    }

    .header-wrapper {
        gap: 12px;
    }

    .action-label {
        display: none;
    }

    .header-action-btn {
        padding: 8px 10px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content {
        padding: 30px;
    }

    .hero-slide {
        min-height: 300px;
    }

    .product-detail-meta {
        grid-template-columns: 1fr;
    }

    .mega-menu-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-slide {
        min-height: 240px;
    }

    .section-title {
        font-size: 18px;
    }

    .cart-table {
        overflow-x: auto;
    }

    .cart-table table {
        min-width: 600px;
    }

    .top-bar {
        display: none;
    }

    .product-detail-title {
        font-size: 18px;
    }

    .detail-price-current {
        font-size: 24px;
    }

    .auth-card {
        padding: 24px;
    }

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

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .product-card-body {
        padding: 10px;
    }

    .product-card-title {
        font-size: 12px;
    }

    .price-current {
        font-size: 15px;
    }

    .price-old {
        font-size: 11px;
    }

    .category-card {
        padding: 12px 6px;
    }

    .category-card i {
        font-size: 24px;
    }

    .category-card span {
        font-size: 11px;
    }
}

/* ============ YÜKLEME ANİMASYONU ============ */
.spinner-orange {
    color: var(--orange-primary);
}

/* ============ TAB STILI ============ */
.nav-tabs-orange .nav-link {
    color: var(--gray-dark);
    font-weight: 600;
    border: none;
    padding: 12px 20px;
}

.nav-tabs-orange .nav-link.active {
    color: var(--orange-primary);
    border-bottom: 3px solid var(--orange-primary);
    background: transparent;
}

.nav-tabs-orange .nav-link:hover {
    color: var(--orange-primary);
}

/* ============ ÖZELLİK TABLOSU ============ */
.spec-table tr:nth-child(even) {
    background: var(--gray-lighter);
}

.spec-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--gray-light);
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--dark-secondary);
    width: 40%;
}